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
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.
Follow these steps:
install python>=3.9
, poetry
poetry install -E all --with docs --with test
pytest