Metadata-Version: 2.1
Name: arpq
Version: 0.1.0
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 (==1.3.1)
Requires-Dist: async-timeout (==3.0.1)
Requires-Dist: hiredis (==1.0.1)

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

# 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


