在有两个脚本 test1.py 和 service.py 的场景中,其中 test1.py 包含独立代码并且 service.py 作为服务运行,您可能需要从 service.py 调用 test1.py。
实现此目的的主要方法是构建如下脚本:
test1.py:
def some_func(): print('in test 1, unproductive') if __name__ == '__main__': # test1.py executed as script # do something some_func()
在此设置中,some_func() 是您要从 service.py 执行的函数。 if __name__ == '__main__' 检查确保其中的代码仅在直接运行 test1.py 时执行,而不是在导入时执行。
service.py:
import test1 def service_func(): print('service func') if __name__ == '__main__': # service.py executed as script # do something service_func() test1.some_func()
在service.py中,导入test1并定义一个函数service_func()您的服务。关键步骤是调用 test1.some_func(),它执行 test1.py 中的代码。同样, if __name__ == '__main__' 检查确保代码仅在直接运行 service.py 时执行。
以上是如何从服务脚本中执行独立的 Python 脚本?的详细内容。更多信息请关注PHP中文网其他相关文章!