Fred Drake | 295da24 | 1998-08-10 19:42:37 +0000 | [diff] [blame] | 1 | \section{\module{nntplib} --- |
Fred Drake | dd6c6d9 | 1999-04-22 16:45:26 +0000 | [diff] [blame] | 2 | NNTP protocol client} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 3 | |
Fred Drake | dd6c6d9 | 1999-04-22 16:45:26 +0000 | [diff] [blame] | 4 | \declaremodule{standard}{nntplib} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 5 | \modulesynopsis{NNTP protocol client (requires sockets).} |
| 6 | |
Fred Drake | 6279fcc | 1998-01-07 13:23:32 +0000 | [diff] [blame] | 7 | \indexii{NNTP}{protocol} |
Fred Drake | 3f6034d | 1998-07-02 19:33:43 +0000 | [diff] [blame] | 8 | \index{Network News Transfer Protocol} |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 9 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 10 | This module defines the class \class{NNTP} which implements the client |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 11 | side of the NNTP protocol. It can be used to implement a news reader |
| 12 | or poster, or automated news processors. For more information on NNTP |
Fred Drake | c589124 | 1998-02-09 19:16:20 +0000 | [diff] [blame] | 13 | (Network News Transfer Protocol), see Internet \rfc{977}. |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 14 | |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 15 | Here are two small examples of how it can be used. To list some |
| 16 | statistics about a newsgroup and print the subjects of the last 10 |
| 17 | articles: |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 18 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 19 | \begin{verbatim} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 20 | >>> s = NNTP('news.cwi.nl') |
| 21 | >>> resp, count, first, last, name = s.group('comp.lang.python') |
| 22 | >>> print 'Group', name, 'has', count, 'articles, range', first, 'to', last |
| 23 | Group comp.lang.python has 59 articles, range 3742 to 3803 |
| 24 | >>> resp, subs = s.xhdr('subject', first + '-' + last) |
| 25 | >>> for id, sub in subs[-10:]: print id, sub |
| 26 | ... |
| 27 | 3792 Re: Removing elements from a list while iterating... |
| 28 | 3793 Re: Who likes Info files? |
| 29 | 3794 Emacs and doc strings |
| 30 | 3795 a few questions about the Mac implementation |
| 31 | 3796 Re: executable python scripts |
| 32 | 3797 Re: executable python scripts |
| 33 | 3798 Re: a few questions about the Mac implementation |
| 34 | 3799 Re: PROPOSAL: A Generic Python Object Interface for Python C Modules |
| 35 | 3802 Re: executable python scripts |
Fred Drake | 65b32f7 | 1998-02-09 20:27:12 +0000 | [diff] [blame] | 36 | 3803 Re: \POSIX{} wait and SIGCHLD |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 37 | >>> s.quit() |
| 38 | '205 news.cwi.nl closing connection. Goodbye.' |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 39 | \end{verbatim} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 40 | |
| 41 | To post an article from a file (this assumes that the article has |
| 42 | valid headers): |
| 43 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 44 | \begin{verbatim} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 45 | >>> s = NNTP('news.cwi.nl') |
| 46 | >>> f = open('/tmp/article') |
| 47 | >>> s.post(f) |
| 48 | '240 Article posted successfully.' |
| 49 | >>> s.quit() |
| 50 | '205 news.cwi.nl closing connection. Goodbye.' |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 51 | \end{verbatim} |
Fred Drake | dd6c6d9 | 1999-04-22 16:45:26 +0000 | [diff] [blame] | 52 | |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 53 | The module itself defines the following items: |
| 54 | |
Fred Drake | c46973c | 1998-11-16 17:11:30 +0000 | [diff] [blame] | 55 | \begin{classdesc}{NNTP}{host\optional{, port |
Barry Warsaw | 41d8463 | 2000-02-10 20:26:45 +0000 | [diff] [blame] | 56 | \optional{, user\optional{, password |
Martin v. Löwis | 9513e34 | 2004-08-03 14:36:32 +0000 | [diff] [blame] | 57 | \optional{, readermode} |
| 58 | \optional{, usenetrc}}}}} |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 59 | Return a new instance of the \class{NNTP} class, representing a |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 60 | connection to the NNTP server running on host \var{host}, listening at |
Fred Drake | c46973c | 1998-11-16 17:11:30 +0000 | [diff] [blame] | 61 | port \var{port}. The default \var{port} is 119. If the optional |
Eric S. Raymond | 2852cba | 2002-12-31 15:28:44 +0000 | [diff] [blame] | 62 | \var{user} and \var{password} are provided, |
Martin v. Löwis | 9513e34 | 2004-08-03 14:36:32 +0000 | [diff] [blame] | 63 | or if suitable credentials are present in \file{~/.netrc} and the |
| 64 | optional flag \var{usenetrc} is true (the default), |
Eric S. Raymond | 2852cba | 2002-12-31 15:28:44 +0000 | [diff] [blame] | 65 | the \samp{AUTHINFO USER} and \samp{AUTHINFO PASS} commands are used to |
Barry Warsaw | 41d8463 | 2000-02-10 20:26:45 +0000 | [diff] [blame] | 66 | identify and authenticate the user to the server. If the optional |
| 67 | flag \var{readermode} is true, then a \samp{mode reader} command is |
| 68 | sent before authentication is performed. Reader mode is sometimes |
| 69 | necessary if you are connecting to an NNTP server on the local machine |
| 70 | and intend to call reader-specific commands, such as \samp{group}. If |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 71 | you get unexpected \exception{NNTPPermanentError}s, you might need to set |
Barry Warsaw | 41d8463 | 2000-02-10 20:26:45 +0000 | [diff] [blame] | 72 | \var{readermode}. \var{readermode} defaults to \code{None}. |
Martin v. Löwis | 9513e34 | 2004-08-03 14:36:32 +0000 | [diff] [blame] | 73 | \var{usenetrc} defaults to \code{True}. |
| 74 | |
| 75 | \versionchanged[\var{usenetrc} argument added]{2.4} |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 76 | \end{classdesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 77 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 78 | \begin{excdesc}{NNTPError} |
| 79 | Derived from the standard exception \exception{Exception}, this is the |
| 80 | base class for all exceptions raised by the \module{nntplib} module. |
| 81 | \end{excdesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 82 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 83 | \begin{excdesc}{NNTPReplyError} |
Barry Warsaw | 41d8463 | 2000-02-10 20:26:45 +0000 | [diff] [blame] | 84 | Exception raised when an unexpected reply is received from the |
| 85 | server. For backwards compatibility, the exception \code{error_reply} |
| 86 | is equivalent to this class. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 87 | \end{excdesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 88 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 89 | \begin{excdesc}{NNTPTemporaryError} |
Barry Warsaw | 41d8463 | 2000-02-10 20:26:45 +0000 | [diff] [blame] | 90 | Exception raised when an error code in the range 400--499 is |
| 91 | received. For backwards compatibility, the exception |
| 92 | \code{error_temp} is equivalent to this class. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 93 | \end{excdesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 94 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 95 | \begin{excdesc}{NNTPPermanentError} |
Barry Warsaw | 41d8463 | 2000-02-10 20:26:45 +0000 | [diff] [blame] | 96 | Exception raised when an error code in the range 500--599 is |
| 97 | received. For backwards compatibility, the exception |
| 98 | \code{error_perm} is equivalent to this class. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 99 | \end{excdesc} |
Barry Warsaw | 41d8463 | 2000-02-10 20:26:45 +0000 | [diff] [blame] | 100 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 101 | \begin{excdesc}{NNTPProtocolError} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 102 | Exception raised when a reply is received from the server that does |
Barry Warsaw | 41d8463 | 2000-02-10 20:26:45 +0000 | [diff] [blame] | 103 | not begin with a digit in the range 1--5. For backwards |
| 104 | compatibility, the exception \code{error_proto} is equivalent to this |
| 105 | class. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 106 | \end{excdesc} |
Barry Warsaw | 41d8463 | 2000-02-10 20:26:45 +0000 | [diff] [blame] | 107 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 108 | \begin{excdesc}{NNTPDataError} |
Barry Warsaw | 41d8463 | 2000-02-10 20:26:45 +0000 | [diff] [blame] | 109 | Exception raised when there is some error in the response data. For |
| 110 | backwards compatibility, the exception \code{error_data} is |
| 111 | equivalent to this class. |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 112 | \end{excdesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 113 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 114 | |
Fred Drake | dd6c6d9 | 1999-04-22 16:45:26 +0000 | [diff] [blame] | 115 | \subsection{NNTP Objects \label{nntp-objects}} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 116 | |
| 117 | NNTP instances have the following methods. The \var{response} that is |
| 118 | returned as the first item in the return tuple of almost all methods |
| 119 | is the server's response: a string beginning with a three-digit code. |
| 120 | If the server's response indicates an error, the method raises one of |
| 121 | the above exceptions. |
| 122 | |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 123 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 124 | \begin{methoddesc}{getwelcome}{} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 125 | Return the welcome message sent by the server in reply to the initial |
| 126 | connection. (This message sometimes contains disclaimers or help |
| 127 | information that may be relevant to the user.) |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 128 | \end{methoddesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 129 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 130 | \begin{methoddesc}{set_debuglevel}{level} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 131 | Set the instance's debugging level. This controls the amount of |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 132 | debugging output printed. The default, \code{0}, produces no debugging |
| 133 | output. A value of \code{1} produces a moderate amount of debugging |
| 134 | output, generally a single line per request or response. A value of |
| 135 | \code{2} or higher produces the maximum amount of debugging output, |
| 136 | logging each line sent and received on the connection (including |
| 137 | message text). |
| 138 | \end{methoddesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 139 | |
Guido van Rossum | a268540 | 2003-04-19 18:04:57 +0000 | [diff] [blame] | 140 | \begin{methoddesc}{newgroups}{date, time, \optional{file}} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 141 | Send a \samp{NEWGROUPS} command. The \var{date} argument should be a |
Fred Drake | dd6c6d9 | 1999-04-22 16:45:26 +0000 | [diff] [blame] | 142 | string of the form \code{'\var{yy}\var{mm}\var{dd}'} indicating the |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 143 | date, and \var{time} should be a string of the form |
Fred Drake | dd6c6d9 | 1999-04-22 16:45:26 +0000 | [diff] [blame] | 144 | \code{'\var{hh}\var{mm}\var{ss}'} indicating the time. Return a pair |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 145 | \code{(\var{response}, \var{groups})} where \var{groups} is a list of |
| 146 | group names that are new since the given date and time. |
Guido van Rossum | a268540 | 2003-04-19 18:04:57 +0000 | [diff] [blame] | 147 | If the \var{file} parameter is supplied, then the output of the |
| 148 | \samp{NEWGROUPS} command is stored in a file. If \var{file} is a string, |
| 149 | then the method will open a file object with that name, write to it |
| 150 | then close it. If \var{file} is a file object, then it will start |
| 151 | calling \method{write()} on it to store the lines of the command output. |
| 152 | If \var{file} is supplied, then the returned \var{list} is an empty list. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 153 | \end{methoddesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 154 | |
Guido van Rossum | a268540 | 2003-04-19 18:04:57 +0000 | [diff] [blame] | 155 | \begin{methoddesc}{newnews}{group, date, time, \optional{file}} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 156 | Send a \samp{NEWNEWS} command. Here, \var{group} is a group name or |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 157 | \code{'*'}, and \var{date} and \var{time} have the same meaning as for |
| 158 | \method{newgroups()}. Return a pair \code{(\var{response}, |
Georg Brandl | 5dbda75 | 2005-07-17 20:27:41 +0000 | [diff] [blame] | 159 | \var{articles})} where \var{articles} is a list of message ids. |
Guido van Rossum | a268540 | 2003-04-19 18:04:57 +0000 | [diff] [blame] | 160 | If the \var{file} parameter is supplied, then the output of the |
| 161 | \samp{NEWNEWS} command is stored in a file. If \var{file} is a string, |
| 162 | then the method will open a file object with that name, write to it |
| 163 | then close it. If \var{file} is a file object, then it will start |
| 164 | calling \method{write()} on it to store the lines of the command output. |
| 165 | If \var{file} is supplied, then the returned \var{list} is an empty list. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 166 | \end{methoddesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 167 | |
Guido van Rossum | a268540 | 2003-04-19 18:04:57 +0000 | [diff] [blame] | 168 | \begin{methoddesc}{list}{\optional{file}} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 169 | Send a \samp{LIST} command. Return a pair \code{(\var{response}, |
| 170 | \var{list})} where \var{list} is a list of tuples. Each tuple has the |
| 171 | form \code{(\var{group}, \var{last}, \var{first}, \var{flag})}, where |
| 172 | \var{group} is a group name, \var{last} and \var{first} are the last |
Fred Drake | dd6c6d9 | 1999-04-22 16:45:26 +0000 | [diff] [blame] | 173 | and first article numbers (as strings), and \var{flag} is |
| 174 | \code{'y'} if posting is allowed, \code{'n'} if not, and \code{'m'} if |
| 175 | the newsgroup is moderated. (Note the ordering: \var{last}, |
| 176 | \var{first}.) |
Guido van Rossum | a268540 | 2003-04-19 18:04:57 +0000 | [diff] [blame] | 177 | If the \var{file} parameter is supplied, then the output of the |
| 178 | \samp{LIST} command is stored in a file. If \var{file} is a string, |
| 179 | then the method will open a file object with that name, write to it |
| 180 | then close it. If \var{file} is a file object, then it will start |
| 181 | calling \method{write()} on it to store the lines of the command output. |
| 182 | If \var{file} is supplied, then the returned \var{list} is an empty list. |
Martin v. Löwis | 8ddb638 | 2004-07-30 16:08:49 +0000 | [diff] [blame] | 183 | \end{methoddesc} |
Martin v. Löwis | cc0f932 | 2004-07-26 12:40:50 +0000 | [diff] [blame] | 184 | |
| 185 | \begin{methoddesc}{descriptions}{grouppattern} |
| 186 | Send a \samp{LIST NEWSGROUPS} command, where \var{grouppattern} is a wildmat |
| 187 | string as specified in RFC2980 (it's essentially the same as DOS or UNIX |
| 188 | shell wildcard strings). Return a pair \code{(\var{response}, |
| 189 | \var{list})}, where \var{list} is a list of tuples containing |
| 190 | \code{(\var{name}, \var{title})}. |
Martin v. Löwis | 8ddb638 | 2004-07-30 16:08:49 +0000 | [diff] [blame] | 191 | |
| 192 | \versionadded{2.4} |
Martin v. Löwis | cc0f932 | 2004-07-26 12:40:50 +0000 | [diff] [blame] | 193 | \end{methoddesc} |
| 194 | |
| 195 | \begin{methoddesc}{description}{group} |
| 196 | Get a description for a single group \var{group}. If more than one group |
Martin v. Löwis | 8ddb638 | 2004-07-30 16:08:49 +0000 | [diff] [blame] | 197 | matches (if 'group' is a real wildmat string), return the first match. |
| 198 | If no group matches, return an empty string. |
Martin v. Löwis | cc0f932 | 2004-07-26 12:40:50 +0000 | [diff] [blame] | 199 | |
| 200 | This elides the response code from the server. If the response code is |
| 201 | needed, use \method{descriptions()}. |
| 202 | |
Martin v. Löwis | 8ddb638 | 2004-07-30 16:08:49 +0000 | [diff] [blame] | 203 | \versionadded{2.4} |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 204 | \end{methoddesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 205 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 206 | \begin{methoddesc}{group}{name} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 207 | Send a \samp{GROUP} command, where \var{name} is the group name. |
Fred Drake | dd6c6d9 | 1999-04-22 16:45:26 +0000 | [diff] [blame] | 208 | Return a tuple \code{(\var{response}, \var{count}, \var{first}, |
| 209 | \var{last}, \var{name})} where \var{count} is the (estimated) number |
| 210 | of articles in the group, \var{first} is the first article number in |
| 211 | the group, \var{last} is the last article number in the group, and |
| 212 | \var{name} is the group name. The numbers are returned as strings. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 213 | \end{methoddesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 214 | |
Guido van Rossum | a268540 | 2003-04-19 18:04:57 +0000 | [diff] [blame] | 215 | \begin{methoddesc}{help}{\optional{file}} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 216 | Send a \samp{HELP} command. Return a pair \code{(\var{response}, |
| 217 | \var{list})} where \var{list} is a list of help strings. |
Guido van Rossum | a268540 | 2003-04-19 18:04:57 +0000 | [diff] [blame] | 218 | If the \var{file} parameter is supplied, then the output of the |
| 219 | \samp{HELP} command is stored in a file. If \var{file} is a string, |
| 220 | then the method will open a file object with that name, write to it |
| 221 | then close it. If \var{file} is a file object, then it will start |
| 222 | calling \method{write()} on it to store the lines of the command output. |
| 223 | If \var{file} is supplied, then the returned \var{list} is an empty list. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 224 | \end{methoddesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 225 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 226 | \begin{methoddesc}{stat}{id} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 227 | Send a \samp{STAT} command, where \var{id} is the message id (enclosed |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 228 | in \character{<} and \character{>}) or an article number (as a string). |
Fred Drake | 4b3f031 | 1996-12-13 22:04:31 +0000 | [diff] [blame] | 229 | Return a triple \code{(\var{response}, \var{number}, \var{id})} where |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 230 | \var{number} is the article number (as a string) and \var{id} is the |
Georg Brandl | 5dbda75 | 2005-07-17 20:27:41 +0000 | [diff] [blame] | 231 | message id (enclosed in \character{<} and \character{>}). |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 232 | \end{methoddesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 233 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 234 | \begin{methoddesc}{next}{} |
| 235 | Send a \samp{NEXT} command. Return as for \method{stat()}. |
| 236 | \end{methoddesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 237 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 238 | \begin{methoddesc}{last}{} |
| 239 | Send a \samp{LAST} command. Return as for \method{stat()}. |
| 240 | \end{methoddesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 241 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 242 | \begin{methoddesc}{head}{id} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 243 | Send a \samp{HEAD} command, where \var{id} has the same meaning as for |
Guido van Rossum | cd90509 | 1998-06-30 14:53:41 +0000 | [diff] [blame] | 244 | \method{stat()}. Return a tuple |
| 245 | \code{(\var{response}, \var{number}, \var{id}, \var{list})} |
| 246 | where the first three are the same as for \method{stat()}, |
| 247 | and \var{list} is a list of the article's headers (an uninterpreted |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 248 | list of lines, without trailing newlines). |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 249 | \end{methoddesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 250 | |
Fredrik Lundh | a5e6165 | 2001-10-18 20:58:25 +0000 | [diff] [blame] | 251 | \begin{methoddesc}{body}{id,\optional{file}} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 252 | Send a \samp{BODY} command, where \var{id} has the same meaning as for |
Fredrik Lundh | a5e6165 | 2001-10-18 20:58:25 +0000 | [diff] [blame] | 253 | \method{stat()}. If the \var{file} parameter is supplied, then |
| 254 | the body is stored in a file. If \var{file} is a string, then |
Guido van Rossum | e7877df | 2001-10-01 13:50:15 +0000 | [diff] [blame] | 255 | the method will open a file object with that name, write to it then close it. |
Fredrik Lundh | a5e6165 | 2001-10-18 20:58:25 +0000 | [diff] [blame] | 256 | If \var{file} is a file object, then it will start calling |
Guido van Rossum | e7877df | 2001-10-01 13:50:15 +0000 | [diff] [blame] | 257 | \method{write()} on it to store the lines of the body. |
Guido van Rossum | a268540 | 2003-04-19 18:04:57 +0000 | [diff] [blame] | 258 | Return as for \method{head()}. If \var{file} is supplied, then |
Guido van Rossum | e7877df | 2001-10-01 13:50:15 +0000 | [diff] [blame] | 259 | the returned \var{list} is an empty list. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 260 | \end{methoddesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 261 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 262 | \begin{methoddesc}{article}{id} |
Fred Drake | 506a7a8 | 2000-07-01 17:43:19 +0000 | [diff] [blame] | 263 | Send an \samp{ARTICLE} command, where \var{id} has the same meaning as |
Guido van Rossum | cd90509 | 1998-06-30 14:53:41 +0000 | [diff] [blame] | 264 | for \method{stat()}. Return as for \method{head()}. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 265 | \end{methoddesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 266 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 267 | \begin{methoddesc}{slave}{} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 268 | Send a \samp{SLAVE} command. Return the server's \var{response}. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 269 | \end{methoddesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 270 | |
Guido van Rossum | a268540 | 2003-04-19 18:04:57 +0000 | [diff] [blame] | 271 | \begin{methoddesc}{xhdr}{header, string, \optional{file}} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 272 | Send an \samp{XHDR} command. This command is not defined in the RFC |
| 273 | but is a common extension. The \var{header} argument is a header |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 274 | keyword, e.g. \code{'subject'}. The \var{string} argument should have |
Fred Drake | dd6c6d9 | 1999-04-22 16:45:26 +0000 | [diff] [blame] | 275 | the form \code{'\var{first}-\var{last}'} where \var{first} and |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 276 | \var{last} are the first and last article numbers to search. Return a |
| 277 | pair \code{(\var{response}, \var{list})}, where \var{list} is a list of |
Georg Brandl | 5dbda75 | 2005-07-17 20:27:41 +0000 | [diff] [blame] | 278 | pairs \code{(\var{id}, \var{text})}, where \var{id} is an article number |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 279 | (as a string) and \var{text} is the text of the requested header for |
| 280 | that article. |
Guido van Rossum | a268540 | 2003-04-19 18:04:57 +0000 | [diff] [blame] | 281 | If the \var{file} parameter is supplied, then the output of the |
| 282 | \samp{XHDR} command is stored in a file. If \var{file} is a string, |
| 283 | then the method will open a file object with that name, write to it |
| 284 | then close it. If \var{file} is a file object, then it will start |
| 285 | calling \method{write()} on it to store the lines of the command output. |
| 286 | If \var{file} is supplied, then the returned \var{list} is an empty list. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 287 | \end{methoddesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 288 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 289 | \begin{methoddesc}{post}{file} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 290 | Post an article using the \samp{POST} command. The \var{file} |
| 291 | argument is an open file object which is read until EOF using its |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 292 | \method{readline()} method. It should be a well-formed news article, |
| 293 | including the required headers. The \method{post()} method |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 294 | automatically escapes lines beginning with \samp{.}. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 295 | \end{methoddesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 296 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 297 | \begin{methoddesc}{ihave}{id, file} |
Georg Brandl | 5dbda75 | 2005-07-17 20:27:41 +0000 | [diff] [blame] | 298 | Send an \samp{IHAVE} command. \var{id} is a message id (enclosed in |
| 299 | \character{<} and \character{>}). |
| 300 | If the response is not an error, treat |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 301 | \var{file} exactly as for the \method{post()} method. |
| 302 | \end{methoddesc} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 303 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 304 | \begin{methoddesc}{date}{} |
Guido van Rossum | 94adab5 | 1997-06-02 17:27:50 +0000 | [diff] [blame] | 305 | Return a triple \code{(\var{response}, \var{date}, \var{time})}, |
| 306 | containing the current date and time in a form suitable for the |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 307 | \method{newnews()} and \method{newgroups()} methods. |
Guido van Rossum | 94adab5 | 1997-06-02 17:27:50 +0000 | [diff] [blame] | 308 | This is an optional NNTP extension, and may not be supported by all |
| 309 | servers. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 310 | \end{methoddesc} |
Guido van Rossum | 94adab5 | 1997-06-02 17:27:50 +0000 | [diff] [blame] | 311 | |
Guido van Rossum | a268540 | 2003-04-19 18:04:57 +0000 | [diff] [blame] | 312 | \begin{methoddesc}{xgtitle}{name, \optional{file}} |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 313 | Process an \samp{XGTITLE} command, returning a pair \code{(\var{response}, |
Fred Drake | fac431e | 1998-02-16 21:57:37 +0000 | [diff] [blame] | 314 | \var{list})}, where \var{list} is a list of tuples containing |
Guido van Rossum | 94adab5 | 1997-06-02 17:27:50 +0000 | [diff] [blame] | 315 | \code{(\var{name}, \var{title})}. |
| 316 | % XXX huh? Should that be name, description? |
Guido van Rossum | a268540 | 2003-04-19 18:04:57 +0000 | [diff] [blame] | 317 | If the \var{file} parameter is supplied, then the output of the |
| 318 | \samp{XGTITLE} command is stored in a file. If \var{file} is a string, |
| 319 | then the method will open a file object with that name, write to it |
| 320 | then close it. If \var{file} is a file object, then it will start |
| 321 | calling \method{write()} on it to store the lines of the command output. |
| 322 | If \var{file} is supplied, then the returned \var{list} is an empty list. |
Guido van Rossum | 94adab5 | 1997-06-02 17:27:50 +0000 | [diff] [blame] | 323 | This is an optional NNTP extension, and may not be supported by all |
| 324 | servers. |
Martin v. Löwis | cc0f932 | 2004-07-26 12:40:50 +0000 | [diff] [blame] | 325 | |
| 326 | RFC2980 says ``It is suggested that this extension be deprecated''. Use |
| 327 | \method{descriptions()} or \method{description()} instead. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 328 | \end{methoddesc} |
Guido van Rossum | 94adab5 | 1997-06-02 17:27:50 +0000 | [diff] [blame] | 329 | |
Guido van Rossum | a268540 | 2003-04-19 18:04:57 +0000 | [diff] [blame] | 330 | \begin{methoddesc}{xover}{start, end, \optional{file}} |
Guido van Rossum | 94adab5 | 1997-06-02 17:27:50 +0000 | [diff] [blame] | 331 | Return a pair \code{(\var{resp}, \var{list})}. \var{list} is a list |
| 332 | of tuples, one for each article in the range delimited by the \var{start} |
| 333 | and \var{end} article numbers. Each tuple is of the form |
Fred Drake | dd6c6d9 | 1999-04-22 16:45:26 +0000 | [diff] [blame] | 334 | \code{(\var{article number}, \var{subject}, \var{poster}, \var{date}, |
| 335 | \var{id}, \var{references}, \var{size}, \var{lines})}. |
Guido van Rossum | a268540 | 2003-04-19 18:04:57 +0000 | [diff] [blame] | 336 | If the \var{file} parameter is supplied, then the output of the |
| 337 | \samp{XOVER} command is stored in a file. If \var{file} is a string, |
| 338 | then the method will open a file object with that name, write to it |
| 339 | then close it. If \var{file} is a file object, then it will start |
| 340 | calling \method{write()} on it to store the lines of the command output. |
| 341 | If \var{file} is supplied, then the returned \var{list} is an empty list. |
Guido van Rossum | 94adab5 | 1997-06-02 17:27:50 +0000 | [diff] [blame] | 342 | This is an optional NNTP extension, and may not be supported by all |
| 343 | servers. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 344 | \end{methoddesc} |
Guido van Rossum | 94adab5 | 1997-06-02 17:27:50 +0000 | [diff] [blame] | 345 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 346 | \begin{methoddesc}{xpath}{id} |
Guido van Rossum | 94adab5 | 1997-06-02 17:27:50 +0000 | [diff] [blame] | 347 | Return a pair \code{(\var{resp}, \var{path})}, where \var{path} is the |
| 348 | directory path to the article with message ID \var{id}. This is an |
| 349 | optional NNTP extension, and may not be supported by all servers. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 350 | \end{methoddesc} |
Guido van Rossum | 94adab5 | 1997-06-02 17:27:50 +0000 | [diff] [blame] | 351 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 352 | \begin{methoddesc}{quit}{} |
Guido van Rossum | 1b91cda | 1995-03-24 15:56:02 +0000 | [diff] [blame] | 353 | Send a \samp{QUIT} command and close the connection. Once this method |
| 354 | has been called, no other methods of the NNTP object should be called. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 355 | \end{methoddesc} |