The modules described in this chapter implement Internet protocols and support
for related technology. They are all implemented in Python. Most of these
modules require the presence of the system-dependent module socket, which
is currently supported on most popular platforms. Here is an overview:
webbrowser — Convenient Web-browser controller
cgi — Common Gateway Interface supportcgitb — Traceback manager for CGI scriptswsgiref — WSGI Utilities and Reference Implementation
urllib — Open arbitrary resources by URL
urllib2 — extensible library for opening URLshttplib — HTTP protocol client
ftplib — FTP protocol client
poplib — POP3 protocol client
imaplib — IMAP4 protocol client
nntplib — NNTP protocol client
smtplib — SMTP protocol client
smtpd — SMTP Server
telnetlib — Telnet client
uuid — UUID objects according to RFC 4122
urlparse — Parse URLs into components
SocketServer — A framework for network servers
BaseHTTPServer — Basic HTTP server
SimpleHTTPServer — Simple HTTP request handlerCGIHTTPServer — CGI-capable HTTP request handlercookielib — Cookie handling for HTTP clients
Cookie — HTTP state management
xmlrpclib — XML-RPC client access
SimpleXMLRPCServer — Basic XML-RPC server
DocXMLRPCServer — Self-documenting XML-RPC server