django-celery
DjangoおよびCeleryを使用した非同期タスク処理。タスクキューイング、ワーカー管理、エラー処理、スケジューリング。Redis/RabbitMQ ブローカー統合。
DeepseekModel
Curated skill
Quality Excellent · 90
v1.0.0
Get
https://deepseekmodel.com/api/download.php?id=affaan-m-ecc-docs-ja-jp-skills-django-celery-skill-md&format=skill
Download .skill
Standard format with system_prompt and model_config, ready for any agent framework
The actual content of the system_prompt field in the .skill file.
name django-celery description DjangoおよびCeleryを使用した非同期タスク処理。タスクキューイング、ワーカー管理、エラー処理、スケジューリング。Redis/RabbitMQ ブローカー統合。 origin ECC Django + Celery 非同期タスク Django でのバックグラウンドジョブと非同期処理。 使用時期 メール送信をバックグラウンドで実行 重い処理をスケジュール 定期的なタスクを実行(日報、クリーンアップ) 外部API呼び出しをキューイング 複雑なワークフローを調整 セットアップ 1. Celery インストール pip install celery redis 2. タスク定義 from celery import shared_task @shared_task def send_email ( recipient ): # メール送信ロジック pass 3. ワーカー起動 celery -A myapp worker -l info タスク 非同期実行 send_email.delay(recipient) # すぐにキューに追加、非同期実行 スケジューリング from celery.schedules import crontab app.conf.beat_schedule = { 'send-report-daily' : { 'task' : 'app.tasks.send_report' , 'schedule' : crontab(hour= 9 , minute= 0 ), }, } エラーハンドリング リトライロジック実装 デッドレター処理 ロギング構成 モニタリング設定(Flower) 詳細については、ドキュメントを参照してください。
Keywords that activate this skill. Click one to copy it.
This skill does not provide trigger words.
The downloaded .skill package contains the following fields.
| Field | Description |
|---|---|
| format | Format tag (skill/v1) |
| skill_id | Unique skill ID |
| name | Skill name |
| version | Version |
| description | Description |
| category | Categories (array) |
| trigger_words | Trigger words |
| tags | Tags |
| source | Source |
| source_url | Source URL (this page) |
| exported_at | Exported at (set per download) |
| system_prompt | System prompt body |
| model_config | Model config: provider / model / temperature / max_tokens / top_p |
| examples | Examples |
| install_guide | Import guide for Coze / Dify / Claude / custom frameworks |
The same skill can be exported in different platform formats.