Module python_odpt.api.default.train_timetable_operations_get_train_timetables

Functions

async def asyncio(*,
client: AuthenticatedClient | Client,
aclconsumer_key: str,
id: Unset | str = <python_odpt.types.Unset object>,
owlsame_as: Unset | str = <python_odpt.types.Unset object>,
odpttrain_number: Unset | str = <python_odpt.types.Unset object>,
odptrailway: Unset | str = <python_odpt.types.Unset object>,
odptoperator: Unset | str = <python_odpt.types.Unset object>,
odpttrain_type: Unset | str = <python_odpt.types.Unset object>,
odpttrain: Unset | str = <python_odpt.types.Unset object>,
odptcalendar: Unset | str = <python_odpt.types.Unset object>) ‑> Any | List[TrainTimetable] | None
Expand source code
async def asyncio(
    *,
    client: Union[AuthenticatedClient, Client],
    aclconsumer_key: str,
    id: Union[Unset, str] = UNSET,
    owlsame_as: Union[Unset, str] = UNSET,
    odpttrain_number: Union[Unset, str] = UNSET,
    odptrailway: Union[Unset, str] = UNSET,
    odptoperator: Union[Unset, str] = UNSET,
    odpttrain_type: Union[Unset, str] = UNSET,
    odpttrain: Union[Unset, str] = UNSET,
    odptcalendar: Union[Unset, str] = UNSET,
) -> Optional[Union[Any, List["TrainTimetable"]]]:
    """列車時刻表を取得する

    Args:
        aclconsumer_key (str): アクセストークン
        id (Union[Unset, str]): 固有識別子
        owlsame_as (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odpttrain_number (Union[Unset, str]):
        odptrailway (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odptoperator (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odpttrain_type (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odpttrain (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odptcalendar (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式

    Raises:
        errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
        httpx.TimeoutException: If the request takes longer than Client.timeout.

    Returns:
        Union[Any, List['TrainTimetable']]
    """

    return (
        await asyncio_detailed(
            client=client,
            aclconsumer_key=aclconsumer_key,
            id=id,
            owlsame_as=owlsame_as,
            odpttrain_number=odpttrain_number,
            odptrailway=odptrailway,
            odptoperator=odptoperator,
            odpttrain_type=odpttrain_type,
            odpttrain=odpttrain,
            odptcalendar=odptcalendar,
        )
    ).parsed

列車時刻表を取得する

Args

aclconsumer_key : str
アクセストークン
id : Union[Unset, str]
固有識別子
owlsame_as : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odpttrain_number (Union[Unset, str]):
odptrailway : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odptoperator : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odpttrain_type : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odpttrain : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odptcalendar : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式

Raises

errors.UnexpectedStatus
If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
httpx.TimeoutException
If the request takes longer than Client.timeout.

Returns

Union[Any, List['TrainTimetable']]

async def asyncio_detailed(*,
client: AuthenticatedClient | Client,
aclconsumer_key: str,
id: Unset | str = <python_odpt.types.Unset object>,
owlsame_as: Unset | str = <python_odpt.types.Unset object>,
odpttrain_number: Unset | str = <python_odpt.types.Unset object>,
odptrailway: Unset | str = <python_odpt.types.Unset object>,
odptoperator: Unset | str = <python_odpt.types.Unset object>,
odpttrain_type: Unset | str = <python_odpt.types.Unset object>,
odpttrain: Unset | str = <python_odpt.types.Unset object>,
odptcalendar: Unset | str = <python_odpt.types.Unset object>) ‑> Response[Any | List[TrainTimetable]]
Expand source code
async def asyncio_detailed(
    *,
    client: Union[AuthenticatedClient, Client],
    aclconsumer_key: str,
    id: Union[Unset, str] = UNSET,
    owlsame_as: Union[Unset, str] = UNSET,
    odpttrain_number: Union[Unset, str] = UNSET,
    odptrailway: Union[Unset, str] = UNSET,
    odptoperator: Union[Unset, str] = UNSET,
    odpttrain_type: Union[Unset, str] = UNSET,
    odpttrain: Union[Unset, str] = UNSET,
    odptcalendar: Union[Unset, str] = UNSET,
) -> Response[Union[Any, List["TrainTimetable"]]]:
    """列車時刻表を取得する

    Args:
        aclconsumer_key (str): アクセストークン
        id (Union[Unset, str]): 固有識別子
        owlsame_as (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odpttrain_number (Union[Unset, str]):
        odptrailway (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odptoperator (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odpttrain_type (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odpttrain (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odptcalendar (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式

    Raises:
        errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
        httpx.TimeoutException: If the request takes longer than Client.timeout.

    Returns:
        Response[Union[Any, List['TrainTimetable']]]
    """

    kwargs = _get_kwargs(
        aclconsumer_key=aclconsumer_key,
        id=id,
        owlsame_as=owlsame_as,
        odpttrain_number=odpttrain_number,
        odptrailway=odptrailway,
        odptoperator=odptoperator,
        odpttrain_type=odpttrain_type,
        odpttrain=odpttrain,
        odptcalendar=odptcalendar,
    )

    response = await client.get_async_httpx_client().request(**kwargs)

    return _build_response(client=client, response=response)

列車時刻表を取得する

Args

aclconsumer_key : str
アクセストークン
id : Union[Unset, str]
固有識別子
owlsame_as : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odpttrain_number (Union[Unset, str]):
odptrailway : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odptoperator : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odpttrain_type : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odpttrain : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odptcalendar : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式

Raises

errors.UnexpectedStatus
If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
httpx.TimeoutException
If the request takes longer than Client.timeout.

Returns

Response[Union[Any, List['TrainTimetable']]]

def sync(*,
client: AuthenticatedClient | Client,
aclconsumer_key: str,
id: Unset | str = <python_odpt.types.Unset object>,
owlsame_as: Unset | str = <python_odpt.types.Unset object>,
odpttrain_number: Unset | str = <python_odpt.types.Unset object>,
odptrailway: Unset | str = <python_odpt.types.Unset object>,
odptoperator: Unset | str = <python_odpt.types.Unset object>,
odpttrain_type: Unset | str = <python_odpt.types.Unset object>,
odpttrain: Unset | str = <python_odpt.types.Unset object>,
odptcalendar: Unset | str = <python_odpt.types.Unset object>) ‑> Any | List[TrainTimetable] | None
Expand source code
def sync(
    *,
    client: Union[AuthenticatedClient, Client],
    aclconsumer_key: str,
    id: Union[Unset, str] = UNSET,
    owlsame_as: Union[Unset, str] = UNSET,
    odpttrain_number: Union[Unset, str] = UNSET,
    odptrailway: Union[Unset, str] = UNSET,
    odptoperator: Union[Unset, str] = UNSET,
    odpttrain_type: Union[Unset, str] = UNSET,
    odpttrain: Union[Unset, str] = UNSET,
    odptcalendar: Union[Unset, str] = UNSET,
) -> Optional[Union[Any, List["TrainTimetable"]]]:
    """列車時刻表を取得する

    Args:
        aclconsumer_key (str): アクセストークン
        id (Union[Unset, str]): 固有識別子
        owlsame_as (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odpttrain_number (Union[Unset, str]):
        odptrailway (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odptoperator (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odpttrain_type (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odpttrain (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odptcalendar (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式

    Raises:
        errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
        httpx.TimeoutException: If the request takes longer than Client.timeout.

    Returns:
        Union[Any, List['TrainTimetable']]
    """

    return sync_detailed(
        client=client,
        aclconsumer_key=aclconsumer_key,
        id=id,
        owlsame_as=owlsame_as,
        odpttrain_number=odpttrain_number,
        odptrailway=odptrailway,
        odptoperator=odptoperator,
        odpttrain_type=odpttrain_type,
        odpttrain=odpttrain,
        odptcalendar=odptcalendar,
    ).parsed

列車時刻表を取得する

Args

aclconsumer_key : str
アクセストークン
id : Union[Unset, str]
固有識別子
owlsame_as : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odpttrain_number (Union[Unset, str]):
odptrailway : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odptoperator : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odpttrain_type : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odpttrain : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odptcalendar : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式

Raises

errors.UnexpectedStatus
If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
httpx.TimeoutException
If the request takes longer than Client.timeout.

Returns

Union[Any, List['TrainTimetable']]

def sync_detailed(*,
client: AuthenticatedClient | Client,
aclconsumer_key: str,
id: Unset | str = <python_odpt.types.Unset object>,
owlsame_as: Unset | str = <python_odpt.types.Unset object>,
odpttrain_number: Unset | str = <python_odpt.types.Unset object>,
odptrailway: Unset | str = <python_odpt.types.Unset object>,
odptoperator: Unset | str = <python_odpt.types.Unset object>,
odpttrain_type: Unset | str = <python_odpt.types.Unset object>,
odpttrain: Unset | str = <python_odpt.types.Unset object>,
odptcalendar: Unset | str = <python_odpt.types.Unset object>) ‑> Response[Any | List[TrainTimetable]]
Expand source code
def sync_detailed(
    *,
    client: Union[AuthenticatedClient, Client],
    aclconsumer_key: str,
    id: Union[Unset, str] = UNSET,
    owlsame_as: Union[Unset, str] = UNSET,
    odpttrain_number: Union[Unset, str] = UNSET,
    odptrailway: Union[Unset, str] = UNSET,
    odptoperator: Union[Unset, str] = UNSET,
    odpttrain_type: Union[Unset, str] = UNSET,
    odpttrain: Union[Unset, str] = UNSET,
    odptcalendar: Union[Unset, str] = UNSET,
) -> Response[Union[Any, List["TrainTimetable"]]]:
    """列車時刻表を取得する

    Args:
        aclconsumer_key (str): アクセストークン
        id (Union[Unset, str]): 固有識別子
        owlsame_as (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odpttrain_number (Union[Unset, str]):
        odptrailway (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odptoperator (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odpttrain_type (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odpttrain (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式
        odptcalendar (Union[Unset, str]): 固有識別子の別名 多くが`odpt.hoge:fuga`形式

    Raises:
        errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
        httpx.TimeoutException: If the request takes longer than Client.timeout.

    Returns:
        Response[Union[Any, List['TrainTimetable']]]
    """

    kwargs = _get_kwargs(
        aclconsumer_key=aclconsumer_key,
        id=id,
        owlsame_as=owlsame_as,
        odpttrain_number=odpttrain_number,
        odptrailway=odptrailway,
        odptoperator=odptoperator,
        odpttrain_type=odpttrain_type,
        odpttrain=odpttrain,
        odptcalendar=odptcalendar,
    )

    response = client.get_httpx_client().request(
        **kwargs,
    )

    return _build_response(client=client, response=response)

列車時刻表を取得する

Args

aclconsumer_key : str
アクセストークン
id : Union[Unset, str]
固有識別子
owlsame_as : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odpttrain_number (Union[Unset, str]):
odptrailway : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odptoperator : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odpttrain_type : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odpttrain : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式
odptcalendar : Union[Unset, str]
固有識別子の別名 多くがodpt.hoge:fuga形式

Raises

errors.UnexpectedStatus
If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
httpx.TimeoutException
If the request takes longer than Client.timeout.

Returns

Response[Union[Any, List['TrainTimetable']]]