-
-
Save rmdort/bfd1fcc107a80ab63d1767923bf10193 to your computer and use it in GitHub Desktop.
Running a background thread in Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import threading | |
import time | |
class ThreadingExample(object): | |
""" Threading example class | |
The run() method will be started and it will run in the background | |
until the application exits. | |
""" | |
def __init__(self, interval=1): | |
""" Constructor | |
:type interval: int | |
:param interval: Check interval, in seconds | |
""" | |
self.interval = interval | |
thread = threading.Thread(target=self.run, args=()) | |
thread.daemon = True # Daemonize thread | |
thread.start() # Start the execution | |
def run(self): | |
""" Method that runs forever """ | |
while True: | |
# Do something | |
print('Doing something imporant in the background') | |
time.sleep(self.interval) | |
example = ThreadingExample() | |
time.sleep(3) | |
print('Checkpoint') | |
time.sleep(2) | |
print('Bye') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment