Skip to main content

S1 API Library for Python

Project description

S1 Python

A barebones key-value store that requires no setup besides a token. This is the Python Library for S1. Find more information here

Getting A Token

Head over to s1.kognise.dev/token to get a token. Don't share this with anyone as it's your key to accessing all your data on your S1 DB. You can store this as an environment variable.

Installation

First, install S1 with pip:

$ pip install s1db

Then you can import it like so:

from s1db import S1

# Replace "your-token-here" with the token you got from the URL above.
api = S1("your-token-here")

Usage

Setting Objects as Values:

To set a Python object as a value use the S1.set() method.

api.set('keyname', 123)
api.set('keyname0', [23])
api.set('keyname1', {'foo': 'bar'})

The set method will automatically serialize your data for you into valid JSON to be stored on the S1 DB.

Getting An Object:

To get an object from your S1 DB use the S1.get() method.

api.get('keyname') # Returns: 123 based on the set example from above.
api.get('keyname0') # Returns: [23] as a list based on the set example from above.
api.get('keyname1') # Returns: {'foo': 'bar'} as a Python dict based on the set example from above.

Setting Raw Values:

To set a raw string as a value use the S1.set_raw() method.

api.set_raw('keyname-raw', '12')
api.set_raw('keyname-raw0, '{"foo": "bar"}')

The set_raw method does not do any JSON serialization and raw items cannot be returned with the get() method.

Getting Raw Values:

To get a raw value from a key use the S1.get_raw() method.

api.get_raw('keyname-raw') # Returns: 12 with no serialization
api.get_raw('ketname-raw0') # Returns: '{"foo": "bar"}' as string

Deleting Keys:

To delete data use the S1.delete() method.

api.delete('keyname')

Getting All Keys:

To get all your keys use the S1.get_keys() method.

api.get_keys() # Returns: List of key names as Python object.

Download files

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

Source Distribution

s1db-1.0.2.tar.gz (3.0 kB view details)

Uploaded Source

Built Distribution

s1db-1.0.2-py3-none-any.whl (3.1 kB view details)

Uploaded Python 3

File details

Details for the file s1db-1.0.2.tar.gz.

File metadata

  • Download URL: s1db-1.0.2.tar.gz
  • Upload date:
  • Size: 3.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.20.1 setuptools/41.6.0 requests-toolbelt/0.8.0 tqdm/4.33.0 CPython/3.7.3

File hashes

Hashes for s1db-1.0.2.tar.gz
Algorithm Hash digest
SHA256 66e33af7549327dc29018e4e11f6a196b4ef3f508b0f04cc5ba0131a3c6e2a2c
MD5 bfd7f0ee1db21dd7c181ebcf5f235382
BLAKE2b-256 4389689955efa1e8bca6da90648d6e8a80b3c5d4210621be07d94ed97e86e4cc

See more details on using hashes here.

File details

Details for the file s1db-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: s1db-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 3.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.20.1 setuptools/41.6.0 requests-toolbelt/0.8.0 tqdm/4.33.0 CPython/3.7.3

File hashes

Hashes for s1db-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f87aff604d64ffd18e4627a19b6466909aea903f653fab07af991503baf82246
MD5 2717b98039b4473cf3a2e43462f2c346
BLAKE2b-256 d79258820cc24f57948c9809d478d7c7ee13f7acfd4adf1987723e34e2558340

See more details on using hashes here.

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