-
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
Stainless Bot
committed
Jul 31, 2024
1 parent
48ff0f3
commit 1cba822
Showing
34 changed files
with
519 additions
and
72 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,3 +1,3 @@ | ||
{ | ||
".": "0.1.0-alpha.7" | ||
".": "0.1.0-alpha.10" | ||
} |
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: 16 | ||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-7a71bec90a568b0dbefc3d81206069d9759259460cffa0543b162f6835be1e9a.yml | ||
configured_endpoints: 17 | ||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-261df351536029839245955df4df7341de315fe2b1d1d6aeb063eaef62bcddc9.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import onebusaway | ||
|
||
|
||
def main_sync() -> None: | ||
client = onebusaway.OnebusawaySDK(api_key="TEST") | ||
stop_id = "1_75403" | ||
schedule_for_stop = client.schedule_for_stop.retrieve(stop_id) | ||
|
||
if schedule_for_stop.data and schedule_for_stop.data.entry: | ||
print(schedule_for_stop.data.entry) | ||
else: | ||
print("schedule data or entry is None.") | ||
|
||
|
||
if __name__ == "__main__": | ||
main_sync() |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
__title__ = "onebusaway" | ||
__version__ = "0.1.0-alpha.7" # x-release-please-version | ||
__version__ = "0.1.0-alpha.10" # x-release-please-version |
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,167 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
from __future__ import annotations | ||
|
||
from typing import Union | ||
from datetime import date | ||
|
||
import httpx | ||
|
||
from ..types import schedule_for_stop_retrieve_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.schedule_for_stop_retrieve_response import ScheduleForStopRetrieveResponse | ||
|
||
__all__ = ["ScheduleForStopResource", "AsyncScheduleForStopResource"] | ||
|
||
|
||
class ScheduleForStopResource(SyncAPIResource): | ||
@cached_property | ||
def with_raw_response(self) -> ScheduleForStopResourceWithRawResponse: | ||
return ScheduleForStopResourceWithRawResponse(self) | ||
|
||
@cached_property | ||
def with_streaming_response(self) -> ScheduleForStopResourceWithStreamingResponse: | ||
return ScheduleForStopResourceWithStreamingResponse(self) | ||
|
||
def retrieve( | ||
self, | ||
stop_id: str, | ||
*, | ||
date: Union[str, date] | 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, | ||
) -> ScheduleForStopRetrieveResponse: | ||
""" | ||
Get schedule for a specific stop | ||
Args: | ||
date: The date for which you want to request a schedule in the format YYYY-MM-DD | ||
(optional, defaults to the current date) | ||
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 stop_id: | ||
raise ValueError(f"Expected a non-empty value for `stop_id` but received {stop_id!r}") | ||
return self._get( | ||
f"/api/where/schedule-for-stop/{stop_id}.json", | ||
options=make_request_options( | ||
extra_headers=extra_headers, | ||
extra_query=extra_query, | ||
extra_body=extra_body, | ||
timeout=timeout, | ||
query=maybe_transform({"date": date}, schedule_for_stop_retrieve_params.ScheduleForStopRetrieveParams), | ||
), | ||
cast_to=ScheduleForStopRetrieveResponse, | ||
) | ||
|
||
|
||
class AsyncScheduleForStopResource(AsyncAPIResource): | ||
@cached_property | ||
def with_raw_response(self) -> AsyncScheduleForStopResourceWithRawResponse: | ||
return AsyncScheduleForStopResourceWithRawResponse(self) | ||
|
||
@cached_property | ||
def with_streaming_response(self) -> AsyncScheduleForStopResourceWithStreamingResponse: | ||
return AsyncScheduleForStopResourceWithStreamingResponse(self) | ||
|
||
async def retrieve( | ||
self, | ||
stop_id: str, | ||
*, | ||
date: Union[str, date] | 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, | ||
) -> ScheduleForStopRetrieveResponse: | ||
""" | ||
Get schedule for a specific stop | ||
Args: | ||
date: The date for which you want to request a schedule in the format YYYY-MM-DD | ||
(optional, defaults to the current date) | ||
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 stop_id: | ||
raise ValueError(f"Expected a non-empty value for `stop_id` but received {stop_id!r}") | ||
return await self._get( | ||
f"/api/where/schedule-for-stop/{stop_id}.json", | ||
options=make_request_options( | ||
extra_headers=extra_headers, | ||
extra_query=extra_query, | ||
extra_body=extra_body, | ||
timeout=timeout, | ||
query=await async_maybe_transform( | ||
{"date": date}, schedule_for_stop_retrieve_params.ScheduleForStopRetrieveParams | ||
), | ||
), | ||
cast_to=ScheduleForStopRetrieveResponse, | ||
) | ||
|
||
|
||
class ScheduleForStopResourceWithRawResponse: | ||
def __init__(self, schedule_for_stop: ScheduleForStopResource) -> None: | ||
self._schedule_for_stop = schedule_for_stop | ||
|
||
self.retrieve = to_raw_response_wrapper( | ||
schedule_for_stop.retrieve, | ||
) | ||
|
||
|
||
class AsyncScheduleForStopResourceWithRawResponse: | ||
def __init__(self, schedule_for_stop: AsyncScheduleForStopResource) -> None: | ||
self._schedule_for_stop = schedule_for_stop | ||
|
||
self.retrieve = async_to_raw_response_wrapper( | ||
schedule_for_stop.retrieve, | ||
) | ||
|
||
|
||
class ScheduleForStopResourceWithStreamingResponse: | ||
def __init__(self, schedule_for_stop: ScheduleForStopResource) -> None: | ||
self._schedule_for_stop = schedule_for_stop | ||
|
||
self.retrieve = to_streamed_response_wrapper( | ||
schedule_for_stop.retrieve, | ||
) | ||
|
||
|
||
class AsyncScheduleForStopResourceWithStreamingResponse: | ||
def __init__(self, schedule_for_stop: AsyncScheduleForStopResource) -> None: | ||
self._schedule_for_stop = schedule_for_stop | ||
|
||
self.retrieve = async_to_streamed_response_wrapper( | ||
schedule_for_stop.retrieve, | ||
) |
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
Oops, something went wrong.