Run python file from another python file with arguments

I want to run a Python script from another Python script. I want to pass variables like I would using the command line.

For example, I would run my first script that would iterate through a list of values (0,1,2,3) and pass those to the 2nd script script2.py 0 then script2.py 1, etc.

I found Stack Overflow question 1186789 which is a similar question, but ars's answer calls a function, where as I want to run the whole script, not just a function, and balpha's answer calls the script but with no arguments. I changed this to something like the below as a test:

execfile("script2.py 1")

But it is not accepting variables properly. When I print out the sys.argv in script2.py it is the original command call to first script "['C:\script1.py'].

I don't really want to change the original script (i.e. script2.py in my example) since I don't own it.

I figure there must be a way to do this; I am just confused how you do it.

Run python file from another python file with arguments

asked Sep 23, 2010 at 19:31

Gern BlanstonGern Blanston

42.3k19 gold badges49 silver badges64 bronze badges

8

Try using os.system:

os.system("script2.py 1")

execfile is different because it is designed to run a sequence of Python statements in the current execution context. That's why sys.argv didn't change for you.

answered Sep 23, 2010 at 19:33

Greg HewgillGreg Hewgill

908k177 gold badges1131 silver badges1267 bronze badges

16

This is inherently the wrong thing to do. If you are running a Python script from another Python script, you should communicate through Python instead of through the OS:

import script1

In an ideal world, you will be able to call a function inside script1 directly:

for i in range(whatever):
    script1.some_function(i)

If necessary, you can hack sys.argv. There's a neat way of doing this using a context manager to ensure that you don't make any permanent changes.

import contextlib
@contextlib.contextmanager
def redirect_argv(num):
    sys._argv = sys.argv[:]
    sys.argv=[str(num)]
    yield
    sys.argv = sys._argv

with redirect_argv(1):
    print(sys.argv)

I think this is preferable to passing all your data to the OS and back; that's just silly.

answered Sep 23, 2010 at 19:43

Run python file from another python file with arguments

11

Ideally, the Python script you want to run will be set up with code like this near the end:

def main(arg1, arg2, etc):
    # do whatever the script does


if __name__ == "__main__":
    main(sys.argv[1], sys.argv[2], sys.argv[3])

In other words, if the module is called from the command line, it parses the command line options and then calls another function, main(), to do the actual work. (The actual arguments will vary, and the parsing may be more involved.)

If you want to call such a script from another Python script, however, you can simply import it and call modulename.main() directly, rather than going through the operating system.

os.system will work, but it is the roundabout (read "slow") way to do it, as you are starting a whole new Python interpreter process each time for no raisin.

answered Sep 23, 2010 at 23:19

kindallkindall

172k34 gold badges268 silver badges300 bronze badges

8

I think the good practice may be something like this;

import subprocess
cmd = 'python script.py'

p = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True)
out, err = p.communicate() 
result = out.split('\n')
for lin in result:
    if not lin.startswith('#'):
        print(lin)

according to documentation The subprocess module allows you to spawn new processes, connect to their input/output/error pipes, and obtain their return codes. This module intends to replace several older modules and functions:

os.system
os.spawn*
os.popen*
popen2.*
commands.*

Use communicate() rather than .stdin.write, .stdout.read or .stderr.read to avoid deadlocks due to any of the other OS pipe buffers filling up and blocking the child process. Read Here

answered Oct 29, 2014 at 8:47

MedhatMedhat

1,55415 silver badges31 bronze badges

0

import subprocess
subprocess.call(" python script2.py 1", shell=True)

Duncan Jones

64.7k26 gold badges184 silver badges243 bronze badges

answered Nov 12, 2013 at 12:06

NikosNikos

3773 silver badges2 bronze badges

3

How do I run a Python file from another Python file with arguments?

How to Execute a Python File with Arguments in Python?.
Define a Python file script.py that accesses the arguments using the sys. argv variable accessible via the sys module. ... .
Fill the variable sys. ... .
Load the Python file script.py into a Python string. ... .
Pass the Python string into Python's built-in exec() function..

How do I run one Python file from another Python file?

Use the execfile() Method to Run a Python Script in Another Python Script. The execfile() function executes the desired file in the interpreter. This function only works in Python 2. In Python 3, the execfile() function was removed, but the same thing can be achieved in Python 3 using the exec() method.

How do you pass an argument in Python exe?

In order to pass arguments to your Python script, you will need to import the sys module. Once this module is imported in your code, upon execution sys. argv will exist, containing a list of all of the arguments passed to your script.

How do I call a Python program from another program?

Get one python file to run another, using python 2.7.3 and Ubuntu 12.10:.
Put this in main.py: #!/usr/bin/python import yoursubfile..
Put this in yoursubfile.py #!/usr/bin/python print("hello").
Run it: python main.py..
It prints: hello..