labstack / labstack-python

Official Python client library for the LabStack platform

Home Page:https://labstack.com/docs

Repository from Github https://github.comlabstack/labstack-pythonRepository from Github https://github.comlabstack/labstack-python

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, LabStackError

client = new Client('<API_KEY>')
geocode = client.geocode()

try:
  response = geocode.address('eiffel tower')
  print(response)
except APIError as error:
  print(error)

From terminal run your app:

python app.py

About

Official Python client library for the LabStack platform

https://labstack.com/docs

License:MIT License


Languages

Language:Python 92.7%Language:Shell 6.2%Language:Makefile 1.1%