├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CHANGELOG ├── LICENSE.txt ├── README.rst ├── asyncio_redis ├── __init__.py ├── connection.py ├── cursors.py ├── encoders.py ├── exceptions.py ├── log.py ├── pool.py ├── protocol.py └── replies.py ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat └── pages │ ├── examples.rst │ └── reference.rst ├── examples ├── benchmarks │ ├── hiredis_test.py │ └── speed_test.py ├── protocol │ └── example.py ├── pubsub │ ├── receiver.py │ └── sender.py ├── reconnect │ └── test.py └── streaming-multi-bulk │ └── test.py ├── setup.cfg ├── setup.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/README.rst -------------------------------------------------------------------------------- /asyncio_redis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/asyncio_redis/__init__.py -------------------------------------------------------------------------------- /asyncio_redis/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/asyncio_redis/connection.py -------------------------------------------------------------------------------- /asyncio_redis/cursors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/asyncio_redis/cursors.py -------------------------------------------------------------------------------- /asyncio_redis/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/asyncio_redis/encoders.py -------------------------------------------------------------------------------- /asyncio_redis/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/asyncio_redis/exceptions.py -------------------------------------------------------------------------------- /asyncio_redis/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/asyncio_redis/log.py -------------------------------------------------------------------------------- /asyncio_redis/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/asyncio_redis/pool.py -------------------------------------------------------------------------------- /asyncio_redis/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/asyncio_redis/protocol.py -------------------------------------------------------------------------------- /asyncio_redis/replies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/asyncio_redis/replies.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/pages/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/docs/pages/examples.rst -------------------------------------------------------------------------------- /docs/pages/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/docs/pages/reference.rst -------------------------------------------------------------------------------- /examples/benchmarks/hiredis_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/examples/benchmarks/hiredis_test.py -------------------------------------------------------------------------------- /examples/benchmarks/speed_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/examples/benchmarks/speed_test.py -------------------------------------------------------------------------------- /examples/protocol/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/examples/protocol/example.py -------------------------------------------------------------------------------- /examples/pubsub/receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/examples/pubsub/receiver.py -------------------------------------------------------------------------------- /examples/pubsub/sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/examples/pubsub/sender.py -------------------------------------------------------------------------------- /examples/reconnect/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/examples/reconnect/test.py -------------------------------------------------------------------------------- /examples/streaming-multi-bulk/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/examples/streaming-multi-bulk/test.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanslenders/asyncio-redis/HEAD/tests.py --------------------------------------------------------------------------------