Metadata-Version: 2.1
Name: stadiamaps
Version: 0.3.0
Summary: Stadia Maps Geospatial APIs
Home-page: https://docs.stadiamaps.com/
Author: Stadia Maps Support
Author-email: support@stadiamaps.com
Keywords: OpenAPI,OpenAPI-Generator,Stadia Maps Geospatial APIs
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# 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](https://docs.stadiamaps.com)

## Installation & Usage
### pip install

```shell
pip install stadiamaps
```

### Setuptools

Install via [Setuptools](http://pypi.python.org/pypi/setuptools).

```shell
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](#installation--usage) and then run the following:

```python
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 by setting
# host to https://api-eu.stadiamaps.com.
# See configuration.py for a list of all supported configuration parameters.
configuration = stadiamaps.Configuration()

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure API key authorization. This example assumes it is injected via an environment
# variable, but you can provide it in other ways as well.
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:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling GeocodingApi->autocomplete: %s\n" % e)
```

## Documentation for API Endpoints

All URIs are relative to *https://api.stadiamaps.com*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*GeocodingApi* | [**autocomplete**](docs/GeocodingApi.md#autocomplete) | **GET** /geocoding/v1/autocomplete | Search and geocode quickly based on partial input.
*GeocodingApi* | [**place**](docs/GeocodingApi.md#place) | **GET** /geocoding/v1/place | Retrieve details of a place using its GID.
*GeocodingApi* | [**reverse**](docs/GeocodingApi.md#reverse) | **GET** /geocoding/v1/reverse | Find places and addresses near geographic coordinates (reverse geocoding).
*GeocodingApi* | [**search**](docs/GeocodingApi.md#search) | **GET** /geocoding/v1/search | Search for location and other info using a place name or address (forward geocoding).
*GeocodingApi* | [**search_structured**](docs/GeocodingApi.md#search_structured) | **GET** /geocoding/v1/search/structured | Find locations matching components (structured forward geocoding).
*GeospatialApi* | [**elevation**](docs/GeospatialApi.md#elevation) | **POST** /elevation/v1 | Get the elevation profile along a polyline or at a point.
*GeospatialApi* | [**tz_lookup**](docs/GeospatialApi.md#tz_lookup) | **GET** /tz/lookup/v1 | Get the current time zone information for any point on earth.
*RoutingApi* | [**isochrone**](docs/RoutingApi.md#isochrone) | **POST** /isochrone/v1 | Calculate areas of equal travel time from a location.
*RoutingApi* | [**map_match**](docs/RoutingApi.md#map_match) | **POST** /map_match/v1 | Match a recorded route to the road network.
*RoutingApi* | [**nearest_roads**](docs/RoutingApi.md#nearest_roads) | **POST** /nearest_roads/v1 | Find the nearest roads to the set of input locations.
*RoutingApi* | [**optimized_route**](docs/RoutingApi.md#optimized_route) | **POST** /optimized_route/v1 | Calculate an optimized route between a known start and end point.
*RoutingApi* | [**route**](docs/RoutingApi.md#route) | **POST** /route/v1 | Get turn by turn routing instructions between two or more locations.
*RoutingApi* | [**time_distance_matrix**](docs/RoutingApi.md#time_distance_matrix) | **POST** /matrix/v1 | Calculate a time distance matrix for a grid of start and end points.
*RoutingApi* | [**trace_attributes**](docs/RoutingApi.md#trace_attributes) | **POST** /trace_attributes/v1 | Trace the attributes of roads visited on a route.


## Documentation For Models

 - [Access](docs/Access.md)
 - [AdminRegion](docs/AdminRegion.md)
 - [Administrative](docs/Administrative.md)
 - [AutoCostingOptions](docs/AutoCostingOptions.md)
 - [AutoCostingOptionsAllOf](docs/AutoCostingOptionsAllOf.md)
 - [BaseCostingOptions](docs/BaseCostingOptions.md)
 - [BaseTraceRequest](docs/BaseTraceRequest.md)
 - [BicycleCostingOptions](docs/BicycleCostingOptions.md)
 - [BicycleCostingOptionsAllOf](docs/BicycleCostingOptionsAllOf.md)
 - [BikeNetwork](docs/BikeNetwork.md)
 - [Contour](docs/Contour.md)
 - [Coordinate](docs/Coordinate.md)
 - [CostingModel](docs/CostingModel.md)
 - [CostingOptions](docs/CostingOptions.md)
 - [DirectionsOptions](docs/DirectionsOptions.md)
 - [DistanceUnit](docs/DistanceUnit.md)
 - [EdgeSign](docs/EdgeSign.md)
 - [EdgeUse](docs/EdgeUse.md)
 - [EndNode](docs/EndNode.md)
 - [GeoAttributes](docs/GeoAttributes.md)
 - [GeoJSONGeometry](docs/GeoJSONGeometry.md)
 - [GeoJSONGeometryBase](docs/GeoJSONGeometryBase.md)
 - [GeoJSONLineString](docs/GeoJSONLineString.md)
 - [GeoJSONLineStringAllOf](docs/GeoJSONLineStringAllOf.md)
 - [GeoJSONPoint](docs/GeoJSONPoint.md)
 - [GeoJSONPointAllOf](docs/GeoJSONPointAllOf.md)
 - [GeoJSONPolygon](docs/GeoJSONPolygon.md)
 - [GeoJSONPolygonAllOf](docs/GeoJSONPolygonAllOf.md)
 - [GeocodingObject](docs/GeocodingObject.md)
 - [HeightRequest](docs/HeightRequest.md)
 - [HeightResponse](docs/HeightResponse.md)
 - [HighwayClassification](docs/HighwayClassification.md)
 - [IntersectingEdge](docs/IntersectingEdge.md)
 - [IsochroneCostingModel](docs/IsochroneCostingModel.md)
 - [IsochroneFeature](docs/IsochroneFeature.md)
 - [IsochroneProperties](docs/IsochroneProperties.md)
 - [IsochroneRequest](docs/IsochroneRequest.md)
 - [IsochroneResponse](docs/IsochroneResponse.md)
 - [LocateDetailedEdge](docs/LocateDetailedEdge.md)
 - [LocateEdge](docs/LocateEdge.md)
 - [LocateEdgeInfo](docs/LocateEdgeInfo.md)
 - [LocateNode](docs/LocateNode.md)
 - [LocateNodeAllOf](docs/LocateNodeAllOf.md)
 - [LocateObject](docs/LocateObject.md)
 - [ManeuverSign](docs/ManeuverSign.md)
 - [ManeuverSignElement](docs/ManeuverSignElement.md)
 - [MapMatchCostingModel](docs/MapMatchCostingModel.md)
 - [MapMatchRequest](docs/MapMatchRequest.md)
 - [MapMatchRequestAllOf](docs/MapMatchRequestAllOf.md)
 - [MapMatchRouteResponse](docs/MapMatchRouteResponse.md)
 - [MapMatchRouteResponseAllOf](docs/MapMatchRouteResponseAllOf.md)
 - [MapMatchTraceOptions](docs/MapMatchTraceOptions.md)
 - [MapMatchWaypoint](docs/MapMatchWaypoint.md)
 - [MapMatchWaypointAllOf](docs/MapMatchWaypointAllOf.md)
 - [MatchedPoint](docs/MatchedPoint.md)
 - [MatrixCostingModel](docs/MatrixCostingModel.md)
 - [MatrixDistance](docs/MatrixDistance.md)
 - [MatrixRequest](docs/MatrixRequest.md)
 - [MatrixResponse](docs/MatrixResponse.md)
 - [MotorScooterCostingOptions](docs/MotorScooterCostingOptions.md)
 - [MotorScooterCostingOptionsAllOf](docs/MotorScooterCostingOptionsAllOf.md)
 - [MotorcycleCostingOptions](docs/MotorcycleCostingOptions.md)
 - [MotorcycleCostingOptionsAllOf](docs/MotorcycleCostingOptionsAllOf.md)
 - [NearestRoadsRequest](docs/NearestRoadsRequest.md)
 - [NodeId](docs/NodeId.md)
 - [NodeType](docs/NodeType.md)
 - [OptimizedRouteRequest](docs/OptimizedRouteRequest.md)
 - [PedestrianCostingOptions](docs/PedestrianCostingOptions.md)
 - [PeliasGeoJSONFeature](docs/PeliasGeoJSONFeature.md)
 - [PeliasGeoJSONProperties](docs/PeliasGeoJSONProperties.md)
 - [PeliasGeoJSONPropertiesAddendum](docs/PeliasGeoJSONPropertiesAddendum.md)
 - [PeliasGeoJSONPropertiesAddendumOsm](docs/PeliasGeoJSONPropertiesAddendumOsm.md)
 - [PeliasLayer](docs/PeliasLayer.md)
 - [PeliasResponse](docs/PeliasResponse.md)
 - [PeliasResponseGeocoding](docs/PeliasResponseGeocoding.md)
 - [PeliasSource](docs/PeliasSource.md)
 - [Restrictions](docs/Restrictions.md)
 - [RoadClass](docs/RoadClass.md)
 - [RouteLeg](docs/RouteLeg.md)
 - [RouteManeuver](docs/RouteManeuver.md)
 - [RouteRequest](docs/RouteRequest.md)
 - [RouteResponse](docs/RouteResponse.md)
 - [RouteResponseTrip](docs/RouteResponseTrip.md)
 - [RouteSummary](docs/RouteSummary.md)
 - [RoutingResponseWaypoint](docs/RoutingResponseWaypoint.md)
 - [RoutingResponseWaypointAllOf](docs/RoutingResponseWaypointAllOf.md)
 - [RoutingWaypoint](docs/RoutingWaypoint.md)
 - [RoutingWaypointAllOf](docs/RoutingWaypointAllOf.md)
 - [RoutingWaypointAllOfSearchFilter](docs/RoutingWaypointAllOfSearchFilter.md)
 - [SimpleRoutingWaypoint](docs/SimpleRoutingWaypoint.md)
 - [SimpleRoutingWaypointAllOf](docs/SimpleRoutingWaypointAllOf.md)
 - [Speeds](docs/Speeds.md)
 - [TraceAttributeFilterOptions](docs/TraceAttributeFilterOptions.md)
 - [TraceAttributeKey](docs/TraceAttributeKey.md)
 - [TraceAttributesBaseResponse](docs/TraceAttributesBaseResponse.md)
 - [TraceAttributesRequest](docs/TraceAttributesRequest.md)
 - [TraceAttributesRequestAllOf](docs/TraceAttributesRequestAllOf.md)
 - [TraceAttributesRequestAllOfFilters](docs/TraceAttributesRequestAllOfFilters.md)
 - [TraceAttributesResponse](docs/TraceAttributesResponse.md)
 - [TraceAttributesResponseAllOf](docs/TraceAttributesResponseAllOf.md)
 - [TraceEdge](docs/TraceEdge.md)
 - [TravelMode](docs/TravelMode.md)
 - [Traversability](docs/Traversability.md)
 - [TruckCostingOptions](docs/TruckCostingOptions.md)
 - [TruckCostingOptionsAllOf](docs/TruckCostingOptionsAllOf.md)
 - [TzResponse](docs/TzResponse.md)
 - [ValhallaLanguages](docs/ValhallaLanguages.md)
 - [ValhallaLongUnits](docs/ValhallaLongUnits.md)
 - [Warning](docs/Warning.md)


<a id="documentation-for-authorization"></a>
## Documentation For Authorization


Authentication schemes defined for the API:
<a id="ApiKeyAuth"></a>
### ApiKeyAuth

- **Type**: API key
- **API key parameter name**: api_key
- **Location**: URL query string

## Development

This Python package is automatically generated by [OpenAPI Generator](https://openapi-generator.tech).
To regenerate the package with an updated API spec, run the following command (make sure to replace
`X.Y.Z` with the new version number!):

```shell
openapi-generator generate -i https://api.stadiamaps.com/openapi.yaml -g python-nextgen --strict-spec=true -o . -p disallowAdditionalPropertiesIfNotPresent=false -p packageName=stadiamaps -p packageUrl=https://docs.stadiamaps.com/ -p packageVersion=X.Y.Z
```

### Caveats

The current release (6.6.0) of the generator's `python` generator is broken, but `python-nextgen` works.
The next release is scheduled to rename `python-nextgen` to `python`.

The auto-generated code (as of generator 6.6.0) does not pass flake8, so we have disabled the checks.
