
http.server — HTTP servers — Python 3.14.2 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 …
http — HTTP modules — Python 3.14.2 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 …
socketserver — A framework for network servers — Python 3.14.2 ...
2 days 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 …
cgi — Common Gateway Interface support — Python 3.11.14 …
Mar 11, 2014 · A CGI script is invoked by an HTTP server, usually to process user input submitted through an HTML <FORM> or <ISINDEX> element. Most often, CGI scripts live in the server’s …
WSGI Utilities and Reference Implementation - Python
Dec 13, 2025 · 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 …
http.client — HTTP protocol client — Python 3.14.2 documentation
2 days ago · An HTTPConnection instance represents one transaction with an HTTP server. It should be instantiated by passing it a host and optional port number. If no port number is …
http.cookies — HTTP state management — Python 3.14.2 …
2 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 …
ssl — TLS/SSL wrapper for socket objects — Python 3.14.2 …
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 …
Index — Python 3.14.2 documentation
Dec 7, 2025 · HTTPServer (class in http.server) HTTPSHandler (class in urllib.request) HTTPSServer (class in http.server) HTTPStatus (class in http) HV_GUID_BROADCAST (in …
Streams — Python 3.14.2 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 …