Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | |
| 2 | .. _internet: |
| 3 | |
| 4 | ****************************** |
| 5 | Internet Protocols and Support |
| 6 | ****************************** |
| 7 | |
| 8 | .. index:: |
| 9 | single: WWW |
| 10 | single: Internet |
| 11 | single: World Wide Web |
| 12 | |
| 13 | .. index:: module: socket |
| 14 | |
| 15 | The modules described in this chapter implement Internet protocols and support |
| 16 | for related technology. They are all implemented in Python. Most of these |
| 17 | modules require the presence of the system-dependent module :mod:`socket`, which |
| 18 | is 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 Kumaran | aca8fd7 | 2008-06-23 04:41:59 +0000 | [diff] [blame] | 27 | urllib.request.rst |
| 28 | urllib.parse.rst |
| 29 | urllib.error.rst |
| 30 | urllib.robotparser.rst |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 31 | http.client.rst |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 32 | ftplib.rst |
| 33 | poplib.rst |
| 34 | imaplib.rst |
| 35 | nntplib.rst |
| 36 | smtplib.rst |
| 37 | smtpd.rst |
| 38 | telnetlib.rst |
| 39 | uuid.rst |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 40 | socketserver.rst |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 41 | http.server.rst |
| 42 | http.cookies.rst |
| 43 | http.cookiejar.rst |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 44 | xmlrpc.client.rst |
| 45 | xmlrpc.server.rst |