Skip to main content

Official kvp.io python bindings and client

Project description

kvp.io is a micro-service designed to empower automation, in any cloud, in any data-center, with ease.

kvp.io-python

The python library and cli for kvp.io.

Installation

Requires requests and click.

pip install kvpio-python

Tests

Requires pytest and pytest-cov.

py.test --cov-report term --cov=kvpio

CLI Documentation

The cli is a simple utility suitable for use by itself or in an automation pipeline. See the examples section below or get usage help by running:

kvpio --help

To be useful, your API key must be provided via one of the following:

  • as an environment variable name KVPIO_APIKEY

  • as a single line in the file ~/.kvpio

API Documentation

See kvp.io-python for the API docs. See the examples section below for more.

CLI Examples

Here are a few examples to get you familiar with the cli.

Basic bucket usage:

$ export KVPIO_APIKEY=<your api key here>
$ kvpio bucket set foo bar
$ kvpio bucket get foo
bar

Bucket with nested data:

$ kvpio bucket set foo '{"bar": {"baz": 123}}'
$ kvpio bucket get foo/bar/baz
123

Basic template usage:

$ kvpio template set foo 'baz is equal to {{ foo.bar.baz }}'
$ kvpio template get foo
baz is equal to 123

Get account information:

$ kvpio account
{"id": "kvp.io", "email": "support@kvp.io", "reads": 87, "size": 124}

API Examples

Here are a few examples to get you familiar with the API.

Accessing account information:

import kvpio
kvpio.api_key = '123abc'
account = kvpio.Account().get()
# {"id": "kvp.io", "email": "support@kvp.io", "reads": 87, "size": 124}

Writing to your bucket:

data = {
    'foo': 123,
    'bar': True,
    'baz': {
        'boo': 321,
        'far': False,
        'faz': [1, 2, 3]
    }
}
bucket = kvpio.Bucket()
bucket.set('my_key', data)

Reading nested data from your bucket:

data = bucket.get('my_key/baz/faz')
# [1, 2, 3]

Project details


Download files

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

Source Distribution

kvpio-python-0.2.0.tar.gz (6.2 kB view hashes)

Uploaded Source

Supported by

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