從服務腳本執行外部腳本
人們經常遇到需要從作為服務運行的腳本調用外部腳本。 當服務腳本需要外部腳本提供的特定功能時,就會發生這種情況。讓我們看看如何完成此任務。
用於外部功能的單獨腳本
首先,建立一個包含所需功能的單獨腳本,例如 test1.py。以下程式碼範例示範了基本的 test1.py腳本:
print("I am a test") print("see! I do nothing productive.")
呼叫外部腳本
要從服務腳本中呼叫外部腳本,請依照下列步驟操作步驟:
範例腳本
以下是範例腳本,說明process:
test1.py
def some_func(): print("in test 1, unproductive") if __name__ == "__main__": # test1.py executed as script # do something some_func()
test1.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
這種方法使您能夠維護腳本之間的模組化和獨立功能,確保服務腳本專門處理其任務,同時利用外部腳本的功能需求。以上是如何從服務腳本內執行外部腳本?的詳細內容。更多資訊請關注PHP中文網其他相關文章!