Metadata-Version: 2.1
Name: rbfly
Version: 0.10.0.dev2
Summary: RbFly - a library for RabbitMQ Streams using Python asyncio
Home-page: https://wrobell.dcmod.org/rbfly/
Author: Artur Wroblewski
Author-email: wrobell@riseup.net
License: GPLv3+
Project-URL: Source Code, https://gitlab.com/wrobell/rbfly
Project-URL: Bug tracker, https://gitlab.com/wrobell/rbfly/issues
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Description-Content-Type: text/x-rst
License-File: COPYING
Provides-Extra: tests
Requires-Dist: bandit; extra == "tests"
Requires-Dist: cython-lint; extra == "tests"
Requires-Dist: mypy==1.11.2; extra == "tests"
Requires-Dist: pika; extra == "tests"
Requires-Dist: pytest-asyncio; extra == "tests"
Requires-Dist: pytest-cov; extra == "tests"
Requires-Dist: pytest-lazy-fixtures; extra == "tests"
Requires-Dist: pytest-timeout; extra == "tests"
Requires-Dist: ruff>=0.3.0; extra == "tests"
Requires-Dist: toml; extra == "tests"
Requires-Dist: uvloop>=0.19.0; extra == "tests"
Provides-Extra: performance
Requires-Dist: msgpack; extra == "performance"
Requires-Dist: aiokafka==0.8.1; extra == "performance"
Requires-Dist: rstream==0.20.3; extra == "performance"
Requires-Dist: uamqp==1.6.9; extra == "performance"
Requires-Dist: python-qpid-proton==0.39.0; extra == "performance"
Provides-Extra: doc
Requires-Dist: sphinx_rtd_theme; extra == "doc"

RbFly is a library for RabbitMQ Streams using Python asyncio

- https://www.rabbitmq.com/streams.html
- https://docs.python.org/3/library/asyncio.html

The library is designed and implemented with the following qualities in
mind

1. Simple, flexible, and asynchronous Pythonic API with type annotations.
2. Use of AMQP 1.0 message format to enable interoperability between
   RabbitMQ Streams clients.
3. Performance by implementing critical sections of code using Cython,
   avoiding copying of data, and testing.
4. Auto reconnection to RabbitMQ broker with lazily created connection
   objects.

RbFly supports many RabbitMQ Streams broker features

1. Publishing single messages, or in batches, with confirmation.
2. Subscribing to a stream at a specific point in time, from a specific
   offset, or using offset reference.
3. Stream message filtering.
4. Writing stream offset reference.
5. Message deduplication.
6. Integration with AMQP 1.0 ecosystem at message format level.

RbFly library is licensed under terms of GPL license, version 3, see
COPYING file for details. As stated in the license, there is no warranty,
so any usage is on your own risk.
