pip install huey
python
from huey import RedisHuey
huey = RedisHuey()
@huey.task()
def hello(name):
print(f"Hello {name}!")
python
from huey import RedisHuey
huey = RedisHuey(url='redis://localhost:6379/0')
python
hello.enqueue("Alice")
python
from huey import RedisHuey
huey = RedisHuey(url='redis://localhost:6379/0')
if __name__ == '__main__':
huey.worker().run()