pip install labstack
Sign up to get an API key
Create a file app.py
with the following content:
from labstack import Client
client = Client('<ACCOUNT_ID>', '<API_KEY>')
store = client.store()
doc = store.insert('users', {
name: 'Jack',
location: 'Disney'
})
print(doc)
From terminal run your app:
python app.py