Transcrypt
Transcrypt copied to clipboard
Python 3.9 to JavaScript compiler - Lean, fast, open! -
Without surprise, ```python @mydecorator def myfunction(): ... ``` is transpiled to ```js var myfunction = mydecorator(myfunction(){ .... ``` As a result `myfunction.name` is `"mydecorator"`. This is a problem for me...
I would like to import the stubs use py.test (with which I am running the tests). Unfortunately that is not working for me. ``` (transcrypt_venv) $ python -c "import transcrypt"...
When I access a non-existing key in a dictionary, I get > Uncaught TypeError: rangePerColor[i] is undefined I would have expected a Python exception like > KeyError: 7 Furthermore, this...
I want to use Python instead of JS. But I'd like to know if Transcrypt has IDE support. Like all the standard IDE features you'd have for Python. Like Autocomplete,...
Hello! I would like to thank you for this wonderful project that has worked on transcription from python to javascript, I have been actively using it for some time. Regarding...
All of the release information I am tracking is the previous London release and it is not clear if the leading checkout of main is this new version mentioned on...
this project is awesome! but i have some problem when use it. # Env - python 3.9.5 & 3.8.10 - transcrypt 3.9.0 # code python ```python class a: b: str...
 Translating into  I am using Python3.4.3
Since the version of Transcrypt is coupled with the version of Python, can Transcrypt do a version check when run to make sure that the Python version being used matches...
I want to use transcrypt in my python code instead of using cmd.how can i do it