
http.server — HTTP servers — Python 3.14.3 documentation
2 days ago · class http.server.HTTPServer(server_address, RequestHandlerClass) ¶ This class builds on the TCPServer class by storing the server address as instance variables named server_name …
http — HTTP modules — Python 3.14.3 documentation
http.server contains basic HTTP server classes based on socketserver http.cookies has utilities for implementing state management with cookies http.cookiejar provides persistence of cookies The http …
socketserver — A framework for network servers — Python 3.14.3 ...
1 day ago · You should set the flag explicitly if you would like threads to behave autonomously; the default is False, meaning that Python will not exit until all threads created by ThreadingMixIn have …
The Python Standard Library — Python 3.14.3 documentation
2 days ago · The library contains built-in modules (written in C) that provide access to system functionality such as file I/O that would otherwise be inaccessible to Python programmers, as well as …
WSGI Utilities and Reference Implementation - Python
Jan 31, 2026 · This module implements a simple HTTP server (based on http.server) that serves WSGI applications. Each server instance serves a single WSGI application on a given host and port.
Socket Programming HOWTO — Python 3.14.3 documentation
2 days ago · The sending code here is usable for almost any messaging scheme - in Python you send strings, and you can use len() to determine its length (even if it has embedded \0 characters).
ssl — TLS/SSL wrapper for socket objects — Python 3.14.3 …
Starting from Python 3.2.3, the ssl module disables certain weak ciphers by default, but you may want to further restrict the cipher choice. Be sure to read OpenSSL’s documentation about the cipher list format.
http.cookies — HTTP state management — Python 3.14.2 documentation
5 days ago · Source code: Lib/http/cookies.py The http.cookies module defines classes for abstracting the concept of cookies, an HTTP state management mechanism. It supports both simple string-only …
Streams — Python 3.14.3 documentation
2 days ago · Streams are high-level async/await-ready primitives to work with network connections. Streams allow sending and receiving data without using callbacks or low-level protocols and …
What’s new in Python 3.14
2 days ago · The http.server module now supports serving over HTTPS using the http.server.HTTPSServer class. This functionality is exposed by the command-line interface (python …