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.

Development

uv sync --all-extras
uv run pytest
uv run ruff check .
uv run ruff format .
uv run mypy .

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.1.0.tar.gz (27.3 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.1.0-py3-none-any.whl (39.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: taskqueue_toolkit-0.1.0.tar.gz
  • Upload date:
  • Size: 27.3 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.1.0.tar.gz
Algorithm Hash digest
SHA256 5e33264f70e74633485d6652e4c04068484d4268dbd75674f278e2235e6e3de3
MD5 5a2246d84b1ae7770e6aaebbc714fcb1
BLAKE2b-256 7d3495eae803012381cb8fa6b8b280c7492b2e8457cb9a886015c52164d88702

See more details on using hashes here.

Provenance

The following attestation bundles were made for taskqueue_toolkit-0.1.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.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for taskqueue_toolkit-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e583d4a83c2e82f86c2f5b2c402f188d4a0aecefbcceec64a399e718b698d1ee
MD5 faa8eddb6c71bd3a1dbc355e8d2a6168
BLAKE2b-256 93c3b74c989dd8b8f3f16a858319c31e60e8609220f269f224fcf00e149dfabf

See more details on using hashes here.

Provenance

The following attestation bundles were made for taskqueue_toolkit-0.1.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

0.2.0

2 files

0.1.1

2 files

This release

0.1.0 This release

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