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.
Files changed (311) hide show
  1. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/PKG-INFO +5 -1
  2. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/README.md +13 -22
  3. stadiamaps-2.1.0/pyproject.toml +71 -0
  4. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/setup.py +9 -8
  5. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/__init__.py +6 -24
  6. stadiamaps-2.1.0/stadiamaps/api/geocoding_api.py +2407 -0
  7. stadiamaps-2.1.0/stadiamaps/api/geospatial_api.py +613 -0
  8. stadiamaps-2.1.0/stadiamaps/api/routing_api.py +1977 -0
  9. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/api_client.py +275 -272
  10. stadiamaps-2.1.0/stadiamaps/api_response.py +21 -0
  11. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/configuration.py +13 -11
  12. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/exceptions.py +67 -30
  13. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/__init__.py +5 -23
  14. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/access.py +44 -26
  15. stadiamaps-2.1.0/stadiamaps/models/admin_region.py +107 -0
  16. stadiamaps-2.1.0/stadiamaps/models/administrative.py +107 -0
  17. stadiamaps-2.1.0/stadiamaps/models/auto_costing_options.py +154 -0
  18. stadiamaps-2.1.0/stadiamaps/models/base_costing_options.py +124 -0
  19. stadiamaps-2.1.0/stadiamaps/models/base_trace_request.py +152 -0
  20. stadiamaps-2.1.0/stadiamaps/models/bicycle_costing_options.py +148 -0
  21. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/bike_network.py +42 -24
  22. stadiamaps-2.1.0/stadiamaps/models/contour.py +105 -0
  23. stadiamaps-2.1.0/stadiamaps/models/coordinate.py +104 -0
  24. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/costing_model.py +10 -12
  25. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/costing_options.py +51 -33
  26. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/directions_options.py +45 -27
  27. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/distance_unit.py +8 -11
  28. stadiamaps-2.1.0/stadiamaps/models/edge_sign.py +107 -0
  29. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/edge_use.py +8 -11
  30. stadiamaps-2.1.0/stadiamaps/models/end_node.py +120 -0
  31. stadiamaps-2.1.0/stadiamaps/models/geo_attributes.py +109 -0
  32. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/geo_json_geometry.py +25 -25
  33. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/geo_json_geometry_base.py +45 -27
  34. stadiamaps-2.1.0/stadiamaps/models/geo_json_line_string.py +111 -0
  35. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/geo_json_line_string_all_of.py +1 -1
  36. stadiamaps-2.1.0/stadiamaps/models/geo_json_point.py +111 -0
  37. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/geo_json_point_all_of.py +1 -1
  38. stadiamaps-2.1.0/stadiamaps/models/geo_json_polygon.py +111 -0
  39. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/geo_json_polygon_all_of.py +1 -1
  40. stadiamaps-2.1.0/stadiamaps/models/geocoding_object.py +107 -0
  41. stadiamaps-2.1.0/stadiamaps/models/height_request.py +132 -0
  42. stadiamaps-2.1.0/stadiamaps/models/height_response.py +118 -0
  43. stadiamaps-2.1.0/stadiamaps/models/highway_classification.py +139 -0
  44. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/intersecting_edge.py +45 -27
  45. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/isochrone_costing_model.py +8 -11
  46. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/isochrone_feature.py +45 -27
  47. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/isochrone_properties.py +48 -30
  48. stadiamaps-2.1.0/stadiamaps/models/isochrone_request.py +139 -0
  49. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/isochrone_response.py +47 -29
  50. stadiamaps-2.1.0/stadiamaps/models/locate_detailed_edge.py +203 -0
  51. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/locate_edge.py +56 -39
  52. stadiamaps-2.1.0/stadiamaps/models/locate_edge_info.py +113 -0
  53. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/locate_node.py +50 -31
  54. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/locate_object.py +49 -31
  55. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/maneuver_sign.py +50 -32
  56. stadiamaps-2.1.0/stadiamaps/models/maneuver_sign_element.py +105 -0
  57. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/map_match_costing_model.py +8 -11
  58. stadiamaps-2.1.0/stadiamaps/models/map_match_request.py +166 -0
  59. stadiamaps-2.1.0/stadiamaps/models/map_match_route_response.py +119 -0
  60. stadiamaps-2.1.0/stadiamaps/models/map_match_trace_options.py +109 -0
  61. stadiamaps-2.1.0/stadiamaps/models/map_match_waypoint.py +118 -0
  62. stadiamaps-2.1.0/stadiamaps/models/matched_point.py +122 -0
  63. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/matrix_costing_model.py +9 -12
  64. stadiamaps-2.1.0/stadiamaps/models/matrix_distance.py +107 -0
  65. stadiamaps-2.1.0/stadiamaps/models/matrix_request.py +150 -0
  66. stadiamaps-2.1.0/stadiamaps/models/matrix_response.py +149 -0
  67. stadiamaps-2.1.0/stadiamaps/models/motor_scooter_costing_options.py +158 -0
  68. stadiamaps-2.1.0/stadiamaps/models/motorcycle_costing_options.py +156 -0
  69. stadiamaps-2.1.0/stadiamaps/models/nearest_roads_request.py +139 -0
  70. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/node_id.py +42 -24
  71. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/node_type.py +8 -11
  72. stadiamaps-2.1.0/stadiamaps/models/optimized_route_request.py +139 -0
  73. stadiamaps-2.1.0/stadiamaps/models/pedestrian_costing_options.py +132 -0
  74. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/pelias_geo_json_feature.py +50 -31
  75. stadiamaps-2.1.0/stadiamaps/models/pelias_geo_json_properties.py +160 -0
  76. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/pelias_geo_json_properties_addendum.py +43 -25
  77. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/pelias_geo_json_properties_addendum_osm.py +42 -24
  78. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/pelias_layer.py +8 -11
  79. stadiamaps-2.1.0/stadiamaps/models/pelias_response.py +118 -0
  80. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/pelias_source.py +8 -11
  81. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/restrictions.py +44 -26
  82. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/road_class.py +8 -11
  83. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/route_leg.py +48 -29
  84. stadiamaps-2.1.0/stadiamaps/models/route_maneuver.py +173 -0
  85. stadiamaps-2.1.0/stadiamaps/models/route_request.py +152 -0
  86. stadiamaps-2.1.0/stadiamaps/models/route_response.py +117 -0
  87. stadiamaps-2.1.0/stadiamaps/models/route_response_alternates_inner.py +105 -0
  88. stadiamaps-2.1.0/stadiamaps/models/route_summary.py +111 -0
  89. stadiamaps-2.1.0/stadiamaps/models/route_trip.py +135 -0
  90. stadiamaps-2.1.0/stadiamaps/models/routing_response_waypoint.py +118 -0
  91. stadiamaps-2.1.0/stadiamaps/models/routing_waypoint.py +150 -0
  92. stadiamaps-2.1.0/stadiamaps/models/routing_waypoint_all_of_search_filter.py +112 -0
  93. stadiamaps-2.1.0/stadiamaps/models/simple_routing_waypoint.py +116 -0
  94. stadiamaps-2.1.0/stadiamaps/models/speeds.py +119 -0
  95. stadiamaps-2.1.0/stadiamaps/models/trace_attribute_filter_options.py +112 -0
  96. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/trace_attribute_key.py +8 -11
  97. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/trace_attributes_base_response.py +51 -32
  98. stadiamaps-2.1.0/stadiamaps/models/trace_attributes_request.py +158 -0
  99. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/trace_attributes_request_all_of_filters.py +1 -1
  100. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/trace_attributes_response.py +54 -35
  101. stadiamaps-2.1.0/stadiamaps/models/trace_edge.py +266 -0
  102. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/travel_mode.py +8 -11
  103. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/traversability.py +8 -11
  104. stadiamaps-2.1.0/stadiamaps/models/truck_costing_options.py +162 -0
  105. stadiamaps-2.1.0/stadiamaps/models/tz_response.py +105 -0
  106. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/valhalla_languages.py +8 -11
  107. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/valhalla_long_units.py +8 -11
  108. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/warning.py +42 -24
  109. stadiamaps-2.1.0/stadiamaps/rest.py +256 -0
  110. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps.egg-info/PKG-INFO +5 -1
  111. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps.egg-info/SOURCES.txt +5 -0
  112. stadiamaps-2.1.0/stadiamaps.egg-info/requires.txt +4 -0
  113. stadiamaps-2.1.0/test/integration/__init__.py +0 -0
  114. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/integration/test_eu_endpoint.py +1 -1
  115. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/integration/test_gecoding.py +1 -1
  116. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/integration/test_routing.py +31 -7
  117. stadiamaps-2.1.0/test/test_route_response_alternates_inner.py +128 -0
  118. stadiamaps-2.1.0/test/test_route_trip.py +203 -0
  119. stadiamaps-1.0.7/pyproject.toml +0 -29
  120. stadiamaps-1.0.7/stadiamaps/api/geocoding_api.py +0 -1250
  121. stadiamaps-1.0.7/stadiamaps/api/geospatial_api.py +0 -351
  122. stadiamaps-1.0.7/stadiamaps/api/routing_api.py +0 -1085
  123. stadiamaps-1.0.7/stadiamaps/api_response.py +0 -25
  124. stadiamaps-1.0.7/stadiamaps/models/admin_region.py +0 -89
  125. stadiamaps-1.0.7/stadiamaps/models/administrative.py +0 -89
  126. stadiamaps-1.0.7/stadiamaps/models/auto_costing_options.py +0 -127
  127. stadiamaps-1.0.7/stadiamaps/models/base_costing_options.py +0 -99
  128. stadiamaps-1.0.7/stadiamaps/models/base_trace_request.py +0 -122
  129. stadiamaps-1.0.7/stadiamaps/models/bicycle_costing_options.py +0 -123
  130. stadiamaps-1.0.7/stadiamaps/models/contour.py +0 -87
  131. stadiamaps-1.0.7/stadiamaps/models/coordinate.py +0 -85
  132. stadiamaps-1.0.7/stadiamaps/models/edge_sign.py +0 -89
  133. stadiamaps-1.0.7/stadiamaps/models/end_node.py +0 -102
  134. stadiamaps-1.0.7/stadiamaps/models/geo_attributes.py +0 -91
  135. stadiamaps-1.0.7/stadiamaps/models/geo_json_line_string.py +0 -92
  136. stadiamaps-1.0.7/stadiamaps/models/geo_json_point.py +0 -92
  137. stadiamaps-1.0.7/stadiamaps/models/geo_json_polygon.py +0 -92
  138. stadiamaps-1.0.7/stadiamaps/models/geocoding_object.py +0 -89
  139. stadiamaps-1.0.7/stadiamaps/models/height_request.py +0 -111
  140. stadiamaps-1.0.7/stadiamaps/models/height_response.py +0 -99
  141. stadiamaps-1.0.7/stadiamaps/models/highway_classification.py +0 -121
  142. stadiamaps-1.0.7/stadiamaps/models/isochrone_request.py +0 -120
  143. stadiamaps-1.0.7/stadiamaps/models/locate_detailed_edge.py +0 -185
  144. stadiamaps-1.0.7/stadiamaps/models/locate_edge_info.py +0 -95
  145. stadiamaps-1.0.7/stadiamaps/models/maneuver_sign_element.py +0 -87
  146. stadiamaps-1.0.7/stadiamaps/models/map_match_request.py +0 -136
  147. stadiamaps-1.0.7/stadiamaps/models/map_match_route_response.py +0 -91
  148. stadiamaps-1.0.7/stadiamaps/models/map_match_trace_options.py +0 -91
  149. stadiamaps-1.0.7/stadiamaps/models/map_match_waypoint.py +0 -99
  150. stadiamaps-1.0.7/stadiamaps/models/matched_point.py +0 -104
  151. stadiamaps-1.0.7/stadiamaps/models/matrix_distance.py +0 -89
  152. stadiamaps-1.0.7/stadiamaps/models/matrix_request.py +0 -119
  153. stadiamaps-1.0.7/stadiamaps/models/matrix_response.py +0 -125
  154. stadiamaps-1.0.7/stadiamaps/models/motor_scooter_costing_options.py +0 -131
  155. stadiamaps-1.0.7/stadiamaps/models/motorcycle_costing_options.py +0 -129
  156. stadiamaps-1.0.7/stadiamaps/models/nearest_roads_request.py +0 -108
  157. stadiamaps-1.0.7/stadiamaps/models/optimized_route_request.py +0 -108
  158. stadiamaps-1.0.7/stadiamaps/models/pedestrian_costing_options.py +0 -113
  159. stadiamaps-1.0.7/stadiamaps/models/pelias_geo_json_properties.py +0 -142
  160. stadiamaps-1.0.7/stadiamaps/models/pelias_response.py +0 -99
  161. stadiamaps-1.0.7/stadiamaps/models/route_maneuver.py +0 -155
  162. stadiamaps-1.0.7/stadiamaps/models/route_request.py +0 -119
  163. stadiamaps-1.0.7/stadiamaps/models/route_response.py +0 -89
  164. stadiamaps-1.0.7/stadiamaps/models/route_summary.py +0 -93
  165. stadiamaps-1.0.7/stadiamaps/models/routing_response_waypoint.py +0 -99
  166. stadiamaps-1.0.7/stadiamaps/models/routing_waypoint.py +0 -131
  167. stadiamaps-1.0.7/stadiamaps/models/routing_waypoint_all_of_search_filter.py +0 -94
  168. stadiamaps-1.0.7/stadiamaps/models/simple_routing_waypoint.py +0 -97
  169. stadiamaps-1.0.7/stadiamaps/models/speeds.py +0 -101
  170. stadiamaps-1.0.7/stadiamaps/models/trace_attribute_filter_options.py +0 -93
  171. stadiamaps-1.0.7/stadiamaps/models/trace_attributes_request.py +0 -128
  172. stadiamaps-1.0.7/stadiamaps/models/trace_edge.py +0 -248
  173. stadiamaps-1.0.7/stadiamaps/models/truck_costing_options.py +0 -135
  174. stadiamaps-1.0.7/stadiamaps/models/tz_response.py +0 -87
  175. stadiamaps-1.0.7/stadiamaps/rest.py +0 -301
  176. stadiamaps-1.0.7/stadiamaps.egg-info/requires.txt +0 -4
  177. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/LICENSE.txt +0 -0
  178. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/setup.cfg +0 -0
  179. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/api/__init__.py +0 -0
  180. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/auto_costing_options_all_of.py +0 -0
  181. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/bicycle_costing_options_all_of.py +0 -0
  182. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/locate_node_all_of.py +0 -0
  183. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/map_match_request_all_of.py +0 -0
  184. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/map_match_route_response_all_of.py +0 -0
  185. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/map_match_waypoint_all_of.py +0 -0
  186. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/motor_scooter_costing_options_all_of.py +0 -0
  187. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/motorcycle_costing_options_all_of.py +0 -0
  188. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/pelias_response_geocoding.py +0 -0
  189. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/route_response_trip.py +0 -0
  190. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/routing_response_waypoint_all_of.py +0 -0
  191. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/routing_waypoint_all_of.py +0 -0
  192. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/simple_routing_waypoint_all_of.py +0 -0
  193. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/trace_attributes_request_all_of.py +0 -0
  194. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/trace_attributes_response_all_of.py +0 -0
  195. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps/models/truck_costing_options_all_of.py +0 -0
  196. /stadiamaps-1.0.7/test/integration/__init__.py → /stadiamaps-2.1.0/stadiamaps/py.typed +0 -0
  197. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps.egg-info/dependency_links.txt +0 -0
  198. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/stadiamaps.egg-info/top_level.txt +0 -0
  199. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/integration/test_geospatial.py +0 -0
  200. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_access.py +0 -0
  201. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_admin_region.py +0 -0
  202. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_administrative.py +0 -0
  203. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_auto_costing_options.py +0 -0
  204. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_auto_costing_options_all_of.py +0 -0
  205. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_base_costing_options.py +0 -0
  206. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_base_trace_request.py +0 -0
  207. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_bicycle_costing_options.py +0 -0
  208. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_bicycle_costing_options_all_of.py +0 -0
  209. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_bike_network.py +0 -0
  210. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_contour.py +0 -0
  211. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_coordinate.py +0 -0
  212. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_costing_model.py +0 -0
  213. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_costing_options.py +0 -0
  214. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_directions_options.py +0 -0
  215. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_distance_unit.py +0 -0
  216. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_edge_sign.py +0 -0
  217. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_edge_use.py +0 -0
  218. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_end_node.py +0 -0
  219. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geo_attributes.py +0 -0
  220. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geo_json_geometry.py +0 -0
  221. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geo_json_geometry_base.py +0 -0
  222. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geo_json_line_string.py +0 -0
  223. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geo_json_line_string_all_of.py +0 -0
  224. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geo_json_point.py +0 -0
  225. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geo_json_point_all_of.py +0 -0
  226. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geo_json_polygon.py +0 -0
  227. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geo_json_polygon_all_of.py +0 -0
  228. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geocoding_api.py +0 -0
  229. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geocoding_object.py +0 -0
  230. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_geospatial_api.py +0 -0
  231. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_height_request.py +0 -0
  232. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_height_response.py +0 -0
  233. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_highway_classification.py +0 -0
  234. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_intersecting_edge.py +0 -0
  235. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_isochrone_costing_model.py +0 -0
  236. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_isochrone_feature.py +0 -0
  237. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_isochrone_properties.py +0 -0
  238. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_isochrone_request.py +0 -0
  239. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_isochrone_response.py +0 -0
  240. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_locate_detailed_edge.py +0 -0
  241. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_locate_edge.py +0 -0
  242. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_locate_edge_info.py +0 -0
  243. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_locate_node.py +0 -0
  244. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_locate_node_all_of.py +0 -0
  245. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_locate_object.py +0 -0
  246. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_maneuver_sign.py +0 -0
  247. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_maneuver_sign_element.py +0 -0
  248. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_map_match_costing_model.py +0 -0
  249. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_map_match_request.py +0 -0
  250. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_map_match_request_all_of.py +0 -0
  251. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_map_match_route_response.py +0 -0
  252. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_map_match_route_response_all_of.py +0 -0
  253. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_map_match_trace_options.py +0 -0
  254. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_map_match_waypoint.py +0 -0
  255. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_map_match_waypoint_all_of.py +0 -0
  256. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_matched_point.py +0 -0
  257. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_matrix_costing_model.py +0 -0
  258. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_matrix_distance.py +0 -0
  259. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_matrix_request.py +0 -0
  260. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_matrix_response.py +0 -0
  261. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_motor_scooter_costing_options.py +0 -0
  262. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_motor_scooter_costing_options_all_of.py +0 -0
  263. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_motorcycle_costing_options.py +0 -0
  264. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_motorcycle_costing_options_all_of.py +0 -0
  265. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_nearest_roads_request.py +0 -0
  266. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_node_id.py +0 -0
  267. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_node_type.py +0 -0
  268. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_optimized_route_request.py +0 -0
  269. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_pedestrian_costing_options.py +0 -0
  270. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_pelias_geo_json_feature.py +0 -0
  271. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_pelias_geo_json_properties.py +0 -0
  272. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_pelias_geo_json_properties_addendum.py +0 -0
  273. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_pelias_geo_json_properties_addendum_osm.py +0 -0
  274. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_pelias_layer.py +0 -0
  275. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_pelias_response.py +0 -0
  276. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_pelias_response_geocoding.py +0 -0
  277. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_pelias_source.py +0 -0
  278. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_restrictions.py +0 -0
  279. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_road_class.py +0 -0
  280. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_route_leg.py +0 -0
  281. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_route_maneuver.py +0 -0
  282. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_route_request.py +0 -0
  283. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_route_response.py +0 -0
  284. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_route_response_trip.py +0 -0
  285. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_route_summary.py +0 -0
  286. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_routing_api.py +0 -0
  287. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_routing_response_waypoint.py +0 -0
  288. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_routing_response_waypoint_all_of.py +0 -0
  289. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_routing_waypoint.py +0 -0
  290. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_routing_waypoint_all_of.py +0 -0
  291. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_routing_waypoint_all_of_search_filter.py +0 -0
  292. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_simple_routing_waypoint.py +0 -0
  293. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_simple_routing_waypoint_all_of.py +0 -0
  294. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_speeds.py +0 -0
  295. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_trace_attribute_filter_options.py +0 -0
  296. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_trace_attribute_key.py +0 -0
  297. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_trace_attributes_base_response.py +0 -0
  298. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_trace_attributes_request.py +0 -0
  299. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_trace_attributes_request_all_of.py +0 -0
  300. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_trace_attributes_request_all_of_filters.py +0 -0
  301. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_trace_attributes_response.py +0 -0
  302. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_trace_attributes_response_all_of.py +0 -0
  303. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_trace_edge.py +0 -0
  304. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_travel_mode.py +0 -0
  305. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_traversability.py +0 -0
  306. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_truck_costing_options.py +0 -0
  307. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_truck_costing_options_all_of.py +0 -0
  308. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_tz_response.py +0 -0
  309. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_valhalla_languages.py +0 -0
  310. {stadiamaps-1.0.7 → stadiamaps-2.1.0}/test/test_valhalla_long_units.py +0 -0
  311. {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.7
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
- ```shell
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 a grid of start and end points.
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
- - [RouteResponseTrip](docs/RouteResponseTrip.md)
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. # noqa: E501
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: 5.0.6
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.7"
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 >= 1.10.5, < 2",
31
- "aenum"
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. # noqa: E501
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: 5.0.6
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.7"
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.route_response_trip import RouteResponseTrip
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