Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.3 KB

File metadata and controls

41 lines (28 loc) · 1.3 KB

GitHub license Package version lines of code Downloads

Kithon is universal python transpiler for speedup python programs and use python in other platform, such as browser or game engines, it focused on generating human readable code and integration with tools of target languages including cli and libraries

Try out the web demo

Quick start

First, you install it:

$ pip install kithon

Then, you translate your code to target language, in this example JavaSctipt

$ kithon gen --to js hello_world.py

Or translate and run resulting code

$ kithon run --to go hello_world.py

It should be clear what to do. If not, ask us in our Telegram chat.

How to Contribute

Follow these steps:

install python>=3.9, poetry

poetry install -E all --with docs --with test
pytest