You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import time
|
|
|
|
from celery import shared_task
|
|
|
|
|
|
# Запустить worker
|
|
# celery -A postamates worker -l info
|
|
# Запустить scheduler
|
|
# celery -A postamates beat -l INFO.
|
|
|
|
@shared_task()
|
|
def raschet(sec: int):
|
|
print('Hello. Celery task is running...')
|
|
time.sleep(sec)
|
|
print('Finish')
|