Open
Description
Describe the feature / enhancement and how it would improve things
Can you add support to streaming since that is really useful? Thanks!
Describe how your proposal will work, with code and/or pseudo-code
client = httpx.AsyncClient(timeout=timeout)
try:
async with client.stream(method='GET', url=full_api_endpoint, timeout=timeout) as response:
if response.status_code == 200:
async for line in response.aiter_lines():
yield json.loads(line)
Probably like how httpx handles it.