Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/infoforcefeed/olegdb-python

Generic methods for interacting with OlegDB via the HTTP interface.
https://github.com/infoforcefeed/olegdb-python

Last synced: about 2 months ago
JSON representation

Generic methods for interacting with OlegDB via the HTTP interface.

Awesome Lists containing this project

README

        

Installation
============

```bash
python setup.py install
````

Usage
=====

```Python
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.