-
Notifications
You must be signed in to change notification settings - Fork 16
leveldb bindings for python
License
rjpower/py-leveldb
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Build Instructions ------------------ pip install [--user] leveldb **NB** If you have issues with this step, please contact Russell ([email protected]). I'm responsible for the PyPi package upload and any resulting errors. Example Usage ------------- >>> import leveldb >>> db = leveldb.LevelDB('./db') >>> db.Put('hello', 'world') >>> print db.Get('hello') world >>> db.Delete('hello') >>> db.Get('hello') Traceback (most recent call last): File "<stdin>", line 1, in <module> KeyError >>> for i in xrange(10): ... db.Put(str(i), 'string_%s' % i) ... >>> print list(db.RangeIter(key_from = '2', key_to = '5')) [('2', 'string_2'), ('3', 'string_3'), ('4', 'string_4'), ('5', 'string_5')] >>> batch = leveldb.WriteBatch() >>> for i in xrange(1000): ... db.Put(str(i), 'string_%s' % i) ... >>> db.Write(batch, sync = True) >>> --------------------- Author: Arni Mar Jonsson ([email protected]) - http://code.google.com/p/leveldb/
About
leveldb bindings for python
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published