@ -10,23 +10,44 @@ from ...types import Response
|
||||
|
||||
|
||||
def _get_kwargs(
|
||||
|
||||
|
||||
input_unit: UnitFrequency,
|
||||
|
||||
|
||||
|
||||
output_unit: UnitFrequency,
|
||||
|
||||
|
||||
|
||||
value: float,
|
||||
|
||||
|
||||
*,
|
||||
client: Client,
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
) -> Dict[str, Any]:
|
||||
url = "{}/unit/conversion/frequency/{input_unit}/{output_unit}".format(
|
||||
client.base_url,
|
||||
input_unit=input_unit,
|
||||
output_unit=output_unit,
|
||||
) # noqa: E501
|
||||
|
||||
url = "{}/unit/conversion/frequency/{input_unit}/{output_unit}".format(client.base_url, input_unit=input_unit,output_unit=output_unit,) # noqa: E501
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
if value is not None:
|
||||
if "?" in url:
|
||||
url = url + "&value=" + str(value)
|
||||
else:
|
||||
url = url + "?value=" + str(value)
|
||||
|
||||
|
||||
|
||||
|
||||
headers: Dict[str, Any] = client.get_headers()
|
||||
cookies: Dict[str, Any] = client.get_cookies()
|
||||
@ -36,27 +57,27 @@ def _get_kwargs(
|
||||
"headers": headers,
|
||||
"cookies": cookies,
|
||||
"timeout": client.get_timeout(),
|
||||
|
||||
}
|
||||
|
||||
|
||||
def _parse_response(
|
||||
*, response: httpx.Response
|
||||
) -> Optional[Union[UnitFrequencyConversion, Error]]:
|
||||
if response.status_code == 200:
|
||||
response_200 = UnitFrequencyConversion.from_dict(response.json())
|
||||
return response_200
|
||||
if response.status_code == 400:
|
||||
response_4XX = Error.from_dict(response.json())
|
||||
return response_4XX
|
||||
if response.status_code == 500:
|
||||
response_5XX = Error.from_dict(response.json())
|
||||
return response_5XX
|
||||
return Error.from_dict(response.json())
|
||||
def _parse_response(*, response: httpx.Response) -> Optional[Union[UnitFrequencyConversion, Error]] :
|
||||
if response.status_code == 200:
|
||||
response_200 = UnitFrequencyConversion.from_dict(response.json())
|
||||
return response_200
|
||||
if response.status_code == 400:
|
||||
response_4XX = Error.from_dict(response.json())
|
||||
return response_4XX
|
||||
if response.status_code == 500:
|
||||
response_5XX = Error.from_dict(response.json())
|
||||
return response_5XX
|
||||
return Error.from_dict(response.json())
|
||||
|
||||
|
||||
|
||||
def _build_response(
|
||||
*, response: httpx.Response
|
||||
) -> Response[Optional[Union[UnitFrequencyConversion, Error]]]:
|
||||
) -> Response[Optional[Union[UnitFrequencyConversion, Error]]]:
|
||||
return Response(
|
||||
status_code=response.status_code,
|
||||
content=response.content,
|
||||
@ -66,16 +87,37 @@ def _build_response(
|
||||
|
||||
|
||||
def sync_detailed(
|
||||
|
||||
|
||||
input_unit: UnitFrequency,
|
||||
|
||||
|
||||
|
||||
output_unit: UnitFrequency,
|
||||
|
||||
|
||||
|
||||
value: float,
|
||||
|
||||
|
||||
*,
|
||||
client: Client,
|
||||
) -> Response[Optional[Union[UnitFrequencyConversion, Error]]]:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
) -> Response[Optional[Union[UnitFrequencyConversion, Error]]]:
|
||||
kwargs = _get_kwargs(
|
||||
|
||||
input_unit=input_unit,
|
||||
|
||||
output_unit=output_unit,
|
||||
|
||||
value=value,
|
||||
|
||||
client=client,
|
||||
)
|
||||
|
||||
@ -88,33 +130,75 @@ def sync_detailed(
|
||||
|
||||
|
||||
def sync(
|
||||
|
||||
|
||||
input_unit: UnitFrequency,
|
||||
|
||||
|
||||
|
||||
output_unit: UnitFrequency,
|
||||
|
||||
|
||||
|
||||
value: float,
|
||||
|
||||
|
||||
*,
|
||||
client: Client,
|
||||
) -> Optional[Union[UnitFrequencyConversion, Error]]:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
) -> Optional[Union[UnitFrequencyConversion, Error]] :
|
||||
"""Convert a frequency unit value to another frequency unit value. This is a nice endpoint to use for helper functions.""" # noqa: E501
|
||||
|
||||
return sync_detailed(
|
||||
|
||||
input_unit=input_unit,
|
||||
|
||||
output_unit=output_unit,
|
||||
|
||||
value=value,
|
||||
|
||||
client=client,
|
||||
).parsed
|
||||
|
||||
|
||||
async def asyncio_detailed(
|
||||
|
||||
|
||||
input_unit: UnitFrequency,
|
||||
|
||||
|
||||
|
||||
output_unit: UnitFrequency,
|
||||
|
||||
|
||||
|
||||
value: float,
|
||||
|
||||
|
||||
*,
|
||||
client: Client,
|
||||
) -> Response[Optional[Union[UnitFrequencyConversion, Error]]]:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
) -> Response[Optional[Union[UnitFrequencyConversion, Error]]]:
|
||||
kwargs = _get_kwargs(
|
||||
|
||||
input_unit=input_unit,
|
||||
|
||||
output_unit=output_unit,
|
||||
|
||||
value=value,
|
||||
|
||||
client=client,
|
||||
)
|
||||
|
||||
@ -125,19 +209,40 @@ async def asyncio_detailed(
|
||||
|
||||
|
||||
async def asyncio(
|
||||
|
||||
|
||||
input_unit: UnitFrequency,
|
||||
|
||||
|
||||
|
||||
output_unit: UnitFrequency,
|
||||
|
||||
|
||||
|
||||
value: float,
|
||||
|
||||
|
||||
*,
|
||||
client: Client,
|
||||
) -> Optional[Union[UnitFrequencyConversion, Error]]:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
) -> Optional[Union[UnitFrequencyConversion, Error]] :
|
||||
"""Convert a frequency unit value to another frequency unit value. This is a nice endpoint to use for helper functions.""" # noqa: E501
|
||||
|
||||
return (
|
||||
await asyncio_detailed(
|
||||
|
||||
input_unit=input_unit,
|
||||
|
||||
output_unit=output_unit,
|
||||
|
||||
value=value,
|
||||
|
||||
client=client,
|
||||
)
|
||||
).parsed
|
||||
|
Reference in New Issue
Block a user