how to persist sessions in httpx python

3.3k Views Asked by At

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,
        )
2

There are 2 best solutions below

1
On BEST ANSWER

Something like this

with httpx.Client() as client:

    r = client.get('https://example.com')

Source https://www.python-httpx.org/advanced/

0
On

Just dont use the context manager.

client = httpx.AsyncClient()
response = await client.get(
    URL,
    params=params,
)

Or if you want to have the same cleanup functionality:

client = httpx.AsyncClient()
try:
    response = await client.get(
        URL,
        params=params,
    )
    # do other stuff
finally:
    await client.aclose()