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 26 urllib.rst 27 urllib.request.rst 28 urllib.parse.rst 29 urllib.error.rst 30 urllib.robotparser.rst 31 http.rst 32 http.client.rst 33 ftplib.rst 34 poplib.rst 35 imaplib.rst 36 nntplib.rst 37 smtplib.rst 38 smtpd.rst 39 telnetlib.rst 40 uuid.rst 41 socketserver.rst 42 http.server.rst 43 http.cookies.rst 44 http.cookiejar.rst 45 xmlrpc.rst 46 xmlrpc.client.rst 47 xmlrpc.server.rst 48 ipaddress.rst 49