Skip to main content

Python client for the PGMQ Postgres extension.

Project description

Coredb's Python Client for PGMQ

Installation

Install with pip from pypi.org

pip install coredb-pgmq-python

Dependencies:

Postgres running the CoreDB PGMQ extension.

Usage

Start a Postgres Instance with the CoreDB extension installed

docker run -d --name postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 quay.io/coredb/pgmq-pg:latest

Initialize a connection to Postgres

from coredb_pgmq_python import PGMQueue, Message

queue = PGMQueue(host="0.0.0.0")

Create a queue (or a partitioned queue)

queue.create_queue("my_queue")
# queue.create_partitioned_queue("my_partitioned_queue", partition_size=10000)

Send a message

msg_id: int = queue.send("my_queue", {"hello": "world"})

Read a message, set it invisible for 30 seconds.

read_message: Message = queue.read("my_queue", vt=10)
print(read_message)

Archive the message after we're done with it. Archived messages are moved to an archive table.

archived: bool = queue.archive("my_queue", read_message.msg_id)

Delete a message completely.

msg_id: int = queue.send("my_queue", {"hello": "world"})
read_message: Message = queue.read("my_queue")
deleted: bool = queue.delete("my_queue", read_message.msg_id)

Pop a message, deleting it and reading it in one transaction.

popped_message: Message = queue.pop("my_queue")
print(popped_message)

Project details


Download files

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

Source Distribution

coredb_pgmq_python-0.2.2.tar.gz (3.5 kB view hashes)

Uploaded Source

Built Distribution

coredb_pgmq_python-0.2.2-py3-none-any.whl (3.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page