4.3. Requests

HTTP requests, after being received by the framework, become a Request object and are sent to the handler functions as a parameter called request.

project/apps/hello/handlers.py
async def hello_world(request):
    ...

Request object contains the following fields: