onebusaway 1.17.0__py3-none-any.whl → 1.17.2__py3-none-any.whl

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 (41) hide show
  1. onebusaway/__init__.py +3 -1
  2. onebusaway/_base_client.py +9 -9
  3. onebusaway/_client.py +8 -8
  4. onebusaway/_models.py +10 -4
  5. onebusaway/_qs.py +7 -7
  6. onebusaway/_types.py +18 -11
  7. onebusaway/_utils/_transform.py +2 -2
  8. onebusaway/_utils/_utils.py +4 -4
  9. onebusaway/_version.py +1 -1
  10. onebusaway/resources/agencies_with_coverage.py +3 -3
  11. onebusaway/resources/agency.py +3 -3
  12. onebusaway/resources/arrival_and_departure.py +17 -17
  13. onebusaway/resources/block.py +3 -3
  14. onebusaway/resources/config.py +3 -3
  15. onebusaway/resources/current_time.py +3 -3
  16. onebusaway/resources/report_problem_with_stop.py +13 -13
  17. onebusaway/resources/report_problem_with_trip.py +23 -23
  18. onebusaway/resources/route.py +3 -3
  19. onebusaway/resources/route_ids_for_agency.py +3 -3
  20. onebusaway/resources/routes_for_agency.py +3 -3
  21. onebusaway/resources/routes_for_location.py +11 -11
  22. onebusaway/resources/schedule_for_route.py +5 -5
  23. onebusaway/resources/schedule_for_stop.py +5 -5
  24. onebusaway/resources/search_for_route.py +5 -5
  25. onebusaway/resources/search_for_stop.py +5 -5
  26. onebusaway/resources/shape.py +3 -3
  27. onebusaway/resources/stop.py +3 -3
  28. onebusaway/resources/stop_ids_for_agency.py +3 -3
  29. onebusaway/resources/stops_for_agency.py +3 -3
  30. onebusaway/resources/stops_for_location.py +11 -11
  31. onebusaway/resources/stops_for_route.py +7 -7
  32. onebusaway/resources/trip.py +3 -3
  33. onebusaway/resources/trip_details.py +13 -13
  34. onebusaway/resources/trip_for_vehicle.py +11 -11
  35. onebusaway/resources/trips_for_location.py +9 -9
  36. onebusaway/resources/trips_for_route.py +9 -9
  37. onebusaway/resources/vehicles_for_agency.py +5 -5
  38. {onebusaway-1.17.0.dist-info → onebusaway-1.17.2.dist-info}/METADATA +1 -1
  39. {onebusaway-1.17.0.dist-info → onebusaway-1.17.2.dist-info}/RECORD +41 -41
  40. {onebusaway-1.17.0.dist-info → onebusaway-1.17.2.dist-info}/WHEEL +0 -0
  41. {onebusaway-1.17.0.dist-info → onebusaway-1.17.2.dist-info}/licenses/LICENSE +0 -0
@@ -5,7 +5,7 @@ from __future__ import annotations
5
5
  import httpx
6
6
 
7
7
  from ..types import trip_detail_retrieve_params
8
- from .._types import NOT_GIVEN, Body, Query, Headers, NotGiven
8
+ from .._types import Body, Omit, Query, Headers, NotGiven, omit, not_given
9
9
  from .._utils import maybe_transform, async_maybe_transform
10
10
  from .._compat import cached_property
11
11
  from .._resource import SyncAPIResource, AsyncAPIResource
@@ -45,17 +45,17 @@ class TripDetailsResource(SyncAPIResource):
45
45
  self,
46
46
  trip_id: str,
47
47
  *,
48
- include_schedule: bool | NotGiven = NOT_GIVEN,
49
- include_status: bool | NotGiven = NOT_GIVEN,
50
- include_trip: bool | NotGiven = NOT_GIVEN,
51
- service_date: int | NotGiven = NOT_GIVEN,
52
- time: int | NotGiven = NOT_GIVEN,
48
+ include_schedule: bool | Omit = omit,
49
+ include_status: bool | Omit = omit,
50
+ include_trip: bool | Omit = omit,
51
+ service_date: int | Omit = omit,
52
+ time: int | Omit = omit,
53
53
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
54
54
  # The extra values given here take precedence over values defined on the client or passed to this method.
55
55
  extra_headers: Headers | None = None,
56
56
  extra_query: Query | None = None,
57
57
  extra_body: Body | None = None,
58
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
58
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
59
59
  ) -> TripDetailRetrieveResponse:
60
60
  """
61
61
  Retrieve Trip Details
@@ -130,17 +130,17 @@ class AsyncTripDetailsResource(AsyncAPIResource):
130
130
  self,
131
131
  trip_id: str,
132
132
  *,
133
- include_schedule: bool | NotGiven = NOT_GIVEN,
134
- include_status: bool | NotGiven = NOT_GIVEN,
135
- include_trip: bool | NotGiven = NOT_GIVEN,
136
- service_date: int | NotGiven = NOT_GIVEN,
137
- time: int | NotGiven = NOT_GIVEN,
133
+ include_schedule: bool | Omit = omit,
134
+ include_status: bool | Omit = omit,
135
+ include_trip: bool | Omit = omit,
136
+ service_date: int | Omit = omit,
137
+ time: int | Omit = omit,
138
138
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
139
139
  # The extra values given here take precedence over values defined on the client or passed to this method.
140
140
  extra_headers: Headers | None = None,
141
141
  extra_query: Query | None = None,
142
142
  extra_body: Body | None = None,
143
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
143
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
144
144
  ) -> TripDetailRetrieveResponse:
145
145
  """
146
146
  Retrieve Trip Details
@@ -5,7 +5,7 @@ from __future__ import annotations
5
5
  import httpx
6
6
 
7
7
  from ..types import trip_for_vehicle_retrieve_params
8
- from .._types import NOT_GIVEN, Body, Query, Headers, NotGiven
8
+ from .._types import Body, Omit, Query, Headers, NotGiven, omit, not_given
9
9
  from .._utils import maybe_transform, async_maybe_transform
10
10
  from .._compat import cached_property
11
11
  from .._resource import SyncAPIResource, AsyncAPIResource
@@ -45,16 +45,16 @@ class TripForVehicleResource(SyncAPIResource):
45
45
  self,
46
46
  vehicle_id: str,
47
47
  *,
48
- include_schedule: bool | NotGiven = NOT_GIVEN,
49
- include_status: bool | NotGiven = NOT_GIVEN,
50
- include_trip: bool | NotGiven = NOT_GIVEN,
51
- time: int | NotGiven = NOT_GIVEN,
48
+ include_schedule: bool | Omit = omit,
49
+ include_status: bool | Omit = omit,
50
+ include_trip: bool | Omit = omit,
51
+ time: int | Omit = omit,
52
52
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
53
53
  # The extra values given here take precedence over values defined on the client or passed to this method.
54
54
  extra_headers: Headers | None = None,
55
55
  extra_query: Query | None = None,
56
56
  extra_body: Body | None = None,
57
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
57
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
58
58
  ) -> TripForVehicleRetrieveResponse:
59
59
  """
60
60
  Retrieve trip for a specific vehicle
@@ -126,16 +126,16 @@ class AsyncTripForVehicleResource(AsyncAPIResource):
126
126
  self,
127
127
  vehicle_id: str,
128
128
  *,
129
- include_schedule: bool | NotGiven = NOT_GIVEN,
130
- include_status: bool | NotGiven = NOT_GIVEN,
131
- include_trip: bool | NotGiven = NOT_GIVEN,
132
- time: int | NotGiven = NOT_GIVEN,
129
+ include_schedule: bool | Omit = omit,
130
+ include_status: bool | Omit = omit,
131
+ include_trip: bool | Omit = omit,
132
+ time: int | Omit = omit,
133
133
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
134
134
  # The extra values given here take precedence over values defined on the client or passed to this method.
135
135
  extra_headers: Headers | None = None,
136
136
  extra_query: Query | None = None,
137
137
  extra_body: Body | None = None,
138
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
138
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
139
139
  ) -> TripForVehicleRetrieveResponse:
140
140
  """
141
141
  Retrieve trip for a specific vehicle
@@ -5,7 +5,7 @@ from __future__ import annotations
5
5
  import httpx
6
6
 
7
7
  from ..types import trips_for_location_list_params
8
- from .._types import NOT_GIVEN, Body, Query, Headers, NotGiven
8
+ from .._types import Body, Omit, Query, Headers, NotGiven, omit, not_given
9
9
  from .._utils import maybe_transform, async_maybe_transform
10
10
  from .._compat import cached_property
11
11
  from .._resource import SyncAPIResource, AsyncAPIResource
@@ -48,15 +48,15 @@ class TripsForLocationResource(SyncAPIResource):
48
48
  lat_span: float,
49
49
  lon: float,
50
50
  lon_span: float,
51
- include_schedule: bool | NotGiven = NOT_GIVEN,
52
- include_trip: bool | NotGiven = NOT_GIVEN,
53
- time: int | NotGiven = NOT_GIVEN,
51
+ include_schedule: bool | Omit = omit,
52
+ include_trip: bool | Omit = omit,
53
+ time: int | Omit = omit,
54
54
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
55
55
  # The extra values given here take precedence over values defined on the client or passed to this method.
56
56
  extra_headers: Headers | None = None,
57
57
  extra_query: Query | None = None,
58
58
  extra_body: Body | None = None,
59
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
59
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
60
60
  ) -> TripsForLocationListResponse:
61
61
  """
62
62
  Retrieve trips for a given location
@@ -137,15 +137,15 @@ class AsyncTripsForLocationResource(AsyncAPIResource):
137
137
  lat_span: float,
138
138
  lon: float,
139
139
  lon_span: float,
140
- include_schedule: bool | NotGiven = NOT_GIVEN,
141
- include_trip: bool | NotGiven = NOT_GIVEN,
142
- time: int | NotGiven = NOT_GIVEN,
140
+ include_schedule: bool | Omit = omit,
141
+ include_trip: bool | Omit = omit,
142
+ time: int | Omit = omit,
143
143
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
144
144
  # The extra values given here take precedence over values defined on the client or passed to this method.
145
145
  extra_headers: Headers | None = None,
146
146
  extra_query: Query | None = None,
147
147
  extra_body: Body | None = None,
148
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
148
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
149
149
  ) -> TripsForLocationListResponse:
150
150
  """
151
151
  Retrieve trips for a given location
@@ -5,7 +5,7 @@ from __future__ import annotations
5
5
  import httpx
6
6
 
7
7
  from ..types import trips_for_route_list_params
8
- from .._types import NOT_GIVEN, Body, Query, Headers, NotGiven
8
+ from .._types import Body, Omit, Query, Headers, NotGiven, omit, not_given
9
9
  from .._utils import maybe_transform, async_maybe_transform
10
10
  from .._compat import cached_property
11
11
  from .._resource import SyncAPIResource, AsyncAPIResource
@@ -45,15 +45,15 @@ class TripsForRouteResource(SyncAPIResource):
45
45
  self,
46
46
  route_id: str,
47
47
  *,
48
- include_schedule: bool | NotGiven = NOT_GIVEN,
49
- include_status: bool | NotGiven = NOT_GIVEN,
50
- time: int | NotGiven = NOT_GIVEN,
48
+ include_schedule: bool | Omit = omit,
49
+ include_status: bool | Omit = omit,
50
+ time: int | Omit = omit,
51
51
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
52
52
  # The extra values given here take precedence over values defined on the client or passed to this method.
53
53
  extra_headers: Headers | None = None,
54
54
  extra_query: Query | None = None,
55
55
  extra_body: Body | None = None,
56
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
56
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
57
57
  ) -> TripsForRouteListResponse:
58
58
  """
59
59
  Search for active trips for a specific route.
@@ -120,15 +120,15 @@ class AsyncTripsForRouteResource(AsyncAPIResource):
120
120
  self,
121
121
  route_id: str,
122
122
  *,
123
- include_schedule: bool | NotGiven = NOT_GIVEN,
124
- include_status: bool | NotGiven = NOT_GIVEN,
125
- time: int | NotGiven = NOT_GIVEN,
123
+ include_schedule: bool | Omit = omit,
124
+ include_status: bool | Omit = omit,
125
+ time: int | Omit = omit,
126
126
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
127
127
  # The extra values given here take precedence over values defined on the client or passed to this method.
128
128
  extra_headers: Headers | None = None,
129
129
  extra_query: Query | None = None,
130
130
  extra_body: Body | None = None,
131
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
131
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
132
132
  ) -> TripsForRouteListResponse:
133
133
  """
134
134
  Search for active trips for a specific route.
@@ -5,7 +5,7 @@ from __future__ import annotations
5
5
  import httpx
6
6
 
7
7
  from ..types import vehicles_for_agency_list_params
8
- from .._types import NOT_GIVEN, Body, Query, Headers, NotGiven
8
+ from .._types import Body, Omit, Query, Headers, NotGiven, omit, not_given
9
9
  from .._utils import maybe_transform, async_maybe_transform
10
10
  from .._compat import cached_property
11
11
  from .._resource import SyncAPIResource, AsyncAPIResource
@@ -45,13 +45,13 @@ class VehiclesForAgencyResource(SyncAPIResource):
45
45
  self,
46
46
  agency_id: str,
47
47
  *,
48
- time: str | NotGiven = NOT_GIVEN,
48
+ time: str | Omit = omit,
49
49
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
50
50
  # The extra values given here take precedence over values defined on the client or passed to this method.
51
51
  extra_headers: Headers | None = None,
52
52
  extra_query: Query | None = None,
53
53
  extra_body: Body | None = None,
54
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
54
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
55
55
  ) -> VehiclesForAgencyListResponse:
56
56
  """
57
57
  Get vehicles for a specific agency
@@ -106,13 +106,13 @@ class AsyncVehiclesForAgencyResource(AsyncAPIResource):
106
106
  self,
107
107
  agency_id: str,
108
108
  *,
109
- time: str | NotGiven = NOT_GIVEN,
109
+ time: str | Omit = omit,
110
110
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
111
111
  # The extra values given here take precedence over values defined on the client or passed to this method.
112
112
  extra_headers: Headers | None = None,
113
113
  extra_query: Query | None = None,
114
114
  extra_body: Body | None = None,
115
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
115
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
116
116
  ) -> VehiclesForAgencyListResponse:
117
117
  """
118
118
  Get vehicles for a specific agency
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: onebusaway
3
- Version: 1.17.0
3
+ Version: 1.17.2
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
@@ -1,17 +1,17 @@
1
- onebusaway/__init__.py,sha256=MiX9GgRsWZXRUikjOoRRNaUVwprJtLjAeHdt93EFQ_A,2673
2
- onebusaway/_base_client.py,sha256=iTtQOND_oOE2FQeKxhHh3Ut0_VTLLobKfQy2DDWmY4M,67051
3
- onebusaway/_client.py,sha256=dGw5u-pBQRdxZLFdYVOATktwqgNSIWv3y2PyH_ziaKU,37100
1
+ onebusaway/__init__.py,sha256=geyljAxCN21ZvXZQa3n6SM_3oCAlpwlNX423sT_kreg,2719
2
+ onebusaway/_base_client.py,sha256=vRWDR-znYMfwfCZJqqIHWjtSHgCVrn6SEH9EFFFebPE,67051
3
+ onebusaway/_client.py,sha256=0v5ovUca9zlv8h8T1upeQiS01jGiLL4lOybgFyPoYBk,37085
4
4
  onebusaway/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
5
5
  onebusaway/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
6
  onebusaway/_exceptions.py,sha256=gTu5ksHyugfhJpvafbM_-qHkhFuUnvb5cDvGPqMPhfE,3234
7
7
  onebusaway/_files.py,sha256=KnEzGi_O756MvKyJ4fOCW_u3JhOeWPQ4RsmDvqihDQU,3545
8
- onebusaway/_models.py,sha256=c29x_mRccdxlGwdUPfSR5eJxGXe74Ea5Dje5igZTrKQ,30024
9
- onebusaway/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
8
+ onebusaway/_models.py,sha256=lKnskYPONAWDvWo8tmbbVk7HmG7UOsI0Nve0vSMmkRc,30452
9
+ onebusaway/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
10
10
  onebusaway/_resource.py,sha256=t-CkWpnm2UyE1uiv87GODlyRcQ_8h5eXmSVoE-1u35w,1142
11
11
  onebusaway/_response.py,sha256=x_FC3ZoD8JnfQRtZibna0wxoBtNzKcVictes8B7N6NQ,28848
12
12
  onebusaway/_streaming.py,sha256=PC8tKxRCeoJn8xKBBxXTlppGSI4TOMYVNfxrabFkRfc,10128
13
- onebusaway/_types.py,sha256=uOBvSyMmZxhz550R58Pj4K5NhkwvEojBBuGzz962sKE,7300
14
- onebusaway/_version.py,sha256=qgnedN4hsGEuKsHOPlbnpFZ9RQp5K9jud1o79O-H12o,163
13
+ onebusaway/_types.py,sha256=MnFntQ444_IqarxNBiaVtyyZ2BbiSgZYnGe7vbKPdjY,7240
14
+ onebusaway/_version.py,sha256=98-T7vmYXXACTgNG0IIuI9VgIuexhPpnbw0FYIImAfg,163
15
15
  onebusaway/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  onebusaway/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
17
17
  onebusaway/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
@@ -22,39 +22,39 @@ onebusaway/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnm
22
22
  onebusaway/_utils/_resources_proxy.py,sha256=sHxSgZ5yyoWhnf-IrEYgRKCJcxzQKHrcR5UNy2iZIa4,609
23
23
  onebusaway/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
24
24
  onebusaway/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
25
- onebusaway/_utils/_transform.py,sha256=i_U4R82RtQJtKKCriwFqmfcWjtwmmsiiF1AEXKQ_OPo,15957
25
+ onebusaway/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
26
26
  onebusaway/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
27
- onebusaway/_utils/_utils.py,sha256=D2QE7mVPNEJzaB50u8rvDQAUDS5jx7JoeFD7zdj-TeI,12231
27
+ onebusaway/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,12253
28
28
  onebusaway/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
29
29
  onebusaway/resources/__init__.py,sha256=atY4sLhX4z95BUHL6ErtMzhTYClyGZeHvfYjUM7WyBI,15294
30
- onebusaway/resources/agencies_with_coverage.py,sha256=L5hEbHEjhVCps-Bvvrrd1IvEr02rNljKnp5r6kTAEEs,5769
31
- onebusaway/resources/agency.py,sha256=qxHgfdZDz5m0aty0YaroDxO464MBJ662yAQDQ_s73dM,5997
32
- onebusaway/resources/arrival_and_departure.py,sha256=S5OGU2MOT27HMd5-ShrZbXeAQCffwijGZucVQYpA5EM,12902
33
- onebusaway/resources/block.py,sha256=ndtluDH_n4ebSVg4Z_r4m4g9q1C0NMtrddDYwaQnlPM,5859
34
- onebusaway/resources/config.py,sha256=Tswvj0rY1OeZng7cRgfH7NmumWqTvwfCGLUcekYH10s,4903
35
- onebusaway/resources/current_time.py,sha256=qS-6H2WBzOKaZGMfPEbIjP09Y0MGaF0eDswBtqUdhVU,5154
36
- onebusaway/resources/report_problem_with_stop.py,sha256=UUutoVjR0w8uXI-j7Z7AAZoh_xadrJWKkOrjP2Knw2s,9155
37
- onebusaway/resources/report_problem_with_trip.py,sha256=rMugUqpatdoX7ExvF-JGO_ZfqmODMFkYGGm9sdQvWCQ,11207
38
- onebusaway/resources/route.py,sha256=NeqDjlT4FzploiaSO3riZ1WRqq15G2Da0Db9bwiuZPw,5925
39
- onebusaway/resources/route_ids_for_agency.py,sha256=hX0EYiOi5QncERS6XaEOo9afOwAlJtFoN91h-Qv0rsk,6386
40
- onebusaway/resources/routes_for_agency.py,sha256=aWppPTvtcV2MpI6_kofVukI15ygtIBAjKRMx6Pwmt1E,6331
41
- onebusaway/resources/routes_for_location.py,sha256=M2tdu2TEiwTFXXIj1nFPf4Po11XEThKT5qGMnokkxek,7535
42
- onebusaway/resources/schedule_for_route.py,sha256=slzFB3uOWUQtF4t7-fQMlcsUptwlIv085Y9xd7rtfqQ,7416
43
- onebusaway/resources/schedule_for_stop.py,sha256=GYH5zaOUzeoE5EocDxeRvjWSWcV8mn1gsJh7vZEgLPA,7275
44
- onebusaway/resources/search_for_route.py,sha256=beKByL76Gf5ldlySuoO5tjn7Bm56QZ_UJSceWhVEcnw,7022
45
- onebusaway/resources/search_for_stop.py,sha256=rDK8SyjmR08OwuvR7K9yVlL8q8ltJ9eqPPvsYRkSI9E,6971
46
- onebusaway/resources/shape.py,sha256=ODy_COb6nUr1PiWhgogR29zs7FGVdF_74AP1YuW3w0Q,5913
47
- onebusaway/resources/stop.py,sha256=X8pE-gYe26AfPJkb-qSoUEb5DYiYmYkGLOenWG_9EBc,5791
48
- onebusaway/resources/stop_ids_for_agency.py,sha256=iEAgScujPd1g4pLn3Cd9zg6qRT8greZUb30FianVhAM,6340
49
- onebusaway/resources/stops_for_agency.py,sha256=7cYN7sjJVcmZnjPQPtDKqtsznR0XAJkQeY92p45V7g4,6227
50
- onebusaway/resources/stops_for_location.py,sha256=rOs5peHq8lP75ncfsqyGOK77GHfucWDc-8rGBIzk0w0,8074
51
- onebusaway/resources/stops_for_route.py,sha256=-YUSQuxf6khByDzxROCXDmT3cY2W5zZerRUhW7QDuz8,7467
52
- onebusaway/resources/trip.py,sha256=2DUFYcAhq6ioyDCKIrq1hQ6L3SBl_3Et-ea1pnazeSs,5791
53
- onebusaway/resources/trip_details.py,sha256=xvq8rzHCpdI9g6xmaD3cBUAkpbwfO7kaGkX1vEiK7cs,8834
54
- onebusaway/resources/trip_for_vehicle.py,sha256=HVmA_xkrbwhrklTefsKg7HLXM8DnQ3oRU5n_oKt2SHs,8772
55
- onebusaway/resources/trips_for_location.py,sha256=eAfENqQA6J0-gPMQWltw0P55xodqw4f3JSvBLXbqHuU,8846
56
- onebusaway/resources/trips_for_route.py,sha256=qcNPLf4HBckqxs3SvGm4LUm0DjIeJTMohfzWQppTcPw,8029
57
- onebusaway/resources/vehicles_for_agency.py,sha256=g6cXd9YyqJb5nozVrtR0jmbfTOz1agQ1L6SLJR2cAiI,7089
30
+ onebusaway/resources/agencies_with_coverage.py,sha256=GJnlg8dVtZ4JLWkqvDM0Qs-ktAsbTl9_EUDK3HNz8Q8,5769
31
+ onebusaway/resources/agency.py,sha256=Hg9dFqQJwyI9oomibQmkGEmM93MdPPQLLq0a3h_eCcY,5997
32
+ onebusaway/resources/arrival_and_departure.py,sha256=5xqd7NjeEF-4jIU0SxoYalT9_trga75oVP3LPy8zpuM,12806
33
+ onebusaway/resources/block.py,sha256=fQFIcSX_8nj_awwxmZhoievI8IOj8JYZVL9QGiT_Ng4,5859
34
+ onebusaway/resources/config.py,sha256=F117c53d0uRIdvikQFvYq1uyLwSbecsZKR50lVbCTXc,4903
35
+ onebusaway/resources/current_time.py,sha256=rFXcQe4h3nloIYowkHs76CCXO4WZveJiS_xiPJXLSJY,5154
36
+ onebusaway/resources/report_problem_with_stop.py,sha256=oZyMn0raIs_zp8Qf3--Bm2Sa0a8eL9oBDWOjwqw9gfo,9077
37
+ onebusaway/resources/report_problem_with_trip.py,sha256=InvDzUkIfQTY_zFECERJT-6VUdLjmq-ByRDf3YqwHf0,11039
38
+ onebusaway/resources/route.py,sha256=av8fllsvNxRfBdzThSz4vt4XNZ0Ctztsm2Dk1kE_GAQ,5925
39
+ onebusaway/resources/route_ids_for_agency.py,sha256=wK_XD3khPaXVijANzik1zamkWAekmHlQBP6JRqZxCgU,6386
40
+ onebusaway/resources/routes_for_agency.py,sha256=JjK8sN49RY5THC7kSHD0qiPXWwBj2ubSWkXD4zYDwMg,6331
41
+ onebusaway/resources/routes_for_location.py,sha256=0BaCouAkbVPWBZPMawz28DfJ-OLhfw65pilRVPTEnx4,7475
42
+ onebusaway/resources/schedule_for_route.py,sha256=KB1rF48K-2OxryC8h76bYWHOc-40W4L__zAaMc6R7HQ,7410
43
+ onebusaway/resources/schedule_for_stop.py,sha256=63OUdB-h8SH4_Nfqfj-0Nk-O0nDyWIN_umld_Jlfzbc,7269
44
+ onebusaway/resources/search_for_route.py,sha256=0lZ5yi3gMuZWOUC1vudOMn7hxSSD77R2t4yZgnXncy0,7016
45
+ onebusaway/resources/search_for_stop.py,sha256=qixvuKnsJiUsm76VT4LgOiKSUlNMEmAlfTOfEl9Mip0,6965
46
+ onebusaway/resources/shape.py,sha256=9S3_oo1FaVe7IUTsupzcdGJlbLCK4Wmh24P5yP9FGwA,5913
47
+ onebusaway/resources/stop.py,sha256=FnM66cik5qa6lxiLwDpDIbbPhNxthckBjaYSYgeq20c,5791
48
+ onebusaway/resources/stop_ids_for_agency.py,sha256=3uA22LIApeIonv1wO8wn8vVF3gYvmmF6S6wxM7vH_I8,6340
49
+ onebusaway/resources/stops_for_agency.py,sha256=nkycD2PvM7F8tqywbR74QsGMcA0AJJxgkS_gvzMjf7k,6227
50
+ onebusaway/resources/stops_for_location.py,sha256=czafOhJ3fV7Qmxzwqv4LdKjc4XtyMARuBUZSjPjh-Og,8014
51
+ onebusaway/resources/stops_for_route.py,sha256=k3S0EPGrwtd614WU7VRDOofW9W3HLMgUZjNoilPaT9Q,7443
52
+ onebusaway/resources/trip.py,sha256=rZLFPxB02ZTUWYXGRMNUetAnVj74iz-v4XZ7zNjocXY,5791
53
+ onebusaway/resources/trip_details.py,sha256=7ROf6kwuAXATiJzci9jbscvp8jhQT1imOM3rx6-TA_k,8756
54
+ onebusaway/resources/trip_for_vehicle.py,sha256=sESR26PcCwfhe74j1A9GwXEUgJ8p-e9v0Ce406VCtYQ,8712
55
+ onebusaway/resources/trips_for_location.py,sha256=ycUiWdCLn1fXipqkBU2jKqUunVRvePXJjohVO6NId2Q,8804
56
+ onebusaway/resources/trips_for_route.py,sha256=ZRgI3hVO_-TzI7bwrqs2wYD_52qWffKXPA5YlTGPhZc,7987
57
+ onebusaway/resources/vehicles_for_agency.py,sha256=INejiauiwkzD07YluPW2Uhik_Sa3fmdFUDZvm4-gnbw,7083
58
58
  onebusaway/types/__init__.py,sha256=VV1R8Thj7aO6zIcWQOOS4GFH8qDO2_oiMVQZMMkTxL8,4690
59
59
  onebusaway/types/agencies_with_coverage_list_response.py,sha256=tpkaKFlKf6onMY1bJ6pTOpcDO0VbPzfHKDZRwRFEWaY,978
60
60
  onebusaway/types/agency_retrieve_response.py,sha256=-6DXgNC1xnZQ6RDiX7GniGSW-or5eX7kZZCBMsHL3NE,1059
@@ -106,7 +106,7 @@ onebusaway/types/vehicles_for_agency_list_response.py,sha256=IUX2zHummRU2ChQsGYt
106
106
  onebusaway/types/shared/__init__.py,sha256=ui9M5r_ahasuyksUJVAHHYtdXvg3L_uxVgJY6LMdiPY,201
107
107
  onebusaway/types/shared/references.py,sha256=By29adWfDkZwH6_80NFuvP5NPKOcz9JUqUzaq-iAjQw,7317
108
108
  onebusaway/types/shared/response_wrapper.py,sha256=0i161M7PC8iPq2RzNt8DxZFlvSvdgD9xBcs0ugER0rY,331
109
- onebusaway-1.17.0.dist-info/METADATA,sha256=n5exQMzX2GGqM3mDL0I5u09SgWRWBTk02MOYOtFKlrc,13687
110
- onebusaway-1.17.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
111
- onebusaway-1.17.0.dist-info/licenses/LICENSE,sha256=czZkEz_7Kzvn7AGsFsY_RUYL132SXtB5Mcrjoq29Vfo,11344
112
- onebusaway-1.17.0.dist-info/RECORD,,
109
+ onebusaway-1.17.2.dist-info/METADATA,sha256=nkf9aexE16lAc6kmwmO0KefXq4_68ugxKWpmPLxEpwI,13687
110
+ onebusaway-1.17.2.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
111
+ onebusaway-1.17.2.dist-info/licenses/LICENSE,sha256=czZkEz_7Kzvn7AGsFsY_RUYL132SXtB5Mcrjoq29Vfo,11344
112
+ onebusaway-1.17.2.dist-info/RECORD,,