I am writing a web server using the python aiohttp library.
How do I set a cookie and then redirect the user to another page in one response?
It's possible to redirect the user with aiohttp.web.HTTPSeeOther
, but I can't find a way to attach cookies to it.