Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/infoforcefeed/olegdb-python
- Owner: infoforcefeed
- Created: 2014-04-29T18:09:05.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-05-28T03:43:29.000Z (over 5 years ago)
- Last Synced: 2024-11-01T10:17:51.529Z (2 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.