I saw the message about loading multiple python files. However I have been unable to get it to load even one file. I can load a python file using but I noticed one can’t load multiple files this way as they overwrite each other. I tried the path solution but I can’t get it to work:
paths = ['./myadd.py']I also just tried paths = [‘myadd.py’]
I’m pulling the python file from a github.io page if that matters. The error message I get is the following when I try to import myadd
Traceback (most recent call last):
File “/lib/python3.10/site-packages/_pyodide/_base.py”, line 435, in eval_code
.run(globals, locals)
File “/lib/python3.10/site-packages/_pyodide/_base.py”, line 304, in run
coroutine = eval(self.code, globals, locals)
File “”, line 2, in
ModuleNotFoundError: No module named ‘myadd’