pscript icon indicating copy to clipboard operation
pscript copied to clipboard

Python to JavaScript compiler

Results 27 pscript issues
Sort by recently updated
recently updated
newest added

@almarklein commented on [Mon Dec 07 2015](https://github.com/flexxui/flexx/issues/68) There is room for optimizations to reduce the memory footprint. --- @almarklein commented on [Mon Sep 12 2016](https://github.com/flexxui/flexx/issues/68#issuecomment-246284605) See #201

@almarklein commented on [Sun Mar 06 2016](https://github.com/flexxui/flexx/issues/104) I did some pystone tests some time ago, and then PyScript was _much_ faster than cPython. Did these benchmarks again, and now its...

@Korijn commented on [Fri Sep 09 2016](https://github.com/flexxui/flexx/issues/201) To reduce JS size and increase page load times, you can use projects like UglifyJS to minify JS and let it output sourcemaps...

@almarklein commented on [Mon Nov 07 2016](https://github.com/flexxui/flexx/issues/259) It should be as easy as possible to tell a user what is supported by PyScript. Individual caveats like "`foo =bar or 3`...

@nathanielatom commented on [Sat Aug 26 2017](https://github.com/flexxui/flexx/issues/396) Firstly, I'd like to say thank you because PyScript is a wonderful package and has helped boost my productivity quite often. Observed behaviour:...

@almarklein commented on [Fri Sep 08 2017](https://github.com/flexxui/flexx/issues/399) This is sortof a spinoff from #377. If the transpiler knows all the types of the code, then generating the JavaScript for it...

=================================== FAILURES =================================== ______________________ TestFunctions.test_async_and_await ______________________ self = def test_async_and_await(self): if sys.version_info < (3, 6): return foo = py2js('async def foo(): return 42\n\n') spam = py2js('async def spam(): print(await foo())\n\n')...