如何实现从网站针对不同用户和不同参数多次运行相同的 Python 脚本?
谢谢
使用
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()