This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Run with: `celery -A tasks worker` | |
Expects a RabbitMQ to be served at `rabbitmq:5672` so will need adjustment if it is served on `localhost`. | |
""" | |
import logging | |
from typing import Dict, Tuple | |
from celery import Celery, Task | |
from kombu import Exchange, Queue |
OlderNewer