An async generator, to stream the request body with multipart/form-data type.

Example:

from httpout import run, request


async def main():
    async for part in request.files():
        part['data'] = part['data'][:15]  # just to avoid printing a large file
        print(part)


run(main())