当前位置: 代码迷 >> python >> 如何调用另一个Python文件中需要命令行参数的python文件?
  详细解决方案

如何调用另一个Python文件中需要命令行参数的python文件?

热度:36   发布时间:2023-06-13 15:05:20.0

例如,我有两个python文件,分别为'test1.py''test2.py' 我想import test2test1 ,以便当我运行test1 ,它也运行test2

但是,为了正常运行, test2需要输入参数。 通常,当我从test1外部运行test2时,只需在command line的文件调用之后键入参数。 test1内调用test2时,我该如何做到这一点?

根据编辑test2.py的能力,有两个选项:

  1. (可以编辑)将 test2.py内容打包到类中,并在init中传递args。

test1.py文件中:

from test2 import test2class
t2c = test2class(neededArgumetGoHere)
t2c.main()

test2.py文件中:

class test2class:
    def __init__(self, neededArgumetGoHere):
        self.myNeededArgument = neededArgumetGoHere

    def main(self):
        # do stuff here
        pass

# to run it from console like a simple script use
if __name__ == "__main__":
    t2c = test2class(neededArgumetGoHere)
    t2c.main()
  1. (无法编辑test2.py)作为子进程运行test2.py。 查看子流程以获取更多有关如何使用它的信息。

test1.py

from subprocess import call

call(['path/to/python','test2.py','neededArgumetGoHere'])

假设您可以定义自己的test1和test2,并且可以使用argparse很好(无论如何,这是一个好主意):

使用argparse的好处是,您可以让test2定义一堆??不需要test1担心的默认参数值。 并且,从某种意义上说,您具有用于test2调用的文档化接口。

抄袭

test2.py

import argparse

def get_parser():
    "separate out parser definition in its own function"
    parser = argparse.ArgumentParser()
    parser.add_argument("square", help="display a square of a given number")
    return parser

def main(args):
    "define a main as the test1=>test2 entry point"
    print (int(args.square)**2)

if __name__ == '__main__':
    "standard test2 from command line call"
    parser = get_parser()
    args = parser.parse_args()
    main(args)

奥黛丽:探索jluc $ python test2.py 3

9

test1.py

import test2
import sys

#ask test2 for its parser
parser = test2.get_parser()

try:
    #you can use sys.argv here if you want
    square = sys.argv[1]
except IndexError:
    #argparse expects strings, not int
    square = "5"

#parse the args for test2 based on what test1 wants to do
#by default parse_args uses sys.argv, but you can provide a list
#of strings yourself.
args = parser.parse_args([square])

#call test2 with the parsed args
test2.main(args)

奥黛丽:探索jluc $ python test1.py 6

36

奥黛丽:探索jluc $ python test1.py

25

您可以使用子流程模块中的call或popen方法。

from subprocess import call, Popen

Call(file, args)
Popen(file args)