onebusaway 1.10.0__tar.gz → 1.11.1__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.
- onebusaway-1.11.1/.release-please-manifest.json +3 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/CHANGELOG.md +16 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/PKG-INFO +1 -1
- {onebusaway-1.10.0 → onebusaway-1.11.1}/SECURITY.md +2 -2
- {onebusaway-1.10.0 → onebusaway-1.11.1}/pyproject.toml +1 -1
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_client.py +6 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_version.py +1 -1
- onebusaway-1.10.0/.release-please-manifest.json +0 -3
- {onebusaway-1.10.0 → onebusaway-1.11.1}/.gitignore +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/CONTRIBUTING.md +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/LICENSE +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/README.md +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/api.md +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/bin/check-release-environment +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/bin/publish-pypi +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/.env.example +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/.keep +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/README.md +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/agencies_with_coverage.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/arrivals_and_departures_for_stop.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/block.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/config.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/current_time.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/helpers/__init__.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/helpers/load_env.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/routes_for_agency.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/routes_ids_for_agency.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/schedule_for_route.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/schedule_for_stop.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/search_for_route.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/search_for_stop.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/shape.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/stop.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/stop_for_route.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/stop_ids_for_agency.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/stops_for_location.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/trip.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/trip_details.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/examples/vehicles_for_agency.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/mypy.ini +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/noxfile.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/release-please-config.json +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/requirements-dev.lock +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/requirements.lock +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/__init__.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_base_client.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_compat.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_constants.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_exceptions.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_files.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_models.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_qs.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_resource.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_streaming.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_types.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_utils/__init__.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_utils/_logs.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_utils/_proxy.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_utils/_reflection.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_utils/_resources_proxy.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_utils/_streams.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_utils/_sync.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_utils/_transform.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_utils/_typing.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/_utils/_utils.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/lib/.keep +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/py.typed +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/__init__.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/agencies_with_coverage.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/agency.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/arrival_and_departure.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/block.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/config.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/current_time.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/report_problem_with_stop.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/report_problem_with_trip.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/route.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/route_ids_for_agency.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/routes_for_agency.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/routes_for_location.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/schedule_for_route.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/schedule_for_stop.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/search_for_route.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/search_for_stop.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/shape.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/stop.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/stop_ids_for_agency.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/stops_for_agency.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/stops_for_location.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/stops_for_route.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/trip.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/trip_details.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/trip_for_vehicle.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/trips_for_location.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/trips_for_route.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/vehicles_for_agency.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/__init__.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/agencies_with_coverage_list_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/agency_retrieve_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/arrival_and_departure_list_params.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/arrival_and_departure_list_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/arrival_and_departure_retrieve_params.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/arrival_and_departure_retrieve_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/block_retrieve_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/config_retrieve_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/current_time_retrieve_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/report_problem_with_stop_retrieve_params.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/report_problem_with_trip_retrieve_params.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/route_ids_for_agency_list_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/route_retrieve_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/routes_for_agency_list_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/routes_for_location_list_params.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/routes_for_location_list_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/schedule_for_route_retrieve_params.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/schedule_for_route_retrieve_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/schedule_for_stop_retrieve_params.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/schedule_for_stop_retrieve_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/search_for_route_list_params.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/search_for_route_list_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/search_for_route_retrieve_params.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/search_for_route_retrieve_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/search_for_stop_list_params.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/search_for_stop_list_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/search_for_stop_retrieve_params.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/search_for_stop_retrieve_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/shape_retrieve_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/shared/__init__.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/shared/references.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/shared/response_wrapper.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/stop_ids_for_agency_list_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/stop_retrieve_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/stops_for_agency_list_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/stops_for_location_list_params.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/stops_for_location_list_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/stops_for_route_list_params.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/stops_for_route_list_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/trip_detail_retrieve_params.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/trip_detail_retrieve_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/trip_for_vehicle_retrieve_params.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/trip_for_vehicle_retrieve_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/trip_retrieve_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/trips_for_location_list_params.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/trips_for_location_list_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/trips_for_route_list_params.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/trips_for_route_list_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/vehicles_for_agency_list_params.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/vehicles_for_agency_list_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/src/open_transit/lib/.keep +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/__init__.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/__init__.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_agencies_with_coverage.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_agency.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_arrival_and_departure.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_block.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_config.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_current_time.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_report_problem_with_stop.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_report_problem_with_trip.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_route.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_route_ids_for_agency.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_routes_for_agency.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_routes_for_location.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_schedule_for_route.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_schedule_for_stop.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_search_for_route.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_search_for_stop.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_shape.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_stop.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_stop_ids_for_agency.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_stops_for_agency.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_stops_for_location.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_stops_for_route.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_trip.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_trip_details.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_trip_for_vehicle.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_trips_for_location.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_trips_for_route.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_vehicles_for_agency.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/conftest.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/sample_file.txt +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/test_client.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/test_deepcopy.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/test_extract_files.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/test_files.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/test_models.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/test_qs.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/test_required_args.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/test_response.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/test_streaming.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/test_transform.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/test_utils/test_proxy.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/test_utils/test_typing.py +0 -0
- {onebusaway-1.10.0 → onebusaway-1.11.1}/tests/utils.py +0 -0
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.11.1 (2025-05-22)
|
4
|
+
|
5
|
+
Full Changelog: [v1.11.0...v1.11.1](https://github.com/OneBusAway/python-sdk/compare/v1.11.0...v1.11.1)
|
6
|
+
|
7
|
+
### Chores
|
8
|
+
|
9
|
+
* **docs:** grammar improvements ([052af65](https://github.com/OneBusAway/python-sdk/commit/052af65693c380484e4e920b4a831c52b4345daa))
|
10
|
+
|
11
|
+
## 1.11.0 (2025-05-20)
|
12
|
+
|
13
|
+
Full Changelog: [v1.10.0...v1.11.0](https://github.com/OneBusAway/python-sdk/compare/v1.10.0...v1.11.0)
|
14
|
+
|
15
|
+
### Features
|
16
|
+
|
17
|
+
* **api:** api update ([9981b15](https://github.com/OneBusAway/python-sdk/commit/9981b15b92023faad9812c2ad55f977673424c1b))
|
18
|
+
|
3
19
|
## 1.10.0 (2025-05-17)
|
4
20
|
|
5
21
|
Full Changelog: [v1.9.1...v1.10.0](https://github.com/OneBusAway/python-sdk/compare/v1.9.1...v1.10.0)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: onebusaway
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.11.1
|
4
4
|
Summary: The official Python library for the onebusaway-sdk API
|
5
5
|
Project-URL: Homepage, https://github.com/OneBusAway/python-sdk
|
6
6
|
Project-URL: Repository, https://github.com/OneBusAway/python-sdk
|
@@ -16,11 +16,11 @@ before making any information public.
|
|
16
16
|
## Reporting Non-SDK Related Security Issues
|
17
17
|
|
18
18
|
If you encounter security issues that are not directly related to SDKs but pertain to the services
|
19
|
-
or products provided by Onebusaway SDK please follow the respective company's security reporting guidelines.
|
19
|
+
or products provided by Onebusaway SDK, please follow the respective company's security reporting guidelines.
|
20
20
|
|
21
21
|
### Onebusaway SDK Terms and Policies
|
22
22
|
|
23
|
-
Please contact info@onebusaway.org for any questions or concerns regarding security of our services.
|
23
|
+
Please contact info@onebusaway.org for any questions or concerns regarding the security of our services.
|
24
24
|
|
25
25
|
---
|
26
26
|
|
@@ -267,6 +267,9 @@ class OnebusawaySDK(SyncAPIClient):
|
|
267
267
|
# client.with_options(timeout=10).foo.create(...)
|
268
268
|
with_options = copy
|
269
269
|
|
270
|
+
def _get_api_key_query_param(self) -> str | None:
|
271
|
+
return self.api_key
|
272
|
+
|
270
273
|
@override
|
271
274
|
def _make_status_error(
|
272
275
|
self,
|
@@ -497,6 +500,9 @@ class AsyncOnebusawaySDK(AsyncAPIClient):
|
|
497
500
|
# client.with_options(timeout=10).foo.create(...)
|
498
501
|
with_options = copy
|
499
502
|
|
503
|
+
def _get_api_key_query_param(self) -> str | None:
|
504
|
+
return self.api_key
|
505
|
+
|
500
506
|
@override
|
501
507
|
def _make_status_error(
|
502
508
|
self,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/report_problem_with_stop.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/resources/report_problem_with_trip.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/agencies_with_coverage_list_response.py
RENAMED
File without changes
|
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/arrival_and_departure_list_params.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/arrival_and_departure_list_response.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/current_time_retrieve_response.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/route_ids_for_agency_list_response.py
RENAMED
File without changes
|
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/routes_for_agency_list_response.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/routes_for_location_list_params.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/routes_for_location_list_response.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/schedule_for_route_retrieve_params.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/schedule_for_route_retrieve_response.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/schedule_for_stop_retrieve_params.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/schedule_for_stop_retrieve_response.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/search_for_route_list_params.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/search_for_route_list_response.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/search_for_route_retrieve_params.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/search_for_route_retrieve_response.py
RENAMED
File without changes
|
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/search_for_stop_list_response.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/search_for_stop_retrieve_params.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/search_for_stop_retrieve_response.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/stop_ids_for_agency_list_response.py
RENAMED
File without changes
|
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/stops_for_agency_list_response.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/stops_for_location_list_params.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/stops_for_location_list_response.py
RENAMED
File without changes
|
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/stops_for_route_list_response.py
RENAMED
File without changes
|
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/trip_detail_retrieve_response.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/trip_for_vehicle_retrieve_params.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/trip_for_vehicle_retrieve_response.py
RENAMED
File without changes
|
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/trips_for_location_list_params.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/trips_for_location_list_response.py
RENAMED
File without changes
|
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/trips_for_route_list_response.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/vehicles_for_agency_list_params.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/src/onebusaway/types/vehicles_for_agency_list_response.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_report_problem_with_stop.py
RENAMED
File without changes
|
{onebusaway-1.10.0 → onebusaway-1.11.1}/tests/api_resources/test_report_problem_with_trip.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|