mauricioabreu / bojack-py

:horse: :snake: BoJack client written in Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BoJack client written in Python Build Status

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.

About

:horse: :snake: BoJack client written in Python

License:MIT License


Languages

Language:Python 100.0%