GitHub - labstack/labstack-python: Official Python client library for the LabStack platform

Skip to content

Navigation Menu

Sign in

Appearance settings

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Repository files navigation

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

Docs | Forum

About

Official Python client library for the LabStack platform

Resources

Readme

License

MIT license

Activity

Custom properties

Stars

8 stars

Watchers

2 watching

Forks

2 forks

Releases

No releases published