valq7711
valq7711
Sorry, but I don't think this is a good idea, as RapydScript only looks like Python on the outside, but on the inside it's much closer to Javascript. There are...
Yeah, I think examples may be recompiled and hosted on github (using github pages) @atsepkov what do you think?
Hello! This should work: ``` def callback(...): ... observer = new MutationObserver(callback) ```
What does your compilation command look like?
from the doc: >RapydScript first tries to search the current directory of the file for the import. If that fails, it tries to search user-defined imports (which can be set...
Hi! The problem is that RS imports all at compile time. There is `async import`, this should help: https://github.com/atsepkov/RapydScript/pull/241
Also you can just make shim-files like common.py and common.pyj that will import lang-specific modules and then use it as ```python import common common.shlex.split(...) ```
Use .pyj, not .py
It is impossible, but you can try Transcrypt or Brython
RS is mainly intended for writing Javascript using Python syntax, it is not compatible with Python, it just looks like Python, but it is javascript. So, explain in more detail...