Skip to content

epowers/java2python

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

java2python

Simple but effective tool to translate Java source code into Python.

There are lots of docs, plenty of tests, and many options for controlling code generation.

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 link above.

Here's a very simple example. First we show the file:

$ cat HelloWorld.java

And we get this:

// This is the HelloWorld class with a single method.
class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, world.");
    }
}

Next we run our program:

$ j2py HelloWorld.java

And we get this:

#!/usr/bin/env python
""" generated source for module HelloWorld

"""
#  This is the HelloWorld class with a single method.
class HelloWorld(object):
    """ generated source for class HelloWorld

    """
    @classmethod
    def main(cls, args):
        """ generated source for method main

        """
        print "Hello, world."

if __name__ == '__main__':
    import sys
    HelloWorld.main(sys.argv)

About

Simple but effective library to translate Java source code to Python.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 80.8%
  • Java 19.0%
  • Shell 0.2%