Skip to content

labteral/pyrocks

 
 

Repository files navigation

pyrocks

Note

The python-rocksdb and pyrocksdb packages haven't been updated in a long time - this repo is a fork of python-rocksdb with many of the PRs to it merged, and with bunch of updates and improvements from @iFA88 and @mosquito.

Install from pip

pip install pyrocks

Install for development / from source

sudo apt install build-essential binutils
git clone https://github.com/lbryio/pyrocks.git
cd pyrocks
git submodule update --init --recursive
git pull --recurse-submodules
make clean && make
pip install -e .
python -m unittest discover . -v

Quick Usage Guide

>>> import rocksdb
>>> db = rocksdb.DB("test.db", rocksdb.Options(create_if_missing=True))
>>> db.put(b'a', b'data')
>>> print db.get(b'a')
b'data'

Releases

No releases published

Packages

No packages published

Languages

  • Cython 66.8%
  • Python 24.5%
  • C++ 7.8%
  • Other 0.9%