masroore / leveldb-py

A Cython wrapper for Mojang's custom LevelDB

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Py LevelDB

A Cython wrapper for Mojang's modified LevelDB library.

Install

pip install pyleveldb

Use

from leveldb import LevelDB

db = LevelDB("path/to/db", create_if_missing = True)
db.put(b"greetings", b"Hello world")
print(db.get(b"greetings"))
# b"Hello world"

See the source code for full documentation.

About

A Cython wrapper for Mojang's custom LevelDB

License:Other


Languages

Language:Python 85.6%Language:Cython 14.4%