forked from mirror/ledisdb
52 lines
782 B
Markdown
52 lines
782 B
Markdown
#ledis-py
|
|
|
|
The Python interface to the ledisdb key-value store.
|
|
|
|
|
|
##Installation
|
|
|
|
|
|
ledis-py requires a running ledisdb server. See [ledisdb guide](https://github.com/siddontang/ledisdb#build-and-install) 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](http://ledis-py.readthedocs.org/).
|
|
|
|
|
|
## Connection
|
|
|
|
### Connection Pools
|
|
|
|
### Connnections
|
|
|