How to get the value from the html field in aiohttp?

  • one
    Can you clarify what poliya is? - danilshik
  • For example, an input element in the form: <input type = "text" name = "user" id = "user"? - bakha

1 answer 1

Example from documentation :

async def do_login(request): data = await request.post() username = data['user'] 
  • And here exactly space should be? await request - Andrey
  • one
    @Andrey you can follow the link and make sure of it. - Sergey Gornostaev