Python Client for Bambleweeny, the HTTP based key-value store and message broker
Project description
b9y - Python Bindings for Bambleweeny
A client implementation for Bamblweeny
Install
pip install b9y
Use
from b9y import B9y
b9y = B9y() # for default connection
b9y = B9y('http://myhost:8080')
b9y = B9y('http://myhost:8080', 'user', 'password')
Get info
print b9y.info()
Set and get key
b9y.set('foo', 'bar')
print b9y.get('foo')
Try the counter
print b9y.incr('counter')
Push and pop
b9y.push('super', 'trouper') print b9y.pop('super')
PyPi
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
b9y-0.0.12.tar.gz
(2.5 kB
view hashes)
Built Distribution
b9y-0.0.12-py2-none-any.whl
(3.0 kB
view hashes)