Fuyukai / Kyoukai

[OLD] A fully async web framework for Python3.5+ using asyncio
https://mirai.veriny.tf
MIT License
298 stars 14 forks source link

Handle multiple values per header #17

Closed Fuyukai closed 7 years ago

Fuyukai commented 7 years ago

Some HTTP requests can have the same header repeated multiple times.

Currently, Kyoukai does not handle this properly. This can be resolved with the usage of a MultiDict or similar to store the environment, rather than a normal dict.