stadiamaps 1.0.7__tar.gz → 2.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/PKG-INFO +5 -1
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/README.md +13 -22
- stadiamaps-2.1.0/pyproject.toml +71 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/setup.py +9 -8
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/__init__.py +6 -24
- stadiamaps-2.1.0/stadiamaps/api/geocoding_api.py +2407 -0
- stadiamaps-2.1.0/stadiamaps/api/geospatial_api.py +613 -0
- stadiamaps-2.1.0/stadiamaps/api/routing_api.py +1977 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/api_client.py +275 -272
- stadiamaps-2.1.0/stadiamaps/api_response.py +21 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/configuration.py +13 -11
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/exceptions.py +67 -30
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/__init__.py +5 -23
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/access.py +44 -26
- stadiamaps-2.1.0/stadiamaps/models/admin_region.py +107 -0
- stadiamaps-2.1.0/stadiamaps/models/administrative.py +107 -0
- stadiamaps-2.1.0/stadiamaps/models/auto_costing_options.py +154 -0
- stadiamaps-2.1.0/stadiamaps/models/base_costing_options.py +124 -0
- stadiamaps-2.1.0/stadiamaps/models/base_trace_request.py +152 -0
- stadiamaps-2.1.0/stadiamaps/models/bicycle_costing_options.py +148 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/bike_network.py +42 -24
- stadiamaps-2.1.0/stadiamaps/models/contour.py +105 -0
- stadiamaps-2.1.0/stadiamaps/models/coordinate.py +104 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/costing_model.py +10 -12
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/costing_options.py +51 -33
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/directions_options.py +45 -27
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/distance_unit.py +8 -11
- stadiamaps-2.1.0/stadiamaps/models/edge_sign.py +107 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/edge_use.py +8 -11
- stadiamaps-2.1.0/stadiamaps/models/end_node.py +120 -0
- stadiamaps-2.1.0/stadiamaps/models/geo_attributes.py +109 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/geo_json_geometry.py +25 -25
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/geo_json_geometry_base.py +45 -27
- stadiamaps-2.1.0/stadiamaps/models/geo_json_line_string.py +111 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/geo_json_line_string_all_of.py +1 -1
- stadiamaps-2.1.0/stadiamaps/models/geo_json_point.py +111 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/geo_json_point_all_of.py +1 -1
- stadiamaps-2.1.0/stadiamaps/models/geo_json_polygon.py +111 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/geo_json_polygon_all_of.py +1 -1
- stadiamaps-2.1.0/stadiamaps/models/geocoding_object.py +107 -0
- stadiamaps-2.1.0/stadiamaps/models/height_request.py +132 -0
- stadiamaps-2.1.0/stadiamaps/models/height_response.py +118 -0
- stadiamaps-2.1.0/stadiamaps/models/highway_classification.py +139 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/intersecting_edge.py +45 -27
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/isochrone_costing_model.py +8 -11
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/isochrone_feature.py +45 -27
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/isochrone_properties.py +48 -30
- stadiamaps-2.1.0/stadiamaps/models/isochrone_request.py +139 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/isochrone_response.py +47 -29
- stadiamaps-2.1.0/stadiamaps/models/locate_detailed_edge.py +203 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/locate_edge.py +56 -39
- stadiamaps-2.1.0/stadiamaps/models/locate_edge_info.py +113 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/locate_node.py +50 -31
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/locate_object.py +49 -31
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/maneuver_sign.py +50 -32
- stadiamaps-2.1.0/stadiamaps/models/maneuver_sign_element.py +105 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/map_match_costing_model.py +8 -11
- stadiamaps-2.1.0/stadiamaps/models/map_match_request.py +166 -0
- stadiamaps-2.1.0/stadiamaps/models/map_match_route_response.py +119 -0
- stadiamaps-2.1.0/stadiamaps/models/map_match_trace_options.py +109 -0
- stadiamaps-2.1.0/stadiamaps/models/map_match_waypoint.py +118 -0
- stadiamaps-2.1.0/stadiamaps/models/matched_point.py +122 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/matrix_costing_model.py +9 -12
- stadiamaps-2.1.0/stadiamaps/models/matrix_distance.py +107 -0
- stadiamaps-2.1.0/stadiamaps/models/matrix_request.py +150 -0
- stadiamaps-2.1.0/stadiamaps/models/matrix_response.py +149 -0
- stadiamaps-2.1.0/stadiamaps/models/motor_scooter_costing_options.py +158 -0
- stadiamaps-2.1.0/stadiamaps/models/motorcycle_costing_options.py +156 -0
- stadiamaps-2.1.0/stadiamaps/models/nearest_roads_request.py +139 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/node_id.py +42 -24
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/node_type.py +8 -11
- stadiamaps-2.1.0/stadiamaps/models/optimized_route_request.py +139 -0
- stadiamaps-2.1.0/stadiamaps/models/pedestrian_costing_options.py +132 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/pelias_geo_json_feature.py +50 -31
- stadiamaps-2.1.0/stadiamaps/models/pelias_geo_json_properties.py +160 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/pelias_geo_json_properties_addendum.py +43 -25
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/pelias_geo_json_properties_addendum_osm.py +42 -24
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/pelias_layer.py +8 -11
- stadiamaps-2.1.0/stadiamaps/models/pelias_response.py +118 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/pelias_source.py +8 -11
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/restrictions.py +44 -26
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/road_class.py +8 -11
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/route_leg.py +48 -29
- stadiamaps-2.1.0/stadiamaps/models/route_maneuver.py +173 -0
- stadiamaps-2.1.0/stadiamaps/models/route_request.py +152 -0
- stadiamaps-2.1.0/stadiamaps/models/route_response.py +117 -0
- stadiamaps-2.1.0/stadiamaps/models/route_response_alternates_inner.py +105 -0
- stadiamaps-2.1.0/stadiamaps/models/route_summary.py +111 -0
- stadiamaps-2.1.0/stadiamaps/models/route_trip.py +135 -0
- stadiamaps-2.1.0/stadiamaps/models/routing_response_waypoint.py +118 -0
- stadiamaps-2.1.0/stadiamaps/models/routing_waypoint.py +150 -0
- stadiamaps-2.1.0/stadiamaps/models/routing_waypoint_all_of_search_filter.py +112 -0
- stadiamaps-2.1.0/stadiamaps/models/simple_routing_waypoint.py +116 -0
- stadiamaps-2.1.0/stadiamaps/models/speeds.py +119 -0
- stadiamaps-2.1.0/stadiamaps/models/trace_attribute_filter_options.py +112 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/trace_attribute_key.py +8 -11
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/trace_attributes_base_response.py +51 -32
- stadiamaps-2.1.0/stadiamaps/models/trace_attributes_request.py +158 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/trace_attributes_request_all_of_filters.py +1 -1
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/trace_attributes_response.py +54 -35
- stadiamaps-2.1.0/stadiamaps/models/trace_edge.py +266 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/travel_mode.py +8 -11
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/traversability.py +8 -11
- stadiamaps-2.1.0/stadiamaps/models/truck_costing_options.py +162 -0
- stadiamaps-2.1.0/stadiamaps/models/tz_response.py +105 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/valhalla_languages.py +8 -11
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/valhalla_long_units.py +8 -11
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/warning.py +42 -24
- stadiamaps-2.1.0/stadiamaps/rest.py +256 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps.egg-info/PKG-INFO +5 -1
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps.egg-info/SOURCES.txt +5 -0
- stadiamaps-2.1.0/stadiamaps.egg-info/requires.txt +4 -0
- stadiamaps-2.1.0/test/integration/__init__.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/integration/test_eu_endpoint.py +1 -1
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/integration/test_gecoding.py +1 -1
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/integration/test_routing.py +31 -7
- stadiamaps-2.1.0/test/test_route_response_alternates_inner.py +128 -0
- stadiamaps-2.1.0/test/test_route_trip.py +203 -0
- stadiamaps-1.0.7/pyproject.toml +0 -29
- stadiamaps-1.0.7/stadiamaps/api/geocoding_api.py +0 -1250
- stadiamaps-1.0.7/stadiamaps/api/geospatial_api.py +0 -351
- stadiamaps-1.0.7/stadiamaps/api/routing_api.py +0 -1085
- stadiamaps-1.0.7/stadiamaps/api_response.py +0 -25
- stadiamaps-1.0.7/stadiamaps/models/admin_region.py +0 -89
- stadiamaps-1.0.7/stadiamaps/models/administrative.py +0 -89
- stadiamaps-1.0.7/stadiamaps/models/auto_costing_options.py +0 -127
- stadiamaps-1.0.7/stadiamaps/models/base_costing_options.py +0 -99
- stadiamaps-1.0.7/stadiamaps/models/base_trace_request.py +0 -122
- stadiamaps-1.0.7/stadiamaps/models/bicycle_costing_options.py +0 -123
- stadiamaps-1.0.7/stadiamaps/models/contour.py +0 -87
- stadiamaps-1.0.7/stadiamaps/models/coordinate.py +0 -85
- stadiamaps-1.0.7/stadiamaps/models/edge_sign.py +0 -89
- stadiamaps-1.0.7/stadiamaps/models/end_node.py +0 -102
- stadiamaps-1.0.7/stadiamaps/models/geo_attributes.py +0 -91
- stadiamaps-1.0.7/stadiamaps/models/geo_json_line_string.py +0 -92
- stadiamaps-1.0.7/stadiamaps/models/geo_json_point.py +0 -92
- stadiamaps-1.0.7/stadiamaps/models/geo_json_polygon.py +0 -92
- stadiamaps-1.0.7/stadiamaps/models/geocoding_object.py +0 -89
- stadiamaps-1.0.7/stadiamaps/models/height_request.py +0 -111
- stadiamaps-1.0.7/stadiamaps/models/height_response.py +0 -99
- stadiamaps-1.0.7/stadiamaps/models/highway_classification.py +0 -121
- stadiamaps-1.0.7/stadiamaps/models/isochrone_request.py +0 -120
- stadiamaps-1.0.7/stadiamaps/models/locate_detailed_edge.py +0 -185
- stadiamaps-1.0.7/stadiamaps/models/locate_edge_info.py +0 -95
- stadiamaps-1.0.7/stadiamaps/models/maneuver_sign_element.py +0 -87
- stadiamaps-1.0.7/stadiamaps/models/map_match_request.py +0 -136
- stadiamaps-1.0.7/stadiamaps/models/map_match_route_response.py +0 -91
- stadiamaps-1.0.7/stadiamaps/models/map_match_trace_options.py +0 -91
- stadiamaps-1.0.7/stadiamaps/models/map_match_waypoint.py +0 -99
- stadiamaps-1.0.7/stadiamaps/models/matched_point.py +0 -104
- stadiamaps-1.0.7/stadiamaps/models/matrix_distance.py +0 -89
- stadiamaps-1.0.7/stadiamaps/models/matrix_request.py +0 -119
- stadiamaps-1.0.7/stadiamaps/models/matrix_response.py +0 -125
- stadiamaps-1.0.7/stadiamaps/models/motor_scooter_costing_options.py +0 -131
- stadiamaps-1.0.7/stadiamaps/models/motorcycle_costing_options.py +0 -129
- stadiamaps-1.0.7/stadiamaps/models/nearest_roads_request.py +0 -108
- stadiamaps-1.0.7/stadiamaps/models/optimized_route_request.py +0 -108
- stadiamaps-1.0.7/stadiamaps/models/pedestrian_costing_options.py +0 -113
- stadiamaps-1.0.7/stadiamaps/models/pelias_geo_json_properties.py +0 -142
- stadiamaps-1.0.7/stadiamaps/models/pelias_response.py +0 -99
- stadiamaps-1.0.7/stadiamaps/models/route_maneuver.py +0 -155
- stadiamaps-1.0.7/stadiamaps/models/route_request.py +0 -119
- stadiamaps-1.0.7/stadiamaps/models/route_response.py +0 -89
- stadiamaps-1.0.7/stadiamaps/models/route_summary.py +0 -93
- stadiamaps-1.0.7/stadiamaps/models/routing_response_waypoint.py +0 -99
- stadiamaps-1.0.7/stadiamaps/models/routing_waypoint.py +0 -131
- stadiamaps-1.0.7/stadiamaps/models/routing_waypoint_all_of_search_filter.py +0 -94
- stadiamaps-1.0.7/stadiamaps/models/simple_routing_waypoint.py +0 -97
- stadiamaps-1.0.7/stadiamaps/models/speeds.py +0 -101
- stadiamaps-1.0.7/stadiamaps/models/trace_attribute_filter_options.py +0 -93
- stadiamaps-1.0.7/stadiamaps/models/trace_attributes_request.py +0 -128
- stadiamaps-1.0.7/stadiamaps/models/trace_edge.py +0 -248
- stadiamaps-1.0.7/stadiamaps/models/truck_costing_options.py +0 -135
- stadiamaps-1.0.7/stadiamaps/models/tz_response.py +0 -87
- stadiamaps-1.0.7/stadiamaps/rest.py +0 -301
- stadiamaps-1.0.7/stadiamaps.egg-info/requires.txt +0 -4
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/LICENSE.txt +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/setup.cfg +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/api/__init__.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/auto_costing_options_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/bicycle_costing_options_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/locate_node_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/map_match_request_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/map_match_route_response_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/map_match_waypoint_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/motor_scooter_costing_options_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/motorcycle_costing_options_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/pelias_response_geocoding.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/route_response_trip.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/routing_response_waypoint_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/routing_waypoint_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/simple_routing_waypoint_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/trace_attributes_request_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/trace_attributes_response_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/truck_costing_options_all_of.py +0 -0
- /stadiamaps-1.0.7/test/integration/__init__.py → /stadiamaps-2.1.0/stadiamaps/py.typed +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps.egg-info/dependency_links.txt +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps.egg-info/top_level.txt +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/integration/test_geospatial.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_access.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_admin_region.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_administrative.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_auto_costing_options.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_auto_costing_options_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_base_costing_options.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_base_trace_request.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_bicycle_costing_options.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_bicycle_costing_options_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_bike_network.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_contour.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_coordinate.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_costing_model.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_costing_options.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_directions_options.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_distance_unit.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_edge_sign.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_edge_use.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_end_node.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geo_attributes.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geo_json_geometry.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geo_json_geometry_base.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geo_json_line_string.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geo_json_line_string_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geo_json_point.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geo_json_point_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geo_json_polygon.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geo_json_polygon_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geocoding_api.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geocoding_object.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geospatial_api.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_height_request.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_height_response.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_highway_classification.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_intersecting_edge.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_isochrone_costing_model.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_isochrone_feature.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_isochrone_properties.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_isochrone_request.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_isochrone_response.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_locate_detailed_edge.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_locate_edge.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_locate_edge_info.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_locate_node.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_locate_node_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_locate_object.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_maneuver_sign.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_maneuver_sign_element.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_map_match_costing_model.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_map_match_request.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_map_match_request_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_map_match_route_response.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_map_match_route_response_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_map_match_trace_options.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_map_match_waypoint.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_map_match_waypoint_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_matched_point.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_matrix_costing_model.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_matrix_distance.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_matrix_request.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_matrix_response.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_motor_scooter_costing_options.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_motor_scooter_costing_options_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_motorcycle_costing_options.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_motorcycle_costing_options_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_nearest_roads_request.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_node_id.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_node_type.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_optimized_route_request.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_pedestrian_costing_options.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_pelias_geo_json_feature.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_pelias_geo_json_properties.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_pelias_geo_json_properties_addendum.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_pelias_geo_json_properties_addendum_osm.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_pelias_layer.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_pelias_response.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_pelias_response_geocoding.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_pelias_source.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_restrictions.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_road_class.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_route_leg.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_route_maneuver.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_route_request.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_route_response.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_route_response_trip.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_route_summary.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_routing_api.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_routing_response_waypoint.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_routing_response_waypoint_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_routing_waypoint.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_routing_waypoint_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_routing_waypoint_all_of_search_filter.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_simple_routing_waypoint.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_simple_routing_waypoint_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_speeds.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_trace_attribute_filter_options.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_trace_attribute_key.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_trace_attributes_base_response.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_trace_attributes_request.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_trace_attributes_request_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_trace_attributes_request_all_of_filters.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_trace_attributes_response.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_trace_attributes_response_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_trace_edge.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_travel_mode.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_traversability.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_truck_costing_options.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_truck_costing_options_all_of.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_tz_response.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_valhalla_languages.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_valhalla_long_units.py +0 -0
- {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_warning.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: stadiamaps
|
3
|
-
Version: 1.0
|
3
|
+
Version: 2.1.0
|
4
4
|
Summary: Stadia Maps Geospatial APIs
|
5
5
|
Home-page: https://github.com/stadiamaps/stadiamaps-api-py
|
6
6
|
Author: Stadia Maps Support
|
@@ -8,6 +8,10 @@ Author-email: support@stadiamaps.com
|
|
8
8
|
Keywords: OpenAPI,OpenAPI-Generator,Stadia Maps Geospatial APIs
|
9
9
|
Description-Content-Type: text/markdown
|
10
10
|
License-File: LICENSE.txt
|
11
|
+
Requires-Dist: urllib3<2.1.0,>=1.25.3
|
12
|
+
Requires-Dist: python-dateutil
|
13
|
+
Requires-Dist: pydantic>=2
|
14
|
+
Requires-Dist: typing-extensions>=4.7.1
|
11
15
|
|
12
16
|
|
13
17
|
# Stadia Maps Python API Client
|
@@ -4,6 +4,10 @@ The Stadia Maps Geospatial APIs provide you with the data you need to build awes
|
|
4
4
|
|
5
5
|
For more information about the API, please visit [https://docs.stadiamaps.com](https://docs.stadiamaps.com)
|
6
6
|
|
7
|
+
## Requirements.
|
8
|
+
|
9
|
+
Python 3.7+
|
10
|
+
|
7
11
|
## Installation & Usage
|
8
12
|
### pip install
|
9
13
|
|
@@ -15,11 +19,16 @@ pip install stadiamaps
|
|
15
19
|
|
16
20
|
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
|
17
21
|
|
18
|
-
```
|
22
|
+
```sh
|
19
23
|
python setup.py install --user
|
20
24
|
```
|
21
25
|
(or `sudo python setup.py install` to install the package for all users)
|
22
26
|
|
27
|
+
Then import the package:
|
28
|
+
```python
|
29
|
+
import stadiamaps
|
30
|
+
```
|
31
|
+
|
23
32
|
### Tests
|
24
33
|
|
25
34
|
Execute `pytest` to run the tests. These are run automatically via CI.
|
@@ -77,7 +86,7 @@ Class | Method | HTTP request | Description
|
|
77
86
|
*RoutingApi* | [**nearest_roads**](docs/RoutingApi.md#nearest_roads) | **POST** /nearest_roads/v1 | Find the nearest roads to the set of input locations.
|
78
87
|
*RoutingApi* | [**optimized_route**](docs/RoutingApi.md#optimized_route) | **POST** /optimized_route/v1 | Calculate an optimized route between a known start and end point.
|
79
88
|
*RoutingApi* | [**route**](docs/RoutingApi.md#route) | **POST** /route/v1 | Get turn by turn routing instructions between two or more locations.
|
80
|
-
*RoutingApi* | [**time_distance_matrix**](docs/RoutingApi.md#time_distance_matrix) | **POST** /matrix/v1 | Calculate a time distance matrix for
|
89
|
+
*RoutingApi* | [**time_distance_matrix**](docs/RoutingApi.md#time_distance_matrix) | **POST** /matrix/v1 | Calculate a time distance matrix for use in an optimizer.
|
81
90
|
*RoutingApi* | [**trace_attributes**](docs/RoutingApi.md#trace_attributes) | **POST** /trace_attributes/v1 | Trace the attributes of roads visited on a route.
|
82
91
|
|
83
92
|
|
@@ -87,11 +96,9 @@ Class | Method | HTTP request | Description
|
|
87
96
|
- [AdminRegion](docs/AdminRegion.md)
|
88
97
|
- [Administrative](docs/Administrative.md)
|
89
98
|
- [AutoCostingOptions](docs/AutoCostingOptions.md)
|
90
|
-
- [AutoCostingOptionsAllOf](docs/AutoCostingOptionsAllOf.md)
|
91
99
|
- [BaseCostingOptions](docs/BaseCostingOptions.md)
|
92
100
|
- [BaseTraceRequest](docs/BaseTraceRequest.md)
|
93
101
|
- [BicycleCostingOptions](docs/BicycleCostingOptions.md)
|
94
|
-
- [BicycleCostingOptionsAllOf](docs/BicycleCostingOptionsAllOf.md)
|
95
102
|
- [BikeNetwork](docs/BikeNetwork.md)
|
96
103
|
- [Contour](docs/Contour.md)
|
97
104
|
- [Coordinate](docs/Coordinate.md)
|
@@ -106,11 +113,8 @@ Class | Method | HTTP request | Description
|
|
106
113
|
- [GeoJSONGeometry](docs/GeoJSONGeometry.md)
|
107
114
|
- [GeoJSONGeometryBase](docs/GeoJSONGeometryBase.md)
|
108
115
|
- [GeoJSONLineString](docs/GeoJSONLineString.md)
|
109
|
-
- [GeoJSONLineStringAllOf](docs/GeoJSONLineStringAllOf.md)
|
110
116
|
- [GeoJSONPoint](docs/GeoJSONPoint.md)
|
111
|
-
- [GeoJSONPointAllOf](docs/GeoJSONPointAllOf.md)
|
112
117
|
- [GeoJSONPolygon](docs/GeoJSONPolygon.md)
|
113
|
-
- [GeoJSONPolygonAllOf](docs/GeoJSONPolygonAllOf.md)
|
114
118
|
- [GeocodingObject](docs/GeocodingObject.md)
|
115
119
|
- [HeightRequest](docs/HeightRequest.md)
|
116
120
|
- [HeightResponse](docs/HeightResponse.md)
|
@@ -125,27 +129,21 @@ Class | Method | HTTP request | Description
|
|
125
129
|
- [LocateEdge](docs/LocateEdge.md)
|
126
130
|
- [LocateEdgeInfo](docs/LocateEdgeInfo.md)
|
127
131
|
- [LocateNode](docs/LocateNode.md)
|
128
|
-
- [LocateNodeAllOf](docs/LocateNodeAllOf.md)
|
129
132
|
- [LocateObject](docs/LocateObject.md)
|
130
133
|
- [ManeuverSign](docs/ManeuverSign.md)
|
131
134
|
- [ManeuverSignElement](docs/ManeuverSignElement.md)
|
132
135
|
- [MapMatchCostingModel](docs/MapMatchCostingModel.md)
|
133
136
|
- [MapMatchRequest](docs/MapMatchRequest.md)
|
134
|
-
- [MapMatchRequestAllOf](docs/MapMatchRequestAllOf.md)
|
135
137
|
- [MapMatchRouteResponse](docs/MapMatchRouteResponse.md)
|
136
|
-
- [MapMatchRouteResponseAllOf](docs/MapMatchRouteResponseAllOf.md)
|
137
138
|
- [MapMatchTraceOptions](docs/MapMatchTraceOptions.md)
|
138
139
|
- [MapMatchWaypoint](docs/MapMatchWaypoint.md)
|
139
|
-
- [MapMatchWaypointAllOf](docs/MapMatchWaypointAllOf.md)
|
140
140
|
- [MatchedPoint](docs/MatchedPoint.md)
|
141
141
|
- [MatrixCostingModel](docs/MatrixCostingModel.md)
|
142
142
|
- [MatrixDistance](docs/MatrixDistance.md)
|
143
143
|
- [MatrixRequest](docs/MatrixRequest.md)
|
144
144
|
- [MatrixResponse](docs/MatrixResponse.md)
|
145
145
|
- [MotorScooterCostingOptions](docs/MotorScooterCostingOptions.md)
|
146
|
-
- [MotorScooterCostingOptionsAllOf](docs/MotorScooterCostingOptionsAllOf.md)
|
147
146
|
- [MotorcycleCostingOptions](docs/MotorcycleCostingOptions.md)
|
148
|
-
- [MotorcycleCostingOptionsAllOf](docs/MotorcycleCostingOptionsAllOf.md)
|
149
147
|
- [NearestRoadsRequest](docs/NearestRoadsRequest.md)
|
150
148
|
- [NodeId](docs/NodeId.md)
|
151
149
|
- [NodeType](docs/NodeType.md)
|
@@ -157,7 +155,6 @@ Class | Method | HTTP request | Description
|
|
157
155
|
- [PeliasGeoJSONPropertiesAddendumOsm](docs/PeliasGeoJSONPropertiesAddendumOsm.md)
|
158
156
|
- [PeliasLayer](docs/PeliasLayer.md)
|
159
157
|
- [PeliasResponse](docs/PeliasResponse.md)
|
160
|
-
- [PeliasResponseGeocoding](docs/PeliasResponseGeocoding.md)
|
161
158
|
- [PeliasSource](docs/PeliasSource.md)
|
162
159
|
- [Restrictions](docs/Restrictions.md)
|
163
160
|
- [RoadClass](docs/RoadClass.md)
|
@@ -165,29 +162,23 @@ Class | Method | HTTP request | Description
|
|
165
162
|
- [RouteManeuver](docs/RouteManeuver.md)
|
166
163
|
- [RouteRequest](docs/RouteRequest.md)
|
167
164
|
- [RouteResponse](docs/RouteResponse.md)
|
168
|
-
- [
|
165
|
+
- [RouteResponseAlternatesInner](docs/RouteResponseAlternatesInner.md)
|
169
166
|
- [RouteSummary](docs/RouteSummary.md)
|
167
|
+
- [RouteTrip](docs/RouteTrip.md)
|
170
168
|
- [RoutingResponseWaypoint](docs/RoutingResponseWaypoint.md)
|
171
|
-
- [RoutingResponseWaypointAllOf](docs/RoutingResponseWaypointAllOf.md)
|
172
169
|
- [RoutingWaypoint](docs/RoutingWaypoint.md)
|
173
|
-
- [RoutingWaypointAllOf](docs/RoutingWaypointAllOf.md)
|
174
170
|
- [RoutingWaypointAllOfSearchFilter](docs/RoutingWaypointAllOfSearchFilter.md)
|
175
171
|
- [SimpleRoutingWaypoint](docs/SimpleRoutingWaypoint.md)
|
176
|
-
- [SimpleRoutingWaypointAllOf](docs/SimpleRoutingWaypointAllOf.md)
|
177
172
|
- [Speeds](docs/Speeds.md)
|
178
173
|
- [TraceAttributeFilterOptions](docs/TraceAttributeFilterOptions.md)
|
179
174
|
- [TraceAttributeKey](docs/TraceAttributeKey.md)
|
180
175
|
- [TraceAttributesBaseResponse](docs/TraceAttributesBaseResponse.md)
|
181
176
|
- [TraceAttributesRequest](docs/TraceAttributesRequest.md)
|
182
|
-
- [TraceAttributesRequestAllOf](docs/TraceAttributesRequestAllOf.md)
|
183
|
-
- [TraceAttributesRequestAllOfFilters](docs/TraceAttributesRequestAllOfFilters.md)
|
184
177
|
- [TraceAttributesResponse](docs/TraceAttributesResponse.md)
|
185
|
-
- [TraceAttributesResponseAllOf](docs/TraceAttributesResponseAllOf.md)
|
186
178
|
- [TraceEdge](docs/TraceEdge.md)
|
187
179
|
- [TravelMode](docs/TravelMode.md)
|
188
180
|
- [Traversability](docs/Traversability.md)
|
189
181
|
- [TruckCostingOptions](docs/TruckCostingOptions.md)
|
190
|
-
- [TruckCostingOptionsAllOf](docs/TruckCostingOptionsAllOf.md)
|
191
182
|
- [TzResponse](docs/TzResponse.md)
|
192
183
|
- [ValhallaLanguages](docs/ValhallaLanguages.md)
|
193
184
|
- [ValhallaLongUnits](docs/ValhallaLongUnits.md)
|
@@ -0,0 +1,71 @@
|
|
1
|
+
[tool.poetry]
|
2
|
+
name = "stadiamaps"
|
3
|
+
version = "2.1.0"
|
4
|
+
description = "Stadia Maps Geospatial APIs"
|
5
|
+
authors = ["Stadia Maps Support <support@stadiamaps.com>"]
|
6
|
+
license = "BSD-3-Clause"
|
7
|
+
readme = "README.md"
|
8
|
+
repository = "https://github.com/stadiamaps/stadiamaps-api-py"
|
9
|
+
keywords = ["OpenAPI", "OpenAPI-Generator", "Stadia Maps Geospatial APIs"]
|
10
|
+
include = ["stadiamaps/py.typed"]
|
11
|
+
|
12
|
+
[tool.poetry.dependencies]
|
13
|
+
python = "^3.7"
|
14
|
+
|
15
|
+
urllib3 = ">= 1.25.3"
|
16
|
+
python-dateutil = ">=2.8.2"
|
17
|
+
pydantic = ">=2"
|
18
|
+
typing-extensions = ">=4.7.1"
|
19
|
+
|
20
|
+
[tool.poetry.dev-dependencies]
|
21
|
+
pytest = ">=7.2.1"
|
22
|
+
tox = ">=3.9.0"
|
23
|
+
flake8 = ">=4.0.0"
|
24
|
+
types-python-dateutil = ">=2.8.19.14"
|
25
|
+
mypy = "1.4.1"
|
26
|
+
|
27
|
+
|
28
|
+
[build-system]
|
29
|
+
requires = ["setuptools"]
|
30
|
+
build-backend = "setuptools.build_meta"
|
31
|
+
|
32
|
+
[tool.pylint.'MESSAGES CONTROL']
|
33
|
+
extension-pkg-whitelist = "pydantic"
|
34
|
+
|
35
|
+
[tool.mypy]
|
36
|
+
files = [
|
37
|
+
"stadiamaps",
|
38
|
+
#"test", # auto-generated tests
|
39
|
+
"tests", # hand-written tests
|
40
|
+
]
|
41
|
+
# TODO: enable "strict" once all these individual checks are passing
|
42
|
+
# strict = true
|
43
|
+
|
44
|
+
# List from: https://mypy.readthedocs.io/en/stable/existing_code.html#introduce-stricter-options
|
45
|
+
warn_unused_configs = true
|
46
|
+
warn_redundant_casts = true
|
47
|
+
warn_unused_ignores = true
|
48
|
+
|
49
|
+
## Getting these passing should be easy
|
50
|
+
strict_equality = true
|
51
|
+
strict_concatenate = true
|
52
|
+
|
53
|
+
## Strongly recommend enabling this one as soon as you can
|
54
|
+
check_untyped_defs = true
|
55
|
+
|
56
|
+
## These shouldn't be too much additional work, but may be tricky to
|
57
|
+
## get passing if you use a lot of untyped libraries
|
58
|
+
disallow_subclassing_any = true
|
59
|
+
disallow_untyped_decorators = true
|
60
|
+
disallow_any_generics = true
|
61
|
+
|
62
|
+
### These next few are various gradations of forcing use of type annotations
|
63
|
+
#disallow_untyped_calls = true
|
64
|
+
#disallow_incomplete_defs = true
|
65
|
+
#disallow_untyped_defs = true
|
66
|
+
#
|
67
|
+
### This one isn't too hard to get passing, but return on investment is lower
|
68
|
+
#no_implicit_reexport = true
|
69
|
+
#
|
70
|
+
### This one can be tricky to get passing if you use a lot of untyped libraries
|
71
|
+
#warn_return_any = true
|
@@ -3,14 +3,14 @@
|
|
3
3
|
"""
|
4
4
|
Stadia Maps Geospatial APIs
|
5
5
|
|
6
|
-
The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
|
6
|
+
The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
|
7
7
|
|
8
|
-
The version of the OpenAPI document:
|
8
|
+
The version of the OpenAPI document: 6.1.0
|
9
9
|
Contact: support@stadiamaps.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
12
12
|
Do not edit the class manually.
|
13
|
-
"""
|
13
|
+
""" # noqa: E501
|
14
14
|
|
15
15
|
|
16
16
|
from setuptools import setup, find_packages # noqa: H301
|
@@ -22,13 +22,13 @@ from setuptools import setup, find_packages # noqa: H301
|
|
22
22
|
# prerequisite: setuptools
|
23
23
|
# http://pypi.python.org/pypi/setuptools
|
24
24
|
NAME = "stadiamaps"
|
25
|
-
VERSION = "1.0
|
25
|
+
VERSION = "2.1.0"
|
26
26
|
PYTHON_REQUIRES = ">=3.7"
|
27
27
|
REQUIRES = [
|
28
|
-
"urllib3 >= 1.25.3",
|
28
|
+
"urllib3 >= 1.25.3, < 2.1.0",
|
29
29
|
"python-dateutil",
|
30
|
-
"pydantic >=
|
31
|
-
"
|
30
|
+
"pydantic >= 2",
|
31
|
+
"typing-extensions >= 4.7.1",
|
32
32
|
]
|
33
33
|
|
34
34
|
setup(
|
@@ -104,5 +104,6 @@ with stadiamaps.ApiClient(configuration) as api_client:
|
|
104
104
|
except ApiException as e:
|
105
105
|
print("Exception when calling GeocodingApi->autocomplete: %s\n" % e)
|
106
106
|
```
|
107
|
-
"""
|
107
|
+
""", # noqa: E501
|
108
|
+
package_data={"stadiamaps": ["py.typed"]},
|
108
109
|
)
|
@@ -5,17 +5,17 @@
|
|
5
5
|
"""
|
6
6
|
Stadia Maps Geospatial APIs
|
7
7
|
|
8
|
-
The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
|
8
|
+
The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
|
9
9
|
|
10
|
-
The version of the OpenAPI document:
|
10
|
+
The version of the OpenAPI document: 6.1.0
|
11
11
|
Contact: support@stadiamaps.com
|
12
12
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
13
13
|
|
14
14
|
Do not edit the class manually.
|
15
|
-
"""
|
15
|
+
""" # noqa: E501
|
16
16
|
|
17
17
|
|
18
|
-
__version__ = "1.0
|
18
|
+
__version__ = "2.1.0"
|
19
19
|
|
20
20
|
# import apis into sdk package
|
21
21
|
from stadiamaps.api.geocoding_api import GeocodingApi
|
@@ -38,11 +38,9 @@ from stadiamaps.models.access import Access
|
|
38
38
|
from stadiamaps.models.admin_region import AdminRegion
|
39
39
|
from stadiamaps.models.administrative import Administrative
|
40
40
|
from stadiamaps.models.auto_costing_options import AutoCostingOptions
|
41
|
-
from stadiamaps.models.auto_costing_options_all_of import AutoCostingOptionsAllOf
|
42
41
|
from stadiamaps.models.base_costing_options import BaseCostingOptions
|
43
42
|
from stadiamaps.models.base_trace_request import BaseTraceRequest
|
44
43
|
from stadiamaps.models.bicycle_costing_options import BicycleCostingOptions
|
45
|
-
from stadiamaps.models.bicycle_costing_options_all_of import BicycleCostingOptionsAllOf
|
46
44
|
from stadiamaps.models.bike_network import BikeNetwork
|
47
45
|
from stadiamaps.models.contour import Contour
|
48
46
|
from stadiamaps.models.coordinate import Coordinate
|
@@ -57,11 +55,8 @@ from stadiamaps.models.geo_attributes import GeoAttributes
|
|
57
55
|
from stadiamaps.models.geo_json_geometry import GeoJSONGeometry
|
58
56
|
from stadiamaps.models.geo_json_geometry_base import GeoJSONGeometryBase
|
59
57
|
from stadiamaps.models.geo_json_line_string import GeoJSONLineString
|
60
|
-
from stadiamaps.models.geo_json_line_string_all_of import GeoJSONLineStringAllOf
|
61
58
|
from stadiamaps.models.geo_json_point import GeoJSONPoint
|
62
|
-
from stadiamaps.models.geo_json_point_all_of import GeoJSONPointAllOf
|
63
59
|
from stadiamaps.models.geo_json_polygon import GeoJSONPolygon
|
64
|
-
from stadiamaps.models.geo_json_polygon_all_of import GeoJSONPolygonAllOf
|
65
60
|
from stadiamaps.models.geocoding_object import GeocodingObject
|
66
61
|
from stadiamaps.models.height_request import HeightRequest
|
67
62
|
from stadiamaps.models.height_response import HeightResponse
|
@@ -76,27 +71,21 @@ from stadiamaps.models.locate_detailed_edge import LocateDetailedEdge
|
|
76
71
|
from stadiamaps.models.locate_edge import LocateEdge
|
77
72
|
from stadiamaps.models.locate_edge_info import LocateEdgeInfo
|
78
73
|
from stadiamaps.models.locate_node import LocateNode
|
79
|
-
from stadiamaps.models.locate_node_all_of import LocateNodeAllOf
|
80
74
|
from stadiamaps.models.locate_object import LocateObject
|
81
75
|
from stadiamaps.models.maneuver_sign import ManeuverSign
|
82
76
|
from stadiamaps.models.maneuver_sign_element import ManeuverSignElement
|
83
77
|
from stadiamaps.models.map_match_costing_model import MapMatchCostingModel
|
84
78
|
from stadiamaps.models.map_match_request import MapMatchRequest
|
85
|
-
from stadiamaps.models.map_match_request_all_of import MapMatchRequestAllOf
|
86
79
|
from stadiamaps.models.map_match_route_response import MapMatchRouteResponse
|
87
|
-
from stadiamaps.models.map_match_route_response_all_of import MapMatchRouteResponseAllOf
|
88
80
|
from stadiamaps.models.map_match_trace_options import MapMatchTraceOptions
|
89
81
|
from stadiamaps.models.map_match_waypoint import MapMatchWaypoint
|
90
|
-
from stadiamaps.models.map_match_waypoint_all_of import MapMatchWaypointAllOf
|
91
82
|
from stadiamaps.models.matched_point import MatchedPoint
|
92
83
|
from stadiamaps.models.matrix_costing_model import MatrixCostingModel
|
93
84
|
from stadiamaps.models.matrix_distance import MatrixDistance
|
94
85
|
from stadiamaps.models.matrix_request import MatrixRequest
|
95
86
|
from stadiamaps.models.matrix_response import MatrixResponse
|
96
87
|
from stadiamaps.models.motor_scooter_costing_options import MotorScooterCostingOptions
|
97
|
-
from stadiamaps.models.motor_scooter_costing_options_all_of import MotorScooterCostingOptionsAllOf
|
98
88
|
from stadiamaps.models.motorcycle_costing_options import MotorcycleCostingOptions
|
99
|
-
from stadiamaps.models.motorcycle_costing_options_all_of import MotorcycleCostingOptionsAllOf
|
100
89
|
from stadiamaps.models.nearest_roads_request import NearestRoadsRequest
|
101
90
|
from stadiamaps.models.node_id import NodeId
|
102
91
|
from stadiamaps.models.node_type import NodeType
|
@@ -108,7 +97,6 @@ from stadiamaps.models.pelias_geo_json_properties_addendum import PeliasGeoJSONP
|
|
108
97
|
from stadiamaps.models.pelias_geo_json_properties_addendum_osm import PeliasGeoJSONPropertiesAddendumOsm
|
109
98
|
from stadiamaps.models.pelias_layer import PeliasLayer
|
110
99
|
from stadiamaps.models.pelias_response import PeliasResponse
|
111
|
-
from stadiamaps.models.pelias_response_geocoding import PeliasResponseGeocoding
|
112
100
|
from stadiamaps.models.pelias_source import PeliasSource
|
113
101
|
from stadiamaps.models.restrictions import Restrictions
|
114
102
|
from stadiamaps.models.road_class import RoadClass
|
@@ -116,29 +104,23 @@ from stadiamaps.models.route_leg import RouteLeg
|
|
116
104
|
from stadiamaps.models.route_maneuver import RouteManeuver
|
117
105
|
from stadiamaps.models.route_request import RouteRequest
|
118
106
|
from stadiamaps.models.route_response import RouteResponse
|
119
|
-
from stadiamaps.models.
|
107
|
+
from stadiamaps.models.route_response_alternates_inner import RouteResponseAlternatesInner
|
120
108
|
from stadiamaps.models.route_summary import RouteSummary
|
109
|
+
from stadiamaps.models.route_trip import RouteTrip
|
121
110
|
from stadiamaps.models.routing_response_waypoint import RoutingResponseWaypoint
|
122
|
-
from stadiamaps.models.routing_response_waypoint_all_of import RoutingResponseWaypointAllOf
|
123
111
|
from stadiamaps.models.routing_waypoint import RoutingWaypoint
|
124
|
-
from stadiamaps.models.routing_waypoint_all_of import RoutingWaypointAllOf
|
125
112
|
from stadiamaps.models.routing_waypoint_all_of_search_filter import RoutingWaypointAllOfSearchFilter
|
126
113
|
from stadiamaps.models.simple_routing_waypoint import SimpleRoutingWaypoint
|
127
|
-
from stadiamaps.models.simple_routing_waypoint_all_of import SimpleRoutingWaypointAllOf
|
128
114
|
from stadiamaps.models.speeds import Speeds
|
129
115
|
from stadiamaps.models.trace_attribute_filter_options import TraceAttributeFilterOptions
|
130
116
|
from stadiamaps.models.trace_attribute_key import TraceAttributeKey
|
131
117
|
from stadiamaps.models.trace_attributes_base_response import TraceAttributesBaseResponse
|
132
118
|
from stadiamaps.models.trace_attributes_request import TraceAttributesRequest
|
133
|
-
from stadiamaps.models.trace_attributes_request_all_of import TraceAttributesRequestAllOf
|
134
|
-
from stadiamaps.models.trace_attributes_request_all_of_filters import TraceAttributesRequestAllOfFilters
|
135
119
|
from stadiamaps.models.trace_attributes_response import TraceAttributesResponse
|
136
|
-
from stadiamaps.models.trace_attributes_response_all_of import TraceAttributesResponseAllOf
|
137
120
|
from stadiamaps.models.trace_edge import TraceEdge
|
138
121
|
from stadiamaps.models.travel_mode import TravelMode
|
139
122
|
from stadiamaps.models.traversability import Traversability
|
140
123
|
from stadiamaps.models.truck_costing_options import TruckCostingOptions
|
141
|
-
from stadiamaps.models.truck_costing_options_all_of import TruckCostingOptionsAllOf
|
142
124
|
from stadiamaps.models.tz_response import TzResponse
|
143
125
|
from stadiamaps.models.valhalla_languages import ValhallaLanguages
|
144
126
|
from stadiamaps.models.valhalla_long_units import ValhallaLongUnits
|