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.
- onebusaway/__init__.py +3 -1
- onebusaway/_base_client.py +9 -9
- onebusaway/_client.py +8 -8
- onebusaway/_models.py +10 -4
- onebusaway/_qs.py +7 -7
- onebusaway/_types.py +18 -11
- onebusaway/_utils/_transform.py +2 -2
- onebusaway/_utils/_utils.py +4 -4
- onebusaway/_version.py +1 -1
- onebusaway/resources/agencies_with_coverage.py +3 -3
- onebusaway/resources/agency.py +3 -3
- onebusaway/resources/arrival_and_departure.py +17 -17
- onebusaway/resources/block.py +3 -3
- onebusaway/resources/config.py +3 -3
- onebusaway/resources/current_time.py +3 -3
- onebusaway/resources/report_problem_with_stop.py +13 -13
- onebusaway/resources/report_problem_with_trip.py +23 -23
- onebusaway/resources/route.py +3 -3
- onebusaway/resources/route_ids_for_agency.py +3 -3
- onebusaway/resources/routes_for_agency.py +3 -3
- onebusaway/resources/routes_for_location.py +11 -11
- onebusaway/resources/schedule_for_route.py +5 -5
- onebusaway/resources/schedule_for_stop.py +5 -5
- onebusaway/resources/search_for_route.py +5 -5
- onebusaway/resources/search_for_stop.py +5 -5
- onebusaway/resources/shape.py +3 -3
- onebusaway/resources/stop.py +3 -3
- onebusaway/resources/stop_ids_for_agency.py +3 -3
- onebusaway/resources/stops_for_agency.py +3 -3
- onebusaway/resources/stops_for_location.py +11 -11
- onebusaway/resources/stops_for_route.py +7 -7
- onebusaway/resources/trip.py +3 -3
- onebusaway/resources/trip_details.py +13 -13
- onebusaway/resources/trip_for_vehicle.py +11 -11
- onebusaway/resources/trips_for_location.py +9 -9
- onebusaway/resources/trips_for_route.py +9 -9
- onebusaway/resources/vehicles_for_agency.py +5 -5
- {onebusaway-1.17.0.dist-info → onebusaway-1.17.2.dist-info}/METADATA +1 -1
- {onebusaway-1.17.0.dist-info → onebusaway-1.17.2.dist-info}/RECORD +41 -41
- {onebusaway-1.17.0.dist-info → onebusaway-1.17.2.dist-info}/WHEEL +0 -0
- {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
|
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 |
|
49
|
-
include_status: bool |
|
50
|
-
include_trip: bool |
|
51
|
-
service_date: int |
|
52
|
-
time: int |
|
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 =
|
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 |
|
134
|
-
include_status: bool |
|
135
|
-
include_trip: bool |
|
136
|
-
service_date: int |
|
137
|
-
time: int |
|
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 =
|
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
|
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 |
|
49
|
-
include_status: bool |
|
50
|
-
include_trip: bool |
|
51
|
-
time: int |
|
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 =
|
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 |
|
130
|
-
include_status: bool |
|
131
|
-
include_trip: bool |
|
132
|
-
time: int |
|
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 =
|
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
|
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 |
|
52
|
-
include_trip: bool |
|
53
|
-
time: int |
|
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 =
|
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 |
|
141
|
-
include_trip: bool |
|
142
|
-
time: int |
|
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 =
|
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
|
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 |
|
49
|
-
include_status: bool |
|
50
|
-
time: int |
|
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 =
|
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 |
|
124
|
-
include_status: bool |
|
125
|
-
time: int |
|
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 =
|
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
|
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 |
|
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 =
|
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 |
|
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 =
|
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.
|
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=
|
2
|
-
onebusaway/_base_client.py,sha256=
|
3
|
-
onebusaway/_client.py,sha256=
|
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=
|
9
|
-
onebusaway/_qs.py,sha256=
|
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=
|
14
|
-
onebusaway/_version.py,sha256=
|
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=
|
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=
|
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=
|
31
|
-
onebusaway/resources/agency.py,sha256=
|
32
|
-
onebusaway/resources/arrival_and_departure.py,sha256=
|
33
|
-
onebusaway/resources/block.py,sha256=
|
34
|
-
onebusaway/resources/config.py,sha256=
|
35
|
-
onebusaway/resources/current_time.py,sha256=
|
36
|
-
onebusaway/resources/report_problem_with_stop.py,sha256=
|
37
|
-
onebusaway/resources/report_problem_with_trip.py,sha256=
|
38
|
-
onebusaway/resources/route.py,sha256=
|
39
|
-
onebusaway/resources/route_ids_for_agency.py,sha256=
|
40
|
-
onebusaway/resources/routes_for_agency.py,sha256=
|
41
|
-
onebusaway/resources/routes_for_location.py,sha256=
|
42
|
-
onebusaway/resources/schedule_for_route.py,sha256=
|
43
|
-
onebusaway/resources/schedule_for_stop.py,sha256=
|
44
|
-
onebusaway/resources/search_for_route.py,sha256=
|
45
|
-
onebusaway/resources/search_for_stop.py,sha256=
|
46
|
-
onebusaway/resources/shape.py,sha256=
|
47
|
-
onebusaway/resources/stop.py,sha256=
|
48
|
-
onebusaway/resources/stop_ids_for_agency.py,sha256=
|
49
|
-
onebusaway/resources/stops_for_agency.py,sha256=
|
50
|
-
onebusaway/resources/stops_for_location.py,sha256=
|
51
|
-
onebusaway/resources/stops_for_route.py,sha256
|
52
|
-
onebusaway/resources/trip.py,sha256=
|
53
|
-
onebusaway/resources/trip_details.py,sha256=
|
54
|
-
onebusaway/resources/trip_for_vehicle.py,sha256=
|
55
|
-
onebusaway/resources/trips_for_location.py,sha256=
|
56
|
-
onebusaway/resources/trips_for_route.py,sha256=
|
57
|
-
onebusaway/resources/vehicles_for_agency.py,sha256=
|
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.
|
110
|
-
onebusaway-1.17.
|
111
|
-
onebusaway-1.17.
|
112
|
-
onebusaway-1.17.
|
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,,
|
File without changes
|
File without changes
|