Metadata-Version: 2.1
Name: arpq
Version: 0.1.1
Summary: Asynchronous python library impementing priority queue based on Redis sorted sets
Home-page: https://github.com/ModBayNet/arpq
Author: Eugene Ershov
Author-email: oss@modbay.net
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Topic :: Software Development :: Object Brokering
Classifier: Typing :: Typed
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: aioredis

# arpq
Asynchronous python library impementing priority queue based on Redis sorted sets. 

[![PyPI](https://img.shields.io/pypi/v/arpq)](https://pypi.org/project/arpq)
[![Tests](https://github.com/ModBayNet/arpq/workflows/Test/badge.svg)](https://github.com/ModBayNet/arpq/actions)
[![Codecov](https://codecov.io/gh/ModBayNet/arpq/branch/master/graph/badge.svg)](https://codecov.io/gh/ModBayNet/arpq)

# Features
- support for many producers/consumers
- support for different encoders (json, msgpack, pickle, ...)

# Panned features
- support for different async redis libraries (aioredis, aredis, ...)
- batch task processing
- better control over encoders (passing different arguments for encode/decode)

# Examples
TODO


