https://github.com/mauricioabreu/bojack-py
:horse: :snake: BoJack client written in Python
https://github.com/mauricioabreu/bojack-py
Last synced: 20 days ago
JSON representation
:horse: :snake: BoJack client written in Python
- Host: GitHub
- URL: https://github.com/mauricioabreu/bojack-py
- Owner: mauricioabreu
- License: mit
- Created: 2016-08-07T15:58:11.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-08-31T14:41:06.000Z (over 8 years ago)
- Last Synced: 2025-03-28T01:44:22.606Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 302 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# BoJack client written in Python [](https://travis-ci.org/mauricioabreu/bojack-py)
A Python interface to the [BoJack](https://github.com/marceloboeira/bojack) in-memory key value store.
## Installation
Python 3.4+
```
pip install bojack
```## Usage
```python
>>> 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](https://github.com/mauricioabreu/bojack-py/issues/new).
Want to contribute? Make sure you follow the [guide](https://github.com/mauricioabreu/bojack-py/blob/master/CONTRIBUTING.md).