X Tutup
Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 616 Bytes

File metadata and controls

33 lines (22 loc) · 616 Bytes

Python Client

Installation

pip install labstack

Quick Start

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
X Tutup