Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Polyconseil/aioamqp
AMQP implementation using asyncio
https://github.com/Polyconseil/aioamqp
amqp asyncio python3
Last synced: 5 days ago
JSON representation
AMQP implementation using asyncio
- Host: GitHub
- URL: https://github.com/Polyconseil/aioamqp
- Owner: Polyconseil
- License: other
- Created: 2014-02-21T15:15:31.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-05-19T09:54:20.000Z (over 1 year ago)
- Last Synced: 2024-10-15T03:21:48.975Z (21 days ago)
- Topics: amqp, asyncio, python3
- Language: Python
- Size: 583 KB
- Stars: 280
- Watchers: 53
- Forks: 88
- Open Issues: 36
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- License: LICENSE
- Authors: AUTHORS.rst
Awesome Lists containing this project
- awesome-asyncio - aioamqp - AMQP implementation using asyncio. (Message Queues)
- awesome-asyncio-cn - aioamqp - 使用 Asyncio 异步执行 AMQP。 (消息队列)
- awesome-asyncio - aioamqp - AMQP implementation using asyncio. (Message Queues)
README
aioamqp
=======.. image:: https://badge.fury.io/py/aioamqp.svg
:target: http://badge.fury.io/py/aioamqp
.. image:: https://travis-ci.org/Polyconseil/aioamqp.svg?branch=master
:target: https://travis-ci.org/Polyconseil/aioamqp.. image:: https://readthedocs.org/projects/aioamqp/badge/?version=latest
:alt: Documentation Status
:scale: 100%
:target: https://aioamqp.readthedocs.org/en/latest/?badge=latest``aioamqp`` library is a pure-Python implementation of the `AMQP 0.9.1 protocol`_.
Built on top on Python's asynchronous I/O support introduced in `PEP 3156`_, it provides an API based on coroutines, making it easy to write highly concurrent applications.
Bug reports, patches and suggestions welcome! Just open an issue_ or send a `pull request`_.
tests
-----To run the tests, you'll need to install the Python test dependencies::
pip install -r requirements_dev.txt
Tests require an instance of RabbitMQ. You can start a new instance using docker::
docker run -d --log-driver=syslog -e RABBITMQ_NODENAME=my-rabbit --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3-management
Then you can run the tests with ``make test``.
tests using docker-compose
^^^^^^^^^^^^^^^^^^^^^^^^^^
Start RabbitMQ using ``docker-compose up -d rabbitmq``. When RabbitMQ has started, start the tests using ``docker-compose up --build aioamqp-test``.. _AMQP 0.9.1 protocol: https://www.rabbitmq.com/amqp-0-9-1-quickref.html
.. _PEP 3156: http://www.python.org/dev/peps/pep-3156/
.. _issue: https://github.com/Polyconseil/aioamqp/issues/new
.. _pull request: https://github.com/Polyconseil/aioamqp/compare/