1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
Welcome to python-rocksdb'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 python3.8 and python3.9 and RocksDB version 6.11.4.
.. toctree::
:maxdepth: 2
Instructions how to install <installation>
Tutorial <tutorial/index>
API <api/index>
Changelog <changelog>
Contributing
------------
Source can be found on `github <https://github.com/NightTsarina/python-rocksdb>`_.
Feel free to fork and send pull-requests or create issues on the
`github issue tracker <https://github.com/NightTsarina/python-rocksd/issues>`_
RoadMap/TODO
------------
No plans so far. Please submit wishes to the github issues.
Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
|