blob: feec27a1f12c794ea963d8e1ccb4a4625594112e [file] [log] [blame]
Guido van Rossum470be141995-03-17 16:07:09 +00001\section{Standard Module \sectcode{nntplib}}
Guido van Rossuma12ef941995-02-27 17:53:25 +00002\stmodindex{nntplib}
Guido van Rossum86751151995-02-28 17:14:32 +00003
4\renewcommand{\indexsubitem}{(in module nntplib)}
5
Guido van Rossumcca8d2b1995-03-22 15:48:46 +00006This module defines the class \code{NNTP} which implements the client
7side of the NNTP protocol. It can be used to implement a news reader
8or poster, or automated news processors. For more information on NNTP
9(Network News Transfer Protocol), see Internet RFC 977.
10
Guido van Rossum1b91cda1995-03-24 15:56:02 +000011Here are two small examples of how it can be used. To list some
12statistics about a newsgroup and print the subjects of the last 10
13articles:
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000014
Guido van Rossum96628a91995-04-10 11:34:00 +000015\small{
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000016\begin{verbatim}
17>>> s = NNTP('news.cwi.nl')
18>>> resp, count, first, last, name = s.group('comp.lang.python')
19>>> print 'Group', name, 'has', count, 'articles, range', first, 'to', last
20Group comp.lang.python has 59 articles, range 3742 to 3803
21>>> resp, subs = s.xhdr('subject', first + '-' + last)
22>>> for id, sub in subs[-10:]: print id, sub
23...
243792 Re: Removing elements from a list while iterating...
253793 Re: Who likes Info files?
263794 Emacs and doc strings
273795 a few questions about the Mac implementation
283796 Re: executable python scripts
293797 Re: executable python scripts
303798 Re: a few questions about the Mac implementation
313799 Re: PROPOSAL: A Generic Python Object Interface for Python C Modules
323802 Re: executable python scripts
333803 Re: POSIX wait and SIGCHLD
34>>> s.quit()
35'205 news.cwi.nl closing connection. Goodbye.'
36>>>
37\end{verbatim}
Guido van Rossum96628a91995-04-10 11:34:00 +000038}
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
43\begin{verbatim}
44>>> 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>>>
51\end{verbatim}
Guido van Rossum1b91cda1995-03-24 15:56:02 +000052
53The module itself defines the following items:
54
55\begin{funcdesc}{NNTP}{host\optional{\, port}}
56Return 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
86\renewcommand{\indexsubitem}{(NNTP object method)}
87
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
103\begin{funcdesc}{newgroups}{date\, time}
104Send 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
112\begin{funcdesc}{newnews}{group\, date\, time}
113Send 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
184\begin{funcdesc}{xhdr}{header\, string}
185Send 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
204\begin{funcdesc}{ihave}{id\, file}
205Send 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
209\begin{funcdesc}{quit}{}
210Send a \samp{QUIT} command and close the connection. Once this method
211has been called, no other methods of the NNTP object should be called.
212\end{funcdesc}