-
hofmockel authoredcf95b579
index.rst 951 B
Welcome to pyrocksdb's documentation!
Overview
Python bindings to the C++ interface of http://rocksdb.org/ using cython:
import rocksdb
db = rocksdb.DB("test.db", rocksdb.Options(create_if_missing=True))
db.put(b"a", b"b")
print db.get(b"a")
Tested with python2.7 and python3.3 and RocksDB version 3.10
Contributing
Source can be found on github. Feel free to fork and send pull-requests or create issues on the github issue tracker