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
- Host: GitHub
- URL: https://github.com/labstack/labstack-python
- Owner: labstack
- License: mit
- Created: 2017-07-04T18:26:27.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-05-22T22:28:09.000Z (over 2 years ago)
- Last Synced: 2025-04-01T00:14:46.172Z (10 months ago)
- Language: Python
- Homepage: https://labstack.com/docs
- Size: 49.8 KB
- Stars: 6
- Watchers: 3
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)