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