Mixin for publishing events to RabbitMQ
Project description
AMQP Publishing Mixin for Tornado RequestHandlers.
Installation
sprockets.mixins.amqp is available on the Python Package Index and can be installed via pip:
pip3 install sprockets.mixins.amqp
Documentation
Python Compatibility
Python 3.7
Python 3.8
Requirements
Pika==0.13.1
Tornado>=6,<7
Example
You may optionally install sprockets.mixins.correlation into your request handler to take advantage of automatic correlation_id fetching. Otherwise, be sure to set correlation_id as an instance variable on your request handler before sending AMQP messages.
This examples demonstrates the most basic usage of sprockets.mixins.amqp
export AMQP_URL="amqp://user:password@rabbitmq_host:5672/%2f"
python my-example-app.py
import json
from tornado import gen, web
from sprockets.mixins import amqp
def make_app(**settings):
application = web.Application(
[
web.url(r'/', RequestHandler),
], **settings)
amqp_settings = {
"reconnect_delay": 5,
}
amqp.install(application, **amqp_settings)
return application
class RequestHandler(amqp.PublishingMixin,
correlation.HandlerMixin,
web.RequestHandler):
async def get(self, *args, **kwargs):
body = {'request': self.request.path, 'args': args, 'kwargs': kwargs}
await self.amqp_publish(
'exchange',
'routing.key',
json.dumps(body),
{'content_type': 'application/json'}
)
AMQP Settings
- url:
The AMQP URL to connect to.
- reconnect_delay:
The optional time in seconds to wait before reconnecting on connection failure.
- timeout:
The optional maximum time to wait for a bad state to resolve before treating the failure as persistent.
- connection_attempts:
The optional number of connection attempts to make before giving up.
- on_ready_callback:
The optional callback to call when the connection to the AMQP server has been established and is ready.
- on_unavailable_callback:
The optional callback to call when the connection to the AMQP server becomes unavailable.
- on_persistent_failure_callback:
The optional callback to call when the connection failure does not resolve itself within the timeout.
- on_message_returned_callback:
The optional callback to call when the AMQP server returns a message.
- ioloop:
An optional IOLoop to override the default with.
Environment Variables
Any environment variables set will override the corresponding AMQP settings passed into install()
AMQP_URL
AMQP_TIMEOUT
AMQP_RECONNECT_DELAY
AMQP_CONNECTION_ATTEMPTS
Source
sprockets.mixins.amqp source is available on Github at https://github.com/sprockets/sprockets.mixins.amqp
Running Tests Locally
You’ll need to have python 3.7, Docker and Docker Compose installed.
$ python3 -m venv env
$ env/bin/activate
(env) $ pip3 install -r requires/testing.txt
(env) $ ./bootstrap.sh
(env) $ coverage run && coverage report
License
sprockets.mixins.amqp is released under the 3-Clause BSD license.
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
File details
Details for the file sprockets.mixins.amqp-3.0.1.tar.gz
.
File metadata
- Download URL: sprockets.mixins.amqp-3.0.1.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5eac98305e33f6aa44c14c94e59911ac22e3781a1dc7ff4b94ba86c41bd620b2 |
|
MD5 | bf91a283f8ee37d2bc78c34954823634 |
|
BLAKE2b-256 | 55c31433b89118e0a322b19409c1460ea56c598d525f6214391c8853d169b3a4 |