pip install honcho worker: python background_task.py python import time def say_hello(): while True: print("Hello, world!") time.sleep(1) if __name__ == "__main__": say_hello() honcho start