13 lines
397 B
Python
13 lines
397 B
Python
"""Specifies the parameter for the httpx download."""
|
|
|
|
from httpx import AsyncClient, Response, Timeout
|
|
|
|
|
|
async def get_calendar(client: AsyncClient, url: str) -> Response:
|
|
"""Make an HTTP GET request using Home Assistant's async HTTPX client with timeout."""
|
|
return await client.get(
|
|
url,
|
|
follow_redirects=True,
|
|
timeout=Timeout(5, read=30, write=5, pool=5),
|
|
)
|