blob: 6fa7873edddc1797a35666bae5234752f4366aef [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. _internet:
2
3******************************
4Internet Protocols and Support
5******************************
6
7.. index::
8 single: WWW
9 single: Internet
10 single: World Wide Web
11
12.. index:: module: socket
13
14The modules described in this chapter implement Internet protocols and support
15for related technology. They are all implemented in Python. Most of these
16modules require the presence of the system-dependent module :mod:`socket`, which
17is currently supported on most popular platforms. Here is an overview:
18
19
20.. toctree::
21
22 webbrowser.rst
23 cgi.rst
24 cgitb.rst
25 wsgiref.rst
Senthil Kumaranaca8fd72008-06-23 04:41:59 +000026 urllib.request.rst
27 urllib.parse.rst
28 urllib.error.rst
29 urllib.robotparser.rst
Georg Brandl24420152008-05-26 16:32:26 +000030 http.client.rst
Georg Brandl116aa622007-08-15 14:28:22 +000031 ftplib.rst
32 poplib.rst
33 imaplib.rst
34 nntplib.rst
35 smtplib.rst
36 smtpd.rst
37 telnetlib.rst
38 uuid.rst
Georg Brandl116aa622007-08-15 14:28:22 +000039 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