An async generator, to stream the request body.

Example:

from httpout import run, request


async def main():
    async for data in request.stream():
        print(len(data))


run(main())