Migrating from aioquic to HTTP/3 #5581
-
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
aiohttp does only supports HTTP/1.1. To support HTTP/2 and HTTP/3 somebody needs to step in and actually implement it. I have no idea how much effort it would take but since the current implementation is a C-extension, for the newer standards one would need to first find some C-implementation, write a wrapper using Cython, make an equivalent pure-Python implementation as a fallback, wire it all together and send as a PR. |
Beta Was this translation helpful? Give feedback.
-
Implementing HTTP/2 and HTTP/3 in aiohttp will be a good idea, because it will allow the development of current technologies, especially for aiohttp.web, since it is considered the fastest in python |
Beta Was this translation helpful? Give feedback.
aiohttp does only supports HTTP/1.1. To support HTTP/2 and HTTP/3 somebody needs to step in and actually implement it. I have no idea how much effort it would take but since the current implementation is a C-extension, for the newer standards one would need to first find some C-implementation, write a wrapper using Cython, make an equivalent pure-Python implementation as a fallback, wire it all together and send as a PR.