Skip to content

leon332157/json-store-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

json-store-client

A Python client for jsonstore.io

Installation

pip install json-store-client

An optional installation of ujson is recommended for faster json processing.

Also installing cchardet and aiodns are recommended by aiohttp for faster performance.

Usage

Demo of storing a Python json-friendly object with json-store-client in async on repl.it.

from json_store_client import *

jsonStoreToken = '...' # Insert your token here in place of the three periods(...).
client = AsyncClient(jsonStoreToken)

async def demo_function():

 # Save data to the 'foo' key.
 await client.store('foo', {'alfa': 'bravo', 'charlie': 'delta'})

 # Save data with dict mapping
 await client.save_multiple({'foo':{'alfa': 'bravo', 'charlie': 'delta'}})

 # Get the data from the 'foo' key.
 data = await client.retrieve('foo')

 print(data) # => {'alfa': 'bravo', 'charlie': 'delta'}
 print(data['alfa']) # => 'bravo'

 # Deletes the data after printing parts of it.
 await client.delete('foo')

Importing

Before starting to use the API, you will need to import the client classes into your program. The following line of code will simply import everything from the package: -

from json_store_client import *

json-store-client API

Client

The synchronous Client. This client handles the API features synchronously using normal functions.

Constructor

my_client = Client(token)

AsyncClient

The asynchronous Client. This client handles the API features asynchronously using coroutines.

Constructor

my_async_client = AsyncClient(token)

Both return the client to use for data operations.

token (str): The API token from jsonstore.io

Storing data

  • client.store(key, data[, timeout]) # Synchronously
  • await client.store(key, data[, timeout]) # Asynchronously

Storing data in jsonstore with a key.

key (str): The key to be stored on jsonstore
data (any): The data to be stored under the key. It can be any Python objects.
timeout (int): The timeout for the http request. Default 5 seconds
  • client.store_multiple(data[, timeout])
  • await client.store_multiple(data[, timeout])

Storing data in jsonstore with a dictionary mapping.

data (dict): A dict of {key(s):value(s)} to be updated.
timeout (int): The timeout for the http request. Default 5 seconds

Note: If there is already some data stored under the key, it will be overwritten.

Fetching stored data

  • client.retrieve(key[, timeout])
  • await clent.retrieve(key[, timeout])

Retrieve data in jsonstore with a key.

If nothing is saved under the key, it will return None.
key (str): The key to get on jsonstore
timeout (int): The timeout for the http request. Default 5 seconds

Deleting stored data

  • client.delete(key[, timeout])
  • await client.delete(key[, timeout])

Delete data in jsonstore with a key

key (str): The key to get on jsonstore
timeout (int): The timeout for the http request. Default 5 seconds