BoJack client written in Python [](https://travis-ci.org/mauricioabreu/bojack-py)
August 31, 2016 ยท View on GitHub
A Python interface to the BoJack in-memory key value store.
Installation
Python 3.4+
pip install bojack
Usage
>>> from bojack.client import Client
>>> client = Client('127.0.0.1', 5000)
>>> client.set('foo', 'bar')
b'bar'
>>> client.get('foo')
b'bar'
Tests
To run the test suite locally before TravisCI you can run the following command:
python setup.py test
Contributing
Found a bug? Have a suggestion? Please open an issue.
Want to contribute? Make sure you follow the guide.