Skip to content
This repository was archived by the owner on Jun 27, 2025. It is now read-only.

Latest commit

 

History

History
42 lines (29 loc) · 963 Bytes

File metadata and controls

42 lines (29 loc) · 963 Bytes

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 python2.7 and python3.4 and RocksDB version 5.3.0

.. toctree::
    :maxdepth: 2

    Instructions how to install <installation>
    Tutorial <tutorial/index>
    API <api/index>
    Changelog <changelog>


Contributing

Source can be found on github. Feel free to fork and send pull-requests or create issues on the github issue tracker

RoadMap/TODO

No plans so far. Please submit wishes to the github issues.

Indices and tables