# django_celery_demo **Repository Path**: wang-chunlong/django_celery_demo ## Basic Information - **Project Name**: django_celery_demo - **Description**: No description available - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-12-24 - **Last Updated**: 2022-03-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ```commandline celery -A django_celery_demo worker -l INFO ``` ```python from celery_service.tasks import add res = add.delay(1, 2) res.ready() res.get(timeout=1) ```