Skip to content

alploskov/kithon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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