コードを定期的に実行する方法
Python では、特定のコードを定期的に簡単に実行できます。これは、ファイルの更新、データの収集、その他の定期的なプロセスの実行などのタスクに役立ちます。
スレッドの使用
1 つの方法は、スレッドを使用することです。スレッドは、メイン プログラムと同時に実行される独立したプロセスです。 n 秒ごとに目的のコードを実行するスレッドを作成できます。
import threading # Define the function to be executed def your_code(): # Your code here # Start a thread that executes your_code every 5 seconds threading.Timer(5.0, your_code).start() # Continue with the rest of your program
タイミング ループの使用
または、タイミング ループを使用してコードを実行することもできます。特定の間隔で。この方法は効率性は劣りますが、頻度の低いタスクには十分です。
import time # Set the time interval in seconds interval = 5 # Start a loop that continues indefinitely while True: # Execute your code your_code() # Sleep for the specified interval time.sleep(interval)
その他の方法
Python でタスクをスケジュールするには、次のような方法もあります。 Cron ジョブまたは Celery。特定の要件とアプリケーション アーキテクチャに最適なアプローチを選択してください。
以上がPython でコードを定期的に実行するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。