Skip to content

Instantly share code, notes, and snippets.

@zkan
Last active February 27, 2018 14:48
Show Gist options
  • Save zkan/92494c6c81504409657446f6c85d742a to your computer and use it in GitHub Desktop.
Save zkan/92494c6c81504409657446f6c85d742a to your computer and use it in GitHub Desktop.
import time
from celery import Celery
app = Celery('tasks', broker='redis://localhost:6379')
@app.task
def hello(name):
time.sleep(5)
return f'Hello, {name}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment