pip install huey
python
from huey import RedisHuey
huey = RedisHuey(url='redis://localhost:6379/0')
python
from huey import RedisHuey
huey = RedisHuey(url='redis://localhost:6379/0')
@huey.task()
def send_email(to, subject, content):
python
from huey import RedisHuey, crontab
huey = RedisHuey(url='redis://localhost:6379/0')
def daily_email_notification():
python
result = send_email(to='example@example.com', subject='Hello', content='World')
print(result.result())