使用不同的参数运行相同的Python脚本?

问题描述 投票:0回答:1

如何实现从网站针对不同用户和不同参数多次运行相同的 Python 脚本?

谢谢

python flask
1个回答
0
投票

使用

subprocess.Popen
打开外壳并随时关闭它

import subprocess

class bot_process:
    def __init__(self, args):
        self.process = subprocess.Popen(["python", "bot.py", *args])
    def stop(self):
        self.process.terminate()
© www.soinside.com 2019 - 2024. All rights reserved.