An open API service indexing awesome lists of open source software.

https://github.com/labstack/labstack-python

Official Python client library for the LabStack platform
https://github.com/labstack/labstack-python

Last synced: 8 months ago
JSON representation

Official Python client library for the LabStack platform

Awesome Lists containing this project

README

          

## Python Client

## Installation

`pip install labstack`

## Quick Start

[Sign up](https://labstack.com/signup) to get an API key

Create a file `app.py` with the following content:

```python
from labstack import Client, LabStackError

client = new Client('')
geocode = client.geocode()

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

From terminal run your app:

```sh
python app.py
```

## [Docs](https://labstack.com/docs) | [Forum](https://forum.labstack.com)