An asynchronous RPC client for message brokers implementing the AMQPv0-9-1 protocol
Project description
AMQP RPC Client
This library offers a Remote-Procedure-Call client which communicates its messages via a message broker which uses the AMQPv0-9-1 protocol.
This library is currently only tested with RabbitMQ since the underlying package pika
is only
tested with the RabbitMQ server
Usage
General
This AMQP RPC Client uses an extra thread in which it handles data events like new messages or sending keep-alive messages. Therefore, your code will continue to execute after sending a message without waiting for a response. See the attached examples for how to use the library
Examples
Create a new client
from amqp_rpc_client import Client
# The Data Source Name which is used to connect to the message broker. The virtual host currently
# is "/". Special characters need to be url-encoded
AMQP_DSN = 'amqp://<<your-username>>:<<your-password>>@<<your-message-broker-address>>/%2F'
# Create the new client with the data source name
rpc_client = Client(AMQP_DSN)
Send a message to another exchange
from amqp_rpc_client import Client
# The Data Source Name which is used to connect to the message broker. The virtual host currently
# is "/". Special characters need to be url-encoded
AMQP_DSN = 'amqp://<<your-username>>:<<your-password>>@<<your-message-broker-address>>/%2F'
# The exchange into which the message shall be posted
TARGET_EXCHANGE = 'hello_world'
# Create the new client with the data source name
rpc_client = Client(AMQP_DSN)
# Send a message to the specified exchange
rpc_client.send('my_message_content_string', TARGET_EXCHANGE)
Send a message to another exchange and wait for the answer
from amqp_rpc_client import Client
# The Data Source Name which is used to connect to the message broker. The virtual host currently
# is "/". Special characters need to be url-encoded
AMQP_DSN = 'amqp://<<your-username>>:<<your-password>>@<<your-message-broker-address>>/%2F'
# The exchange into which the message shall be posted
TARGET_EXCHANGE = 'hello_world'
# Create the new client with the data source name
rpc_client = Client(AMQP_DSN)
# Send a message to the specified exchange. This will return a message id which can be used to wait
# for a response
message_id = rpc_client.send('my_message_content_string', TARGET_EXCHANGE)
# Wait indefinitely and receive the response bytes
response: bytes = rpc_client.await_response(message_id)
Send a message to another exchange and wait for the answer with an timeout
from amqp_rpc_client import Client
# The Data Source Name which is used to connect to the message broker. The virtual host currently
# is "/". Special characters need to be url-encoded
AMQP_DSN = 'amqp://<<your-username>>:<<your-password>>@<<your-message-broker-address>>/%2F'
# The exchange into which the message shall be posted
TARGET_EXCHANGE = 'hello_world'
# The timeout in seconds as to how long the answer shall be awaited
ANSWER_TIMEOUT: float = 10.0
# Create the new client with the data source name
rpc_client = Client(AMQP_DSN)
# Send a message to the specified exchange. This will return a message id which can be used to wait
# for a response
message_id = rpc_client.send('my_message_content_string', TARGET_EXCHANGE)
# Wait indefinitely and receive the response bytes
response: bytes = rpc_client.await_response(message_id, ANSWER_TIMEOUT)
# Check if a response was received
if response is None:
print('No response received')
else:
print(response)
Directly get the response content if it is available
from amqp_rpc_client import Client
# The Data Source Name which is used to connect to the message broker. The virtual host currently
# is "/". Special characters need to be url-encoded
AMQP_DSN = 'amqp://<<your-username>>:<<your-password>>@<<your-message-broker-address>>/%2F'
# The exchange into which the message shall be posted
TARGET_EXCHANGE = 'hello_world'
# The timeout in seconds as to how long the answer shall be awaited
ANSWER_TIMEOUT: float = 10.0
# Create the new client with the data source name
rpc_client = Client(AMQP_DSN)
# Send a message to the specified exchange. This will return a message id which can be used to wait
# for a response
message_id = rpc_client.send('my_message_content_string', TARGET_EXCHANGE)
# Try to get the response
response: bytes = rpc_client.get_response(message_id)
# Check if a response was received
if response is None:
print('No response received')
else:
print(response)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file amqp-rpc-client-1.1.2.tar.gz
.
File metadata
- Download URL: amqp-rpc-client-1.1.2.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d81c7dadfbb0db79b4d22114e7c416831685f44b6df06836d798f2d66fded324 |
|
MD5 | ea3f6469c98a68b75a3444bab90dece2 |
|
BLAKE2b-256 | c351b91faec040908e854ead90fbaab604d498ada0a4035c12ae31a3015824e5 |
File details
Details for the file amqp_rpc_client-1.1.2-py3-none-any.whl
.
File metadata
- Download URL: amqp_rpc_client-1.1.2-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3db8f3879655813bb8ec310fabb03081f1adb320daa6dfb4ec1d4526212157a2 |
|
MD5 | 76a401842100a11ca14ea8b350505683 |
|
BLAKE2b-256 | d8120f37c028e4610d3d6991c42022151d9c2c38c31462db23f04047f42ceb09 |