We can easily create a persistent session using:
s = requests.Session()
But how to achieve this using httpx library?
async with httpx.AsyncClient() as client:
response = await client.get(
URL,
params=params,
)
Something like this
Source https://www.python-httpx.org/advanced/