X Tutup
Skip to content

Commit 76a2023

Browse files
author
Troy Melhase
committed
Restarting docs.
1 parent f86921d commit 76a2023

File tree

10 files changed

+9
-359
lines changed

10 files changed

+9
-359
lines changed

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
1+
java2python
2+
-----------
3+
14
Simple but effective tool to translate Java source code into Python.
25

3-
Here's a quick example. First, the Java source:
46

7+
There are [lots of docs](./doc/index.md), [plenty of tests](./test), and [many options](./doc/customizations.md) for controlling code generation.
8+
9+
I'm in the process of finalizing the documentation and packaging a release. That will be release 0.5 when it's done. If you're looking for old releases, check the [downloads](downloads) link above.
10+
11+
Hello, world example:
512

613
$ cat HelloWorld.java
714
// This is the HelloWorld class with it's single method.
@@ -11,8 +18,6 @@ Here's a quick example. First, the Java source:
1118
}
1219
}
1320

14-
Next, we translate:
15-
1621
$ j2py HelloWorld.java
1722
#!/usr/bin/env python
1823
""" generated source for module HelloWorld
@@ -34,3 +39,4 @@ Next, we translate:
3439
if __name__ == '__main__':
3540
import sys
3641
HelloWorld.main(sys.argv)
42+

doc/Makefile

Lines changed: 0 additions & 130 deletions
This file was deleted.

doc/conf.py

Lines changed: 0 additions & 222 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

doc/quick-server

Lines changed: 0 additions & 4 deletions
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)
X Tutup