Skip to content

Latest commit

 

History

History
70 lines (47 loc) · 1.15 KB

README.rst

File metadata and controls

70 lines (47 loc) · 1.15 KB

anguis

Documentation Status Updates

Latet anguis in herba (Virgil, Eclogues, 3, 93)

anguis is a generic key-store library in Python.

Currently, the following backends are supported:

  • filesystem
  • Etcd
  • Git
  • Redis
  • memcached
  • SFTP
  • Sqlite
  • AWS S3
  • Google Drive

Rationale

TODO

Installation

From source:

$ python setup.py install

From PyPI:

$ pip3 install anguis

Example of usage

from anguis.fs import AnguisFS

cache = AnguisFS()

cache['foo'] = 'bar'
print(cache['foo'])
# bar

del(cache['foo'])
print(cache['foo'])
# None