I have a python module : myScript.py. Normally, I run it like this
python3 myScript.py -i example.jpg
I want to pass this argument to this python modules's main function
from python import Python
fn use_my_module() raises:
Python.add_to_path(".")
let mypython = Python.import_module("myScript.py")
# myPython is normally called by 'python3 myScript.py -i input.jpg'
let c = mypython() # How do i add a pass the "input.jpg" to main??
print(c)
How can I do this?
Let's assume that you have myScript.py and main.mojo in the same folder:
body of myScript.py:
body of main.mojo:
run in with