-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b68b84c
commit 23b3c89
Showing
14 changed files
with
584 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
configured_endpoints: 10 | ||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-c46722d0fcd86c37d5a1cfef8954810f0b2684fd5601c8e211d8e4ccd199f509.yml | ||
configured_endpoints: 11 | ||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-c1ea5e90257369e139272db8e69752724a4c2ba2a4fc1a2df99b1f744fedd05f.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,180 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
from __future__ import annotations | ||
|
||
import httpx | ||
|
||
from ..types import stops_for_route_list_params | ||
from .._types import NOT_GIVEN, Body, Query, Headers, NotGiven | ||
from .._utils import ( | ||
maybe_transform, | ||
async_maybe_transform, | ||
) | ||
from .._compat import cached_property | ||
from .._resource import SyncAPIResource, AsyncAPIResource | ||
from .._response import ( | ||
to_raw_response_wrapper, | ||
to_streamed_response_wrapper, | ||
async_to_raw_response_wrapper, | ||
async_to_streamed_response_wrapper, | ||
) | ||
from .._base_client import ( | ||
make_request_options, | ||
) | ||
from ..types.stops_for_route_list_response import StopsForRouteListResponse | ||
|
||
__all__ = ["StopsForRouteResource", "AsyncStopsForRouteResource"] | ||
|
||
|
||
class StopsForRouteResource(SyncAPIResource): | ||
@cached_property | ||
def with_raw_response(self) -> StopsForRouteResourceWithRawResponse: | ||
return StopsForRouteResourceWithRawResponse(self) | ||
|
||
@cached_property | ||
def with_streaming_response(self) -> StopsForRouteResourceWithStreamingResponse: | ||
return StopsForRouteResourceWithStreamingResponse(self) | ||
|
||
def list( | ||
self, | ||
route_id: str, | ||
*, | ||
include_polylines: bool | NotGiven = NOT_GIVEN, | ||
time: str | NotGiven = NOT_GIVEN, | ||
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs. | ||
# The extra values given here take precedence over values defined on the client or passed to this method. | ||
extra_headers: Headers | None = None, | ||
extra_query: Query | None = None, | ||
extra_body: Body | None = None, | ||
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN, | ||
) -> StopsForRouteListResponse: | ||
""" | ||
Get stops for a specific route | ||
Args: | ||
include_polylines: Include polyline elements in the response (default true) | ||
time: Specify service date (YYYY-MM-DD or epoch) (default today) | ||
extra_headers: Send extra headers | ||
extra_query: Add additional query parameters to the request | ||
extra_body: Add additional JSON properties to the request | ||
timeout: Override the client-level default timeout for this request, in seconds | ||
""" | ||
if not route_id: | ||
raise ValueError(f"Expected a non-empty value for `route_id` but received {route_id!r}") | ||
return self._get( | ||
f"/api/where/stops-for-route/routeID.json", | ||
options=make_request_options( | ||
extra_headers=extra_headers, | ||
extra_query=extra_query, | ||
extra_body=extra_body, | ||
timeout=timeout, | ||
query=maybe_transform( | ||
{ | ||
"include_polylines": include_polylines, | ||
"time": time, | ||
}, | ||
stops_for_route_list_params.StopsForRouteListParams, | ||
), | ||
), | ||
cast_to=StopsForRouteListResponse, | ||
) | ||
|
||
|
||
class AsyncStopsForRouteResource(AsyncAPIResource): | ||
@cached_property | ||
def with_raw_response(self) -> AsyncStopsForRouteResourceWithRawResponse: | ||
return AsyncStopsForRouteResourceWithRawResponse(self) | ||
|
||
@cached_property | ||
def with_streaming_response(self) -> AsyncStopsForRouteResourceWithStreamingResponse: | ||
return AsyncStopsForRouteResourceWithStreamingResponse(self) | ||
|
||
async def list( | ||
self, | ||
route_id: str, | ||
*, | ||
include_polylines: bool | NotGiven = NOT_GIVEN, | ||
time: str | NotGiven = NOT_GIVEN, | ||
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs. | ||
# The extra values given here take precedence over values defined on the client or passed to this method. | ||
extra_headers: Headers | None = None, | ||
extra_query: Query | None = None, | ||
extra_body: Body | None = None, | ||
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN, | ||
) -> StopsForRouteListResponse: | ||
""" | ||
Get stops for a specific route | ||
Args: | ||
include_polylines: Include polyline elements in the response (default true) | ||
time: Specify service date (YYYY-MM-DD or epoch) (default today) | ||
extra_headers: Send extra headers | ||
extra_query: Add additional query parameters to the request | ||
extra_body: Add additional JSON properties to the request | ||
timeout: Override the client-level default timeout for this request, in seconds | ||
""" | ||
if not route_id: | ||
raise ValueError(f"Expected a non-empty value for `route_id` but received {route_id!r}") | ||
return await self._get( | ||
f"/api/where/stops-for-route/routeID.json", | ||
options=make_request_options( | ||
extra_headers=extra_headers, | ||
extra_query=extra_query, | ||
extra_body=extra_body, | ||
timeout=timeout, | ||
query=await async_maybe_transform( | ||
{ | ||
"include_polylines": include_polylines, | ||
"time": time, | ||
}, | ||
stops_for_route_list_params.StopsForRouteListParams, | ||
), | ||
), | ||
cast_to=StopsForRouteListResponse, | ||
) | ||
|
||
|
||
class StopsForRouteResourceWithRawResponse: | ||
def __init__(self, stops_for_route: StopsForRouteResource) -> None: | ||
self._stops_for_route = stops_for_route | ||
|
||
self.list = to_raw_response_wrapper( | ||
stops_for_route.list, | ||
) | ||
|
||
|
||
class AsyncStopsForRouteResourceWithRawResponse: | ||
def __init__(self, stops_for_route: AsyncStopsForRouteResource) -> None: | ||
self._stops_for_route = stops_for_route | ||
|
||
self.list = async_to_raw_response_wrapper( | ||
stops_for_route.list, | ||
) | ||
|
||
|
||
class StopsForRouteResourceWithStreamingResponse: | ||
def __init__(self, stops_for_route: StopsForRouteResource) -> None: | ||
self._stops_for_route = stops_for_route | ||
|
||
self.list = to_streamed_response_wrapper( | ||
stops_for_route.list, | ||
) | ||
|
||
|
||
class AsyncStopsForRouteResourceWithStreamingResponse: | ||
def __init__(self, stops_for_route: AsyncStopsForRouteResource) -> None: | ||
self._stops_for_route = stops_for_route | ||
|
||
self.list = async_to_streamed_response_wrapper( | ||
stops_for_route.list, | ||
) |
Oops, something went wrong.