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
File details
Details for the file kvpio-python-0.1.6.tar.gz.
File metadata
- Download URL: kvpio-python-0.1.6.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
699028556de05bd7ee206d8774ceafc7f60b37c10a160b092db41616d75b211c
|
|
| MD5 |
482fa33f1ba7500cd9236d8e80d4ff1c
|
|
| BLAKE2b-256 |
c044bf8cdfe4a2e92bd841c319642264965bce68523604770c1a1f25c186e656
|