python3-aiohttp-session

provides sessions for aiohttp.web
  https://github.com/aio-libs/aiohttp-session
  0
  no reviews



The library allows us to store user-specific data into a session object.

The session object has a dict-like interface (operations like session[key] = value, value = session[key] etc. are present).

Before processing the session in a web-handler, you have to register the session middleware in aiohttp.web.Application.