🔴[NEW]🔴 Python Lib for www.jsonstore.io. DON'T LOSE YOUR DATA AGAIN WITH JSON STORE 🔴[NEW]🔴 This is a client to interact with www.jsonstore.io , an online json storage platform. GitHub repo: https://github.com/leon332157/json-store-client 🔴STAR IT NOW 🔴 :star: :star: :star:
Installation
Add 'json-store-client' to your requirement.txt
Usage
import json_store_client
jsonStoreToken = "..." # Insert your token here.
client = json_store_client.Client(jsonStoreToken)
# Save data to the "foo" key.
client.store("foo", {"alfa": "bravo", "charlie": "delta"})
# Get the data from the "foo" key.
data = client.retrieve("foo")
print(data["alfa"]) # => "bravo"
# Deletes the data after printing parts of it.
client.delete("foo")
🔴[NEW]🔴 Python Lib for www.jsonstore.io. DON'T LOSE YOUR DATA AGAIN WITH JSON STORE 🔴[NEW]🔴
This is a client to interact with www.jsonstore.io , an online json storage platform.
GitHub repo: https://github.com/leon332157/json-store-client 🔴STAR IT NOW 🔴 :star: :star: :star:
Installation
Add 'json-store-client' to your requirement.txt
Usage
json-store-client API
json_store_client.Client(token)
Returns the client to use for data operations.
token (str): The API token from jsonstore.io
client.store(key, data[, timeout])
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. Will be processed with jsonpickle
timeout (int): The timeout for the http request. Default 5 seconds
client.retrieve(key[, timeout])
Retrieve 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
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
Guys, the highly requested async version is out, check out the project at https://pypi.org/manage/project/json-store-client/release/1.0.2/ and https://github.com/leon332157/json-store-client