pip install huey
python
from huey import RedisHuey
@huey.task()
def send_email(recipient, subject, message):
print(f'Sending email to {recipient}')
# ...
python
send_email('example@example.com', 'Hello', 'This is a test email')
python
from huey import RedisHuey
if __name__ == '__main__':
python filename.py