ledisdb/client/ledis-py
holys 10fc88beee add new license 2014-07-09 17:03:22 +08:00
..
doc add rtfd link; fix import error 2014-07-08 21:32:19 +08:00
ledis add ledis-py doc, update docstring 2014-07-08 20:44:09 +08:00
tests fixed setup.py; fixed test_zset.py bug 2014-07-08 15:54:56 +08:00
LICENSE add new license 2014-07-09 17:03:22 +08:00
MANIFEST.in add MANIFEST.in file for packaging python egg 2014-07-09 10:39:36 +08:00
README.md add rtfd link; fix import error 2014-07-08 21:32:19 +08:00
redis-py_license rename license file 2014-07-08 16:04:30 +08:00
setup.py fixed setup.py; fixed test_zset.py bug 2014-07-08 15:54:56 +08:00

README.md

#ledis-py

The Python interface to the ledisdb key-value store.

##Installation

ledis-py requires a running ledisdb server. See ledisdb guide for installation instructions.

To install ledis-py, simply using pip(recommended):

$ sudo pip install ledis

or alternatively, using easy_install:

$ sudo easy_install ledis

or install from the source:

$ sudo python setup.py install 

##Getting Started

>>> import ledis
>>> l = ledis.Ledis(host='localhost', port=6380, db=0)
>>> l.set('foo', 'bar')
True
>>> l.get('foo')
'bar'
>>> 

API Reference

For full API reference, please visit rtfd.

Connection

Connection Pools

Connnections