https://github.com/infoforcefeed/olegdb-python
Generic methods for interacting with OlegDB via the HTTP interface.
https://github.com/infoforcefeed/olegdb-python
Last synced: 4 months ago
JSON representation
Generic methods for interacting with OlegDB via the HTTP interface.
- Host: GitHub
- URL: https://github.com/infoforcefeed/olegdb-python
- Owner: infoforcefeed
- Created: 2014-04-29T18:09:05.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2019-05-28T03:43:29.000Z (about 6 years ago)
- Last Synced: 2025-02-09T02:17:13.087Z (5 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 1
- Watchers: 7
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
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.