首页 >后端开发 >Python教程 >如何从服务脚本中执行独立的 Python 脚本?

如何从服务脚本中执行独立的 Python 脚本?

Linda Hamilton
Linda Hamilton原创
2024-12-13 14:33:12932浏览

How Can I Execute a Standalone Python Script from Within a Service Script?

从服务脚本内执行外部脚本

在有两个脚本 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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn