Skip to content

Instantly share code, notes, and snippets.

@vyraun
Forked from sebdah/threading_example.py
Created November 20, 2022 19:41
Show Gist options
  • Save vyraun/509273868b6d7ad43b093d4b28aea881 to your computer and use it in GitHub Desktop.
Save vyraun/509273868b6d7ad43b093d4b28aea881 to your computer and use it in GitHub Desktop.
Running a background thread in Python
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