20 lines
347 B
Python
20 lines
347 B
Python
|
import os
|
||
|
from celery import Celery
|
||
|
|
||
|
|
||
|
config = {
|
||
|
'broker_url': 'redis://127.0.0.1:6379/0',
|
||
|
}
|
||
|
|
||
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')
|
||
|
|
||
|
app = Celery('telegram_bots')
|
||
|
|
||
|
app.config_from_object(config)
|
||
|
app.autodiscover_tasks()
|
||
|
|
||
|
|
||
|
@app.task(bind=True)
|
||
|
def debug_task(self):
|
||
|
print('Request: {0!r}'.format(self.request))
|