Skip to main content

pyopenkeyval: A simple interface to OpenKeyval.org

Project description

OpenKeyval.org is a service for easily storing and retrieving key/value pairs via HTTP. pyopenkeyval is a Python interface to this service, presented as a dict-like object that accesses data on OpenKeyval.

Installing

$ sudo python setup.py install

Examples

Normal usage

from pyopenkeyval import pyopenkeyval
okv = pyopenkeyval()
okv['example'] = 'Hello, online key/value storage!'
print okv['example']

If you need the result from storing a value, use the store() method instead:

result = okv.store('example', 'Hello, online key/value storage!')
print result['read_only_key']

To check if a key has a value, use the in keyword. Note that this will also cache the value if caching is activated.

if 'example' in okv:
     ...

Deleting keys

To delete a key, either set its value to ‘’ or use the del keyword:

del okv['example']

Caching

If you want to cache retrieved values locally, set the cache_time argument when constructing the pyopenkeyval object. This specifies the number of seconds to cache individual values.

okv = pyopenkeyval(cache_time=60)

To clear the cache completely at any time, call the clear_cache() method.

SSL support

OpenKeyval.org also supports SSL over HTTPS for more secure transfer of data. To use SSL, set the ssl argument to True.

okv = pyopenkeyval(ssl=True)

Note that the HTTP och HTTPS versions of OpenKeyval.org are completely separate. Values set in one can’t be fetched from the other.

Python 3

pyopenkeyval is since version 0.3 compatible with Python 3. It must, however, either be installed using setup.py (as described above) before use, or manually be converted using the 2to3 tool.

Also note that values fetched will be returned as bytes. To use these as strings, call the .decode() method on them first. When setting values, either str or bytes can be used.

Requirements

Python 2.5 and lower require simplejson to be installed.

Project details


Release history Release notifications | RSS feed

This version

0.4

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyopenkeyval-0.4.tar.gz (1.6 kB view details)

Uploaded Source

File details

Details for the file pyopenkeyval-0.4.tar.gz.

File metadata

  • Download URL: pyopenkeyval-0.4.tar.gz
  • Upload date:
  • Size: 1.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pyopenkeyval-0.4.tar.gz
Algorithm Hash digest
SHA256 a5a06e852fed562e49fc8c2d6bbfc1a923aa3518f19c4771d0c8f2f6e18acd0f
MD5 20add212b090d7046b29ce92c70fe46c
BLAKE2b-256 306a4db7aa0fe429aa5145a6e08fec0d5810c8cfc53b8afcdccb941fded4f993

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page