Post Reply 
Pass parameter to Python?
09-07-2023, 11:55 AM
Post: #2
RE: Pass parameter to Python?
Try this:

Code:
#PYTHON myfunc
from sys import argv
print(argv[0]);
#END

EXPORT PassParm(y)
BEGIN
 PYTHON(myfunc,y);
END;

-road
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Pass parameter to Python? - toml_12953 - 09-07-2023, 11:22 AM
RE: Pass parameter to Python? - roadrunner - 09-07-2023 11:55 AM
RE: Pass parameter to Python? - toml_12953 - 09-08-2023, 03:05 AM



User(s) browsing this thread: 1 Guest(s)