blob: a676a6609698219987de7e2b80d715ab0143867c [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
Senthil Kumaranaca8fd72008-06-23 04:41:59 +000027 urllib.request.rst
28 urllib.parse.rst
29 urllib.error.rst
30 urllib.robotparser.rst
Georg Brandl24420152008-05-26 16:32:26 +000031 http.client.rst
Georg Brandl116aa622007-08-15 14:28:22 +000032 ftplib.rst
33 poplib.rst
34 imaplib.rst
35 nntplib.rst
36 smtplib.rst
37 smtpd.rst
38 telnetlib.rst
39 uuid.rst
Georg Brandl116aa622007-08-15 14:28:22 +000040 socketserver.rst
Georg Brandl24420152008-05-26 16:32:26 +000041 http.server.rst
42 http.cookies.rst
43 http.cookiejar.rst
Georg Brandl38eceaa2008-05-26 11:14:17 +000044 xmlrpc.client.rst
45 xmlrpc.server.rst