I create a pyd compiled python file of a function called sm that calculate the sum of two numbers (just to test the use of compiled python file). The compiled file name is somme.pyd
To test I create main.py :
import somme
somme.sm(400,1473)`
How can I use both somme.pyd and main.py using pyscript to run the code in browser ?
3