blob: 948a0b2ee6166e259bc4a6674026ee8ce950034c [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001
2.. _internet:
3
4******************************
5Internet Protocols and Support
6******************************
7
8.. index::
9 single: WWW
10 single: Internet
11 single: World Wide Web
12
13.. index:: module: socket
14
15The modules described in this chapter implement Internet protocols and support
16for related technology. They are all implemented in Python. Most of these
17modules require the presence of the system-dependent module :mod:`socket`, which
18is currently supported on most popular platforms. Here is an overview:
19
20
21.. toctree::
22
23 webbrowser.rst
24 cgi.rst
25 cgitb.rst
26 wsgiref.rst
27 urllib.rst
28 urllib2.rst
Georg Brandl24420152008-05-26 16:32:26 +000029 http.client.rst
Georg Brandl116aa622007-08-15 14:28:22 +000030 ftplib.rst
31 poplib.rst
32 imaplib.rst
33 nntplib.rst
34 smtplib.rst
35 smtpd.rst
36 telnetlib.rst
37 uuid.rst
38 urlparse.rst
39 socketserver.rst
Georg Brandl24420152008-05-26 16:32:26 +000040 http.server.rst
41 http.cookies.rst
42 http.cookiejar.rst
Georg Brandl38eceaa2008-05-26 11:14:17 +000043 xmlrpc.client.rst
44 xmlrpc.server.rst