parsers_resolve_prql_modules¶
Resolve PRQL modules
Functions
- async pydelfini.delfini_core.api.general.parsers_resolve_prql_modules.asyncio(*, client, href=Unset)[source]¶
Resolve PRQL modules
Fetch the list of available PRQL modules, including their content if given the href path.
- Parameters:
client (AuthenticatedClient | Client)
- Raises:
errors.UnexpectedStatus – If the server returns a status code greater than or equal to 300.
httpx.TimeoutException – If the request takes longer than Client.timeout.
- Returns:
Union[ParsersResolvePrqlModulesResponse200]
- Return type:
- async pydelfini.delfini_core.api.general.parsers_resolve_prql_modules.asyncio_detailed(*, client, href=Unset)[source]¶
Resolve PRQL modules
Fetch the list of available PRQL modules, including their content if given the href path.
- Parameters:
client (AuthenticatedClient | Client)
- 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[ParsersResolvePrqlModulesResponse200, ServerError]]
- Return type:
Response[ParsersResolvePrqlModulesResponse200 | ServerError]
- pydelfini.delfini_core.api.general.parsers_resolve_prql_modules.sync(*, client, href=Unset)[source]¶
Resolve PRQL modules
Fetch the list of available PRQL modules, including their content if given the href path.
- Parameters:
client (AuthenticatedClient | Client)
- Raises:
errors.UnexpectedStatus – If the server returns a status code greater than or equal to 300.
httpx.TimeoutException – If the request takes longer than Client.timeout.
- Returns:
Union[ParsersResolvePrqlModulesResponse200]
- Return type:
- pydelfini.delfini_core.api.general.parsers_resolve_prql_modules.sync_detailed(*, client, href=Unset)[source]¶
Resolve PRQL modules
Fetch the list of available PRQL modules, including their content if given the href path.
- Parameters:
client (AuthenticatedClient | Client)
- 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[ParsersResolvePrqlModulesResponse200, ServerError]]
- Return type:
Response[ParsersResolvePrqlModulesResponse200 | ServerError]