- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
How do you Pass Arguments from JMP to Python script?
Hi,
I like to pass a string (file name) to a Python Script using RunProgram. Here is the script:
file = "mtest.py abc.pdf";
RunProgram(executable("/usr/bin/python"),options({file}),readfunction("text"));
I appreciate your help. Thanks.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to Pass Arguments from JMP to Python script?
You need to pass two different arguments through RunProgram as a list, because you are actually passing two arguments to python. I do not have a mac, but on windows this python script:
import sys print(sys.argv[1])
and this jsl script:
RunProgram(
executable("C:\path to\python.exe"),
options({"C:/path to/pythonscript.py", "hi"}),
readfunction("text")
);
returns:
"hi "
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to Pass Arguments from JMP to Python script?
Keep an eye out for JMP 14.0 and the new Python Submit() command.
It will allow you to call Python code directly from JSL, passing and receiving data structures - no RunProgram() required.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to Pass Arguments from JMP to Python script?
You need to pass two different arguments through RunProgram as a list, because you are actually passing two arguments to python. I do not have a mac, but on windows this python script:
import sys print(sys.argv[1])
and this jsl script:
RunProgram(
executable("C:\path to\python.exe"),
options({"C:/path to/pythonscript.py", "hi"}),
readfunction("text")
);
returns:
"hi "
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to Pass Arguments from JMP to Python script?
Thanks. I will give it a try.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to Pass Arguments from JMP to Python script?
Keep an eye out for JMP 14.0 and the new Python Submit() command.
It will allow you to call Python code directly from JSL, passing and receiving data structures - no RunProgram() required.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to Pass Arguments from JMP to Python script?
Thanks. It is good to know.