1995-03-28 09:35:14 -04:00
|
|
|
\chapter{Internet and WWW Services}
|
1995-03-20 08:59:56 -04:00
|
|
|
\nodename{Internet and WWW}
|
1995-02-16 12:29:46 -04:00
|
|
|
\index{WWW}
|
1995-03-17 12:07:09 -04:00
|
|
|
\index{Internet}
|
|
|
|
\index{World-Wide Web}
|
1995-02-16 12:29:46 -04:00
|
|
|
|
|
|
|
The modules described in this chapter provide various services to
|
|
|
|
World-Wide Web (WWW) clients and/or services, and a few modules
|
|
|
|
related to news and email. They are all implemented in Python. Some
|
|
|
|
of these modules require the presence of the system-dependent module
|
1998-01-13 15:10:02 -04:00
|
|
|
\code{sockets}\refbimodindex{socket}, which is currently only fully
|
|
|
|
supported on \UNIX{} and Windows NT. Here is an overview:
|
1995-02-16 12:29:46 -04:00
|
|
|
|
|
|
|
\begin{description}
|
|
|
|
|
1995-02-27 13:51:26 -04:00
|
|
|
\item[cgi]
|
|
|
|
--- Common Gateway Interface, used to interpret forms in server-side
|
|
|
|
scripts.
|
|
|
|
|
1995-02-16 12:29:46 -04:00
|
|
|
\item[urllib]
|
|
|
|
--- Open an arbitrary object given by URL (requires sockets).
|
|
|
|
|
|
|
|
\item[httplib]
|
|
|
|
--- HTTP protocol client (requires sockets).
|
|
|
|
|
|
|
|
\item[ftplib]
|
|
|
|
--- FTP protocol client (requires sockets).
|
|
|
|
|
|
|
|
\item[gopherlib]
|
|
|
|
--- Gopher protocol client (requires sockets).
|
|
|
|
|
|
|
|
\item[nntplib]
|
|
|
|
--- NNTP protocol client (requires sockets).
|
|
|
|
|
|
|
|
\item[urlparse]
|
|
|
|
--- Parse a URL string into a tuple (addressing scheme identifier, network
|
|
|
|
location, path, parameters, query string, fragment identifier).
|
|
|
|
|
|
|
|
\item[sgmllib]
|
|
|
|
--- Only as much of an SGML parser as needed to parse HTML.
|
|
|
|
|
1996-10-09 11:36:54 -03:00
|
|
|
\item[htmllib]
|
1997-11-18 11:30:40 -04:00
|
|
|
--- A parser for HTML documents.
|
|
|
|
|
|
|
|
\item[xmllib]
|
|
|
|
--- A parser for XML documents.
|
1996-10-09 11:36:54 -03:00
|
|
|
|
1996-10-08 18:54:06 -03:00
|
|
|
\item[formatter]
|
|
|
|
--- Generic output formatter and device interface.
|
|
|
|
|
1995-02-16 12:29:46 -04:00
|
|
|
\item[rfc822]
|
1998-02-09 15:16:20 -04:00
|
|
|
--- Parse \rfc{822} style mail headers.
|
1995-02-16 12:29:46 -04:00
|
|
|
|
|
|
|
\item[mimetools]
|
|
|
|
--- Tools for parsing MIME style message bodies.
|
|
|
|
|
1996-12-13 18:04:31 -04:00
|
|
|
\item[binhex]
|
|
|
|
--- Encode and decode files in binhex4 format.
|
|
|
|
|
|
|
|
\item[uu]
|
|
|
|
--- Encode and decode files in uuencode format.
|
|
|
|
|
|
|
|
\item[binascii]
|
|
|
|
--- Tools for converting between binary and various ascii-encoded binary
|
|
|
|
representation
|
|
|
|
|
|
|
|
\item[xdrlib]
|
1998-02-09 15:16:20 -04:00
|
|
|
--- The External Data Representation Standard as described in \rfc{1014},
|
1996-12-13 18:04:31 -04:00
|
|
|
written by Sun Microsystems, Inc. June 1987.
|
|
|
|
|
1997-03-25 18:01:35 -04:00
|
|
|
\item[mailcap]
|
1998-02-09 15:16:20 -04:00
|
|
|
--- Mailcap file handling. See \rfc{1524}.
|
1997-03-25 18:01:35 -04:00
|
|
|
|
1997-04-27 18:25:52 -03:00
|
|
|
\item[base64]
|
|
|
|
--- Encode/decode binary files using the MIME base64 encoding.
|
|
|
|
|
|
|
|
\item[quopri]
|
|
|
|
--- Encode/decode binary files using the MIME quoted-printable encoding.
|
|
|
|
|
1997-06-02 14:34:40 -03:00
|
|
|
\item[SocketServer]
|
|
|
|
--- A framework for network servers.
|
|
|
|
|
|
|
|
\item[mailbox]
|
|
|
|
--- Read various mailbox formats.
|
|
|
|
|
1997-07-30 19:05:07 -03:00
|
|
|
\item[mimify]
|
|
|
|
--- Mimification and unmimification of mail messages.
|
|
|
|
|
1997-12-30 19:42:27 -04:00
|
|
|
\item[BaseHTTPServer]
|
|
|
|
--- Basic HTTP server (base class for SimpleHTTPServer and CGIHTTPServer).
|
|
|
|
|
1995-02-16 12:29:46 -04:00
|
|
|
\end{description}
|