blob: 75c84d3555c6a281592424c896f3762518860168 [file] [log] [blame]
Guido van Rossum470be141995-03-17 16:07:09 +00001\section{Standard Module \sectcode{nntplib}}
Guido van Rossume47da0a1997-07-17 16:34:52 +00002\label{module-nntplib}
Guido van Rossuma12ef941995-02-27 17:53:25 +00003\stmodindex{nntplib}
Fred Drake6279fcc1998-01-07 13:23:32 +00004\indexii{NNTP}{protocol}
Guido van Rossum86751151995-02-28 17:14:32 +00005
Fred Drake19479911998-02-13 06:58:54 +00006\setindexsubitem{(in module nntplib)}
Guido van Rossum86751151995-02-28 17:14:32 +00007
Guido van Rossumcca8d2b1995-03-22 15:48:46 +00008This module defines the class \code{NNTP} which implements the client
9side of the NNTP protocol. It can be used to implement a news reader
10or poster, or automated news processors. For more information on NNTP
Fred Drakec5891241998-02-09 19:16:20 +000011(Network News Transfer Protocol), see Internet \rfc{977}.
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000012
Guido van Rossum1b91cda1995-03-24 15:56:02 +000013Here are two small examples of how it can be used. To list some
14statistics about a newsgroup and print the subjects of the last 10
15articles:
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000016
Fred Drake19479911998-02-13 06:58:54 +000017\begin{verbatim}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000018>>> s = NNTP('news.cwi.nl')
19>>> resp, count, first, last, name = s.group('comp.lang.python')
20>>> print 'Group', name, 'has', count, 'articles, range', first, 'to', last
21Group comp.lang.python has 59 articles, range 3742 to 3803
22>>> resp, subs = s.xhdr('subject', first + '-' + last)
23>>> for id, sub in subs[-10:]: print id, sub
24...
253792 Re: Removing elements from a list while iterating...
263793 Re: Who likes Info files?
273794 Emacs and doc strings
283795 a few questions about the Mac implementation
293796 Re: executable python scripts
303797 Re: executable python scripts
313798 Re: a few questions about the Mac implementation
323799 Re: PROPOSAL: A Generic Python Object Interface for Python C Modules
333802 Re: executable python scripts
Fred Drake65b32f71998-02-09 20:27:12 +0000343803 Re: \POSIX{} wait and SIGCHLD
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000035>>> s.quit()
36'205 news.cwi.nl closing connection. Goodbye.'
37>>>
Fred Drake19479911998-02-13 06:58:54 +000038\end{verbatim}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000039
40To post an article from a file (this assumes that the article has
41valid headers):
42
Fred Drake19479911998-02-13 06:58:54 +000043\begin{verbatim}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000044>>> s = NNTP('news.cwi.nl')
45>>> f = open('/tmp/article')
46>>> s.post(f)
47'240 Article posted successfully.'
48>>> s.quit()
49'205 news.cwi.nl closing connection. Goodbye.'
50>>>
Fred Drake19479911998-02-13 06:58:54 +000051\end{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +000052%
Guido van Rossum1b91cda1995-03-24 15:56:02 +000053The module itself defines the following items:
54
Fred Drake6279fcc1998-01-07 13:23:32 +000055\begin{funcdesc}{NNTP}{host\optional{, port}}
Guido van Rossum1b91cda1995-03-24 15:56:02 +000056Return a new instance of the \code{NNTP} class, representing a
57connection to the NNTP server running on host \var{host}, listening at
58port \var{port}. The default \var{port} is 119.
59\end{funcdesc}
60
61\begin{excdesc}{error_reply}
62Exception raised when an unexpected reply is received from the server.
63\end{excdesc}
64
65\begin{excdesc}{error_temp}
66Exception raised when an error code in the range 400--499 is received.
67\end{excdesc}
68
69\begin{excdesc}{error_perm}
70Exception raised when an error code in the range 500--599 is received.
71\end{excdesc}
72
73\begin{excdesc}{error_proto}
74Exception raised when a reply is received from the server that does
75not begin with a digit in the range 1--5.
76\end{excdesc}
77
78\subsection{NNTP Objects}
79
80NNTP instances have the following methods. The \var{response} that is
81returned as the first item in the return tuple of almost all methods
82is the server's response: a string beginning with a three-digit code.
83If the server's response indicates an error, the method raises one of
84the above exceptions.
85
Fred Drake19479911998-02-13 06:58:54 +000086\setindexsubitem{(NNTP object method)}
Guido van Rossum1b91cda1995-03-24 15:56:02 +000087
88\begin{funcdesc}{getwelcome}{}
89Return the welcome message sent by the server in reply to the initial
90connection. (This message sometimes contains disclaimers or help
91information that may be relevant to the user.)
92\end{funcdesc}
93
94\begin{funcdesc}{set_debuglevel}{level}
95Set the instance's debugging level. This controls the amount of
96debugging output printed. The default, 0, produces no debugging
97output. A value of 1 produces a moderate amount of debugging output,
98generally a single line per request or response. A value of 2 or
99higher produces the maximum amount of debugging output, logging each
100line sent and received on the connection (including message text).
101\end{funcdesc}
102
Fred Drake6279fcc1998-01-07 13:23:32 +0000103\begin{funcdesc}{newgroups}{date, time}
Guido van Rossum1b91cda1995-03-24 15:56:02 +0000104Send a \samp{NEWGROUPS} command. The \var{date} argument should be a
105string of the form \code{"\var{yy}\var{mm}\var{dd}"} indicating the
106date, and \var{time} should be a string of the form
107\code{"\var{hh}\var{mm}\var{ss}"} indicating the time. Return a pair
108\code{(\var{response}, \var{groups})} where \var{groups} is a list of
109group names that are new since the given date and time.
110\end{funcdesc}
111
Fred Drake6279fcc1998-01-07 13:23:32 +0000112\begin{funcdesc}{newnews}{group, date, time}
Guido van Rossum1b91cda1995-03-24 15:56:02 +0000113Send a \samp{NEWNEWS} command. Here, \var{group} is a group name or
114\code{"*"}, and \var{date} and \var{time} have the same meaning as for
115\code{newgroups()}. Return a pair \code{(\var{response},
116\var{articles})} where \var{articles} is a list of article ids.
117\end{funcdesc}
118
119\begin{funcdesc}{list}{}
120Send a \samp{LIST} command. Return a pair \code{(\var{response},
121\var{list})} where \var{list} is a list of tuples. Each tuple has the
122form \code{(\var{group}, \var{last}, \var{first}, \var{flag})}, where
123\var{group} is a group name, \var{last} and \var{first} are the last
124and first article numbers (as strings), and \var{flag} is \code{'y'}
125if posting is allowed, \code{'n'} if not, and \code{'m'} if the
126newsgroup is moderated. (Note the ordering: \var{last}, \var{first}.)
127\end{funcdesc}
128
129\begin{funcdesc}{group}{name}
130Send a \samp{GROUP} command, where \var{name} is the group name.
131Return a tuple \code{(\var{response}, \var{count}, \var{first},
132\var{last}, \var{name})} where \var{count} is the (estimated) number
133of articles in the group, \var{first} is the first article number in
134the group, \var{last} is the last article number in the group, and
135\var{name} is the group name. The numbers are returned as strings.
136\end{funcdesc}
137
138\begin{funcdesc}{help}{}
139Send a \samp{HELP} command. Return a pair \code{(\var{response},
140\var{list})} where \var{list} is a list of help strings.
141\end{funcdesc}
142
143\begin{funcdesc}{stat}{id}
144Send a \samp{STAT} command, where \var{id} is the message id (enclosed
145in \samp{<} and \samp{>}) or an article number (as a string).
Fred Drake4b3f0311996-12-13 22:04:31 +0000146Return a triple \code{(\var{response}, \var{number}, \var{id})} where
Guido van Rossum1b91cda1995-03-24 15:56:02 +0000147\var{number} is the article number (as a string) and \var{id} is the
148article id (enclosed in \samp{<} and \samp{>}).
149\end{funcdesc}
150
151\begin{funcdesc}{next}{}
152Send a \samp{NEXT} command. Return as for \code{stat()}.
153\end{funcdesc}
154
155\begin{funcdesc}{last}{}
156Send a \samp{LAST} command. Return as for \code{stat()}.
157\end{funcdesc}
158
159\begin{funcdesc}{head}{id}
160Send a \samp{HEAD} command, where \var{id} has the same meaning as for
161\code{stat()}. Return a pair \code{(\var{response}, \var{list})}
162where \var{list} is a list of the article's headers (an uninterpreted
163list of lines, without trailing newlines).
164\end{funcdesc}
165
166\begin{funcdesc}{body}{id}
167Send a \samp{BODY} command, where \var{id} has the same meaning as for
168\code{stat()}. Return a pair \code{(\var{response}, \var{list})}
169where \var{list} is a list of the article's body text (an
170uninterpreted list of lines, without trailing newlines).
171\end{funcdesc}
172
173\begin{funcdesc}{article}{id}
174Send a \samp{ARTICLE} command, where \var{id} has the same meaning as
175for \code{stat()}. Return a pair \code{(\var{response}, \var{list})}
176where \var{list} is a list of the article's header and body text (an
177uninterpreted list of lines, without trailing newlines).
178\end{funcdesc}
179
180\begin{funcdesc}{slave}{}
181Send a \samp{SLAVE} command. Return the server's \var{response}.
182\end{funcdesc}
183
Fred Drake6279fcc1998-01-07 13:23:32 +0000184\begin{funcdesc}{xhdr}{header, string}
Guido van Rossum1b91cda1995-03-24 15:56:02 +0000185Send an \samp{XHDR} command. This command is not defined in the RFC
186but is a common extension. The \var{header} argument is a header
187keyword, e.g. \code{"subject"}. The \var{string} argument should have
188the form \code{"\var{first}-\var{last}"} where \var{first} and
189\var{last} are the first and last article numbers to search. Return a
190pair \code{(\var{response}, \var{list})}, where \var{list} is a list of
191pairs \code{(\var{id}, \var{text})}, where \var{id} is an article id
192(as a string) and \var{text} is the text of the requested header for
193that article.
194\end{funcdesc}
195
196\begin{funcdesc}{post}{file}
197Post an article using the \samp{POST} command. The \var{file}
198argument is an open file object which is read until EOF using its
199\code{readline()} method. It should be a well-formed news article,
200including the required headers. The \code{post()} method
201automatically escapes lines beginning with \samp{.}.
202\end{funcdesc}
203
Fred Drake6279fcc1998-01-07 13:23:32 +0000204\begin{funcdesc}{ihave}{id, file}
Guido van Rossum1b91cda1995-03-24 15:56:02 +0000205Send an \samp{IHAVE} command. If the response is not an error, treat
206\var{file} exactly as for the \code{post()} method.
207\end{funcdesc}
208
Guido van Rossum94adab51997-06-02 17:27:50 +0000209\begin{funcdesc}{date}{}
210Return a triple \code{(\var{response}, \var{date}, \var{time})},
211containing the current date and time in a form suitable for the
212\code{newnews} and \code{newgroups} methods.
213This is an optional NNTP extension, and may not be supported by all
214servers.
215\end{funcdesc}
216
217\begin{funcdesc}{xgtitle}{name}
218Process an XGTITLE command, returning a pair \code{(\var{response},
Fred Drakefac431e1998-02-16 21:57:37 +0000219\var{list})}, where \var{list} is a list of tuples containing
Guido van Rossum94adab51997-06-02 17:27:50 +0000220\code{(\var{name}, \var{title})}.
221% XXX huh? Should that be name, description?
222This is an optional NNTP extension, and may not be supported by all
223servers.
224\end{funcdesc}
225
Fred Drake6279fcc1998-01-07 13:23:32 +0000226\begin{funcdesc}{xover}{start, end}
Guido van Rossum94adab51997-06-02 17:27:50 +0000227Return a pair \code{(\var{resp}, \var{list})}. \var{list} is a list
228of tuples, one for each article in the range delimited by the \var{start}
229and \var{end} article numbers. Each tuple is of the form
Fred Drakefac431e1998-02-16 21:57:37 +0000230\code{(}\var{article number}\code{,} \var{subject}\code{,}
231\var{poster}\code{,} \var{date}\code{,} \var{id}\code{,}
232\var{references}\code{,} \var{size}\code{,} \var{lines}\code{)}.
Guido van Rossum94adab51997-06-02 17:27:50 +0000233This is an optional NNTP extension, and may not be supported by all
234servers.
235\end{funcdesc}
236
237\begin{funcdesc}{xpath}{id}
238Return a pair \code{(\var{resp}, \var{path})}, where \var{path} is the
239directory path to the article with message ID \var{id}. This is an
240optional NNTP extension, and may not be supported by all servers.
241\end{funcdesc}
242
Guido van Rossum1b91cda1995-03-24 15:56:02 +0000243\begin{funcdesc}{quit}{}
244Send a \samp{QUIT} command and close the connection. Once this method
245has been called, no other methods of the NNTP object should be called.
246\end{funcdesc}