-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyzora.html
60 lines (59 loc) · 3.28 KB
/
pyzora.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PyZora</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="styles/styley.css">
<meta property="og:title" content="PyZora">
<meta property="og:image" content="//fortwoone.github.io/assets/pyzora.svg">
</head>
<body>
<header class="vert-wrap">
<div class="logo_and_name">
<a href="index.html"><img src="assets/logo.png" alt="fortwoone"></a>
<h1>Fortwoone's Website</h1>
</div>
<nav>
<ul class="nav_list">
<li class="nav_item"><a href="index.html">Home</a></li>
<li class="nav_item unroll">
<a href="past_projects.html">Past projects</a>
<ul class="options">
<li><a href="tcc.html">The Crazy Computer</a></li>
<li><a href="atgp.html">A Totally Generic Platformer</a></li>
<li><a href="pyzora.html">PyZora</a></li>
<li><a href="tougaoug.html">Tougaoug Green</a></li>
</ul>
</li>
</ul>
</nav>
</header>
<div class="bordered">
<img src="assets/pyzora.svg" width="25%" height="25%" alt="PyZora">
<h2 class="proj_title">PyZora</h2>
<br>
<h3>A password decoder/generator library for The Legend of Zelda: Oracle of Ages/Seasons.</h3>
<h4>Released on : 2023/11/30 (GitHub source) / 2023/12/04 (PyPI) - Role: Library Author</h4>
<br>
<p>
This Python library offers flexible control over The Legend of Zelda: Oracle of Seasons/Ages secret passwords!
It was created as a training project, and bases itself on <a href="http://github.com/kabili207/zora-sharp">ZoraSharp</a>,
which in turn bases itself on Paul D. Shoener III's work on the original password generator made in 2001
(available <a href="https://web.archive.org/web/20010819023634/http://home.earthlink.net/~paul3/zeldagbc.html">on the Wayback Machine</a> due to his website being archived).
<br><br>You can head <a href="https://github.com/fortwoone/pyzora">here</a> to check the source code, or
click <a href="https://pyzora.readthedocs.io/en/latest">this link</a> to read the docs.
You can also check <a href="https://pypi.org/project/pyzora">the library's page on PyPI</a>.
</p>
<p>
<a href="past_projects.html">Back to project list</a>
</p>
</div>
<footer>
©2023-2024 fortwoone. Content on this website is protected by the CC-BY-NC-SA 4.0 License.
See <a href="https://creativecommons.org/licenses/by-nc-sa/4.0">this page</a> for more details.
<br><a href="legal.html">Legal statements</a>
</footer>
</body>
</html>