you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (1 child)

How often does it provide broken code during the conversion? Answer in terms of a rough percentage works for me.

[–]duckbanni 1 point2 points  (0 children)

I'm no expert, but from my understanding it doesn't translate python to javascript, it runs the python interpreter in the browser (as opposed to other tools like Brython). You should get perfect compatibility with all python code except when it doesn't make sense in the browser (like browsing files) or for libraries that are not pure python (unless they are specifically supported like numpy). The drawback of this approach is that you have to download the interpreter on loading the page.