python
from huey import RedisHuey
huey = RedisHuey()
@huey.task()
def my_task(name):
print(f"Hello, {name}!")
python
from huey import RedisHuey
huey = RedisHuey()
def my_task():
print("Executing task...")
huey = RedisHuey()
huey.start()
python
huey = RedisHuey(url='redis://127.0.0.1:6379/0')
python
import pymysql
pymysql.install_as_MySQLdb()
huey = SqliteHuey(filename='huey.db')
python
huey = RedisHuey(concurrency=5)
python
huey = RedisHuey(retry_delay=5, retries=3)