Metadata-Version: 2.1
Name: birdisle
Version: 0.1.1
Summary: Python bindings for birdisle
Home-page: https://github.com/bmerry/birdisle-py
Author: Bruce Merry
Author-email: bmerry@gmail.com
License: BSD
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Database
Classifier: Topic :: Software Development :: Testing
Description-Content-Type: text/markdown
Requires-Dist: cffi (>=1.0.0)
Provides-Extra: aioredis
Requires-Dist: aioredis; extra == 'aioredis'
Provides-Extra: redis
Requires-Dist: redis; extra == 'redis'
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-forked; extra == 'test'
Requires-Dist: redis; extra == 'test'
Requires-Dist: pytest-asyncio; (python_version >= "3.5") and extra == 'test'
Requires-Dist: async-generator; (python_version >= "3.5") and extra == 'test'
Requires-Dist: aioredis; (python_version >= "3.5") and extra == 'test'

# birdisle-py

[![Build Status](https://travis-ci.org/bmerry/birdisle-py.svg?branch=master)](https://travis-ci.org/bmerry/birdisle-py)
[![Coverage Status](https://coveralls.io/repos/github/bmerry/birdisle-py/badge.svg)](https://coveralls.io/github/bmerry/birdisle-py)
[![Documentation Status](https://readthedocs.org/projects/birdisle/badge/?version=latest)](https://birdisle.readthedocs.io/en/latest/?badge=latest)

Birdisle (an anagram of "lib redis") is a modified version of
[redis](https://redis.io) that runs as a library inside another process. The
primary aim is to simplify unit testing by providing a way to run tests
against what appears to be a redis server, but without the hassle of starting a
separate process and ensuring that it is torn down correctly.

Birdisle-py is Python bindings for Birdisle. Documentation can be found at
[readthedocs](https://birdisle.readthedocs.io/).


