Will there be implementation of http3 in python standard library?

Since RFC 9114 has already been released, when can we expect it to be implemented in the standard python library?

Not any time soon, probably never. CurrentlyPython’s stdlib does not even have a HTTP/2 library and I know of no plans to include one. We like to keep Python’s standard library small and maintainable. Complex projects like HTTP/2 and HTTP/3 libraries are better developed by domain experts as PyPI packages.

Besides there are obstacles like The QUIC API OpenSSL will not provide | daniel.haxx.se .

5 Likes

Thank you for your quick reply. It does make sense.