Stadia Maps Geospatial APIs
Project description
Stadia Maps Python API Client
The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
For more information about the API, please visit https://docs.stadiamaps.com
Installation & Usage
pip install
pip install stadiamaps
Setuptools
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install
to install the package for all users)
Tests
Execute pytest
to run the tests. These are run automatically via CI.
Getting Started
Please follow the installation procedure and then run the following:
import os
import stadiamaps
from stadiamaps.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.stadiamaps.com
# You can also use our EU endpoint to keep traffic within the EU like so:
# configuration = stadiamaps.Configuration(host="https://api-eu.stadiamaps.com")
# See configuration.py for a list of all supported configuration parameters.
configuration = stadiamaps.Configuration()
# Configure API key authorization. This example assumes it is injected via an environment
# variable.
configuration.api_key['ApiKeyAuth'] = os.environ["API_KEY"]
# Enter a context with an instance of the API client
with stadiamaps.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = stadiamaps.GeocodingApi(api_client)
text = "Põhja pst 27a" # str | The place name (address, venue name, etc.) to search for.
try:
# Search and geocode quickly based on partial input.
api_response = api_instance.autocomplete(text)
print("The response of GeocodingApi->autocomplete:
")
pprint(api_response)
except ApiException as e:
print("Exception when calling GeocodingApi->autocomplete: %s
" % e)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
stadiamaps-1.0.6.tar.gz
(108.9 kB
view hashes)
Built Distribution
stadiamaps-1.0.6-py3-none-any.whl
(207.1 kB
view hashes)
Close
Hashes for stadiamaps-1.0.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 28e45a0b9b044baa86864ef47c3a33e53485c96f8410cce7e656411f85dd34cf |
|
MD5 | 64442e3702c18be81cf926ceb9b46b79 |
|
BLAKE2b-256 | 4297c1b88c21b125d6458abf5de9efe66b88bc0d8195d7a8afb7fff01e20de4e |