Skip to content
forked from beeware/voc

A transpiler that converts Python bytecode into Java bytecode.

License

Notifications You must be signed in to change notification settings

Murillofilho86/voc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VOC

A transpiler that converts Python bytecode into Java bytecode.

This is experimental code. If it breaks, you get to keep all the shiny pieces.

What it does:

  • Provides an API to let you programmatically create Java class files.

Quickstart

Install voc, then run the sample script:

$ pip install voc
$ python tests/sample.py
Creating class 'sample'...
Writing sample.class...
Done.

This will produce a sample.class that you can run on any Java 1.7+ VM. You will need to make sure that the python.jar support file is in your classpath:

$ java -XX:-UseSplitVerifier --classpath python.jar:. sample
Hello, World

The -CC:-UsesplitVerifier argument is necessary to turn off stack map verification in Java 7. This could be addressed by computing stack maps for generated code.

Documentation

Documentation for VOC can be found on Read The Docs.

Why "VOC"?

The Vereenigde Oostindische Compagnie (VOC), or Dutch East India Company, is often considered the be the world's first multinational corporation. It was also the first company to issue shares, and facilitate the trading of those shares. It was granted a 21 year monopoly to carry out trade activities in Asia, primarily the Spice Islands - the Dutch East Indies. They established a major trading port at Batavia - now Jakarta, on the island of Java (now part of Indonesia). As a result of their monopoly, the VOC became an incredibly valuable company, issuing an 18% annual dividend for almost 200 years.

VOC was... the world's first Enterprise using Java. (rimshot!)

VOC is also a backronym for "Vestigial Output Compiler". Or "Vexing Obtuse Compiler". Or "Valuable Obscure Compiler". Or "Varigated Ocelot Calibrator". It's your choice.

Community

VOC is part of the BeeWare suite. You can talk to the community through:

Contributing

If you experience problems with VOC, log them on GitHub. If you want to contribute code, please fork the code and submit a pull request.

About

A transpiler that converts Python bytecode into Java bytecode.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 58.6%
  • Java 41.4%