Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 344 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 344 Bytes

Installation

python setup.py install

Usage

from olegdb import OlegDB, DEFAULT_HOST, DEFAULT_PORT

# default_host and default port are optional
connection = OlegDB()

connection.set("test", 123)
connection.get("test")

Thats the gist. There are a couple other methods, the code is pretty clear.