Skip to main content

taskqueue-toolkit

Broker-agnostic async task queue for Python — RabbitMQ, SQS, SNS, Redis Streams, and Google Pub/Sub behind one TaskQueue[T] interface, plus an optional Postgres-backed outbox pattern.

Why

Publishing/consuming a task shouldn't couple your code to one broker's client library. This package gives you:

  • One interface: publish(task), consume() -> AsyncIterator[QueuedTask[T]], ack()/nack(requeue=...) — nothing broker-specific (no routing keys, topics, partitions, or consumer groups baked into the contract).
  • One connection string: a single DSN's scheme picks the broker; everything else (queue/topic name, region, credentials, emulator endpoint, consumer group) travels as query params on the same string.
  • Generic over your payload: TaskQueue[T] — bring your own task type and an encode/decode pair (T -> bytes / bytes -> T). This package has no opinion on serialization.
  • An optional outbox pattern: write a task to Postgres in the same transaction as the state change that produced it, then let a background relay deliver it to the broker — no dual-write race between your database and your broker.

Install

pip install taskqueue-toolkit[rabbitmq]      # or: redis-streams, aws, pubsub, outbox, all

Usage

from taskqueue_toolkit.queue.factory import create_task_queue

queue = create_task_queue(
    "amqp://guest:guest@localhost:5672/?queue=my.tasks",
    encode=lambda task: task.encode(),
    decode=lambda body: body.decode(),
)

await queue.publish("hello")

async for queued in queue.consume():
    print(queued.task)
    await queued.ack()

DSN schemes

Scheme Broker Example
amqp / amqps RabbitMQ amqp://guest:guest@host:5672/?queue=my.tasks
redis / rediss Redis Streams redis://:password@host:6379/0?stream=my.tasks&group=workers&consumer=worker-1
sqs Amazon SQS sqs://eu-west-3/my.tasks?endpoint_url=...&access_key_id=...&secret_access_key=...
sns Amazon SNS (fan-out) sns://eu-west-3/my-tasks?endpoint_url=...&access_key_id=...&secret_access_key=...
pubsub Google Pub/Sub pubsub://project-id/my-tasks?subscription=my-tasks-subscriber&emulator_host=localhost:8085

Adding a broker this package doesn't ship

The five schemes above are built in and checked for exhaustiveness at type-check time — create_task_queue() can't silently forget one. For a broker outside that list (Kafka, NATS, ...), register a handler once, at import/startup time, instead of forking the package:

from taskqueue_toolkit.queue.registry import register_scheme


def build_kafka_queue(dsn, encode, decode):
    return MyKafkaTaskQueue(dsn=dsn, encode=encode, decode=decode)


register_scheme("kafka", build_kafka_queue)

queue = create_task_queue("kafka://localhost:9092/my-tasks", encode=..., decode=...)

A handler receives the raw DSN string plus the encode/decode pair and returns a TaskQueue[T] — parsing and construction happen together, so there's a single call to keep in sync, not a parser and a constructor spread across two files.

Outbox pattern

from taskqueue_toolkit.outbox.repository import OutboxRepository
from taskqueue_toolkit.outbox.relay import OutboxRelay

outbox = OutboxRepository(session=session, encode=encode, decode=decode)

# Inside the same transaction as your domain state change:
await outbox.enqueue(task)
await session.commit()

# In a background worker/process:
relay = OutboxRelay(outbox=outbox, task_queue=queue)
await relay.run_forever()

OutboxRepository/OutboxRelay are generic over the same T as TaskQueue[T]. Create the outbox table (taskqueue_toolkit.outbox.orm.Base.metadata) via your own migration tooling (Alembic, etc.).

Database support: only Postgres is tested and guaranteed — claim_pending()'s SELECT ... FOR UPDATE SKIP LOCKED concurrency guarantee is verified against a real Postgres in this package's own test suite (multiple relay instances racing to claim the same batch). MySQL 8.0+/MariaDB 10.6+ support the same SKIP LOCKED syntax through SQLAlchemy and may well work, but that combination isn't exercised by any test here — treat it as unverified, not supported, until you've validated the concurrent-claim behavior yourself against your actual engine/version. Older MySQL/MariaDB versions don't support SKIP LOCKED at all. SQLite works for single-writer tests (no real concurrent locking) but never for this guarantee under load.

No NoSQL support (yet): the outbox is built directly on SQLAlchemy (DeclarativeBase, select(...).with_for_update(skip_locked=True), AsyncSession) — this isn't a dialect difference to configure around, it's a relational, transactional row-locking primitive that document/key-value/wide-column stores (MongoDB, DynamoDB, Redis, Cassandra, ...) don't expose in an equivalent form. Adding NoSQL support is tracked as a future feature — it would need a separate OutboxRepository implementation per store family, each with its own concurrency mechanism in place of SKIP LOCKED (e.g. MongoDB's atomic findOneAndUpdate, DynamoDB's conditional UpdateItem), and would only preserve the outbox pattern's core guarantee (the task write and the domain state write land in the same transaction) when the outbox table lives in the same transactional store as the domain data it follows from — an outbox in a different store than your domain data reintroduces the dual-write race this pattern exists to avoid.

Testing your own code

taskqueue_toolkit.testing ships an in-memory double for each broker adapter — a real, working implementation of the relevant slice of its SDK (FIFO ordering, ack/nack, consumer groups, fan-out, ...), not a call-recording mock — so you can test code that publishes/consumes tasks without a real RabbitMQ/SQS/SNS/Redis/Pub-Sub:

from taskqueue_toolkit.queue.rabbitmq import RabbitMqTaskQueue
from taskqueue_toolkit.testing import FakeRabbitMqBroker

broker = FakeRabbitMqBroker()
queue = RabbitMqTaskQueue(dsn=dsn, encode=encode, decode=decode, connect=broker.connect)

await queue.publish("hello")
async for queued in queue.consume():
    assert queued.task == "hello"
    await queued.ack()
    break

Each adapter constructor takes an injectable client/connection factory for exactly this (connect= for RabbitMQ, client_factory= for SQS/SNS/Redis Streams, publisher_factory=/subscriber_factory= for Pub/Sub) — defaulting to the real SDK, so passing nothing behaves exactly as before.

Fake Inject into Requires
FakeRabbitMqBroker RabbitMqTaskQueue(connect=broker.connect) nothing extra
FakeSqsBroker SqsTaskQueue(client_factory=broker.client) [aws]
FakeSnsBroker SnsTaskQueue(client_factory=broker.client) [aws]
FakeRedisStreamsBroker RedisStreamsTaskQueue(client_factory=broker.client) [redis-streams]
FakePubsubBroker PubsubTaskQueue(publisher_factory=broker.publisher, subscriber_factory=broker.subscriber) [pubsub]

Create one broker instance per test — each owns its own isolated in-memory state, so there's nothing to reset between tests and no risk of one test's queue leaking into another's.

Security

Decoder[T] runs on bytes received from a broker — in most deployments, a source outside this process's control. Using an unsafe deserializer (pickle.loads, yaml.load without SafeLoader, eval, ...) as your decode callback means whoever can publish to your queue/topic can run arbitrary code in your consumer. Use a safe format (JSON, msgpack, protobuf, ...) unless every publisher is fully trusted.

This package's own code is checked on every push/PR and before every release via bandit (unsafe code patterns) and pip-audit (known CVEs in resolved dependencies), alongside ruff, mypy, and the test suite. Found a vulnerability? Please open an issue.

Development

uv sync --all-extras
uv run pytest
uv run ruff check .
uv run ruff format .
uv run mypy .
uvx bandit -r src/
uvx pip-audit --path .venv

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

taskqueue_toolkit-0.2.0.tar.gz (30.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

taskqueue_toolkit-0.2.0-py3-none-any.whl (43.4 kB view details)

Uploaded Python 3

File details

Details for the file taskqueue_toolkit-0.2.0.tar.gz.

File metadata

  • Download URL: taskqueue_toolkit-0.2.0.tar.gz
  • Upload date:
  • Size: 30.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for taskqueue_toolkit-0.2.0.tar.gz
Algorithm Hash digest
SHA256 b64e8a7613d5dbb27ce1a664c3a5641c15d9c25d467d6d0366421a40a37a548a
MD5 a52cd1357cf439f5bf9e1a9dba38a5f7
BLAKE2b-256 6b1a71c3ea7e81fab69bf152746bc4e46b99f07e9bf528d69812bb310c7f7e5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for taskqueue_toolkit-0.2.0.tar.gz:

Publisher: publish.yml on walidboughdiri/taskqueue-toolkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file taskqueue_toolkit-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for taskqueue_toolkit-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 343561b298c56ef24e713d1208d044c408f5099a0dfd0e65dd606d7699454625
MD5 2a1199e19c7a4d5c1d6b0791fbd27686
BLAKE2b-256 791da0398cc8a950d2cd49458058bbd4009e55373f900c1d8a2d5a7b2914b0c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for taskqueue_toolkit-0.2.0-py3-none-any.whl:

Publisher: publish.yml on walidboughdiri/taskqueue-toolkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.3.0

2 files

This release

0.2.0 This release

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page