Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | |
| 2 | :mod:`nntplib` --- NNTP protocol client |
| 3 | ======================================= |
| 4 | |
| 5 | .. module:: nntplib |
| 6 | :synopsis: NNTP protocol client (requires sockets). |
| 7 | |
| 8 | |
| 9 | .. index:: |
| 10 | pair: NNTP; protocol |
| 11 | single: Network News Transfer Protocol |
| 12 | |
| 13 | This module defines the class :class:`NNTP` which implements the client side of |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 14 | the Network News Transfer Protocol. It can be used to implement a news reader |
| 15 | or poster, or automated news processors. It is compatible with :rfc:`3977` |
| 16 | as well as the older :rfc:`977` and :rfc:`2980`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 17 | |
| 18 | Here are two small examples of how it can be used. To list some statistics |
| 19 | about a newsgroup and print the subjects of the last 10 articles:: |
| 20 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 21 | >>> s = nntplib.NNTP('news.gmane.org') |
Antoine Pitrou | e339651 | 2010-09-07 18:44:12 +0000 | [diff] [blame] | 22 | >>> resp, count, first, last, name = s.group('gmane.comp.python.committers') |
Georg Brandl | 6911e3c | 2007-09-04 07:15:32 +0000 | [diff] [blame] | 23 | >>> print('Group', name, 'has', count, 'articles, range', first, 'to', last) |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 24 | Group gmane.comp.python.committers has 1096 articles, range 1 to 1096 |
| 25 | >>> resp, overviews = s.over((last - 9, last)) |
| 26 | >>> for id, over in overviews: |
| 27 | ... print(id, nntplib.decode_header(over['subject'])) |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 28 | ... |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 29 | 1087 Re: Commit privileges for Łukasz Langa |
| 30 | 1088 Re: 3.2 alpha 2 freeze |
| 31 | 1089 Re: 3.2 alpha 2 freeze |
| 32 | 1090 Re: Commit privileges for Łukasz Langa |
| 33 | 1091 Re: Commit privileges for Łukasz Langa |
| 34 | 1092 Updated ssh key |
| 35 | 1093 Re: Updated ssh key |
| 36 | 1094 Re: Updated ssh key |
| 37 | 1095 Hello fellow committers! |
| 38 | 1096 Re: Hello fellow committers! |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 39 | >>> s.quit() |
Antoine Pitrou | e339651 | 2010-09-07 18:44:12 +0000 | [diff] [blame] | 40 | '205 Bye!' |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 41 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 42 | To post an article from a binary file (this assumes that the article has valid |
Antoine Pitrou | e339651 | 2010-09-07 18:44:12 +0000 | [diff] [blame] | 43 | headers, and that you have right to post on the particular newsgroup):: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 44 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 45 | >>> s = nntplib.NNTP('news.gmane.org') |
| 46 | >>> f = open('/tmp/article.txt', 'rb') |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 47 | >>> s.post(f) |
| 48 | '240 Article posted successfully.' |
| 49 | >>> s.quit() |
Antoine Pitrou | e339651 | 2010-09-07 18:44:12 +0000 | [diff] [blame] | 50 | '205 Bye!' |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 51 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 52 | The module itself defines the following classes: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 53 | |
| 54 | |
Antoine Pitrou | 859c4ef | 2010-11-09 18:58:42 +0000 | [diff] [blame] | 55 | .. class:: NNTP(host, port=119, user=None, password=None, readermode=None, usenetrc=False, [timeout]) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 56 | |
Antoine Pitrou | a078115 | 2010-11-05 19:16:37 +0000 | [diff] [blame] | 57 | Return a new :class:`NNTP` object, representing a connection |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 58 | to the NNTP server running on host *host*, listening at port *port*. |
| 59 | An optional *timeout* can be specified for the socket connection. |
| 60 | If the optional *user* and *password* are provided, or if suitable |
| 61 | credentials are present in :file:`/.netrc` and the optional flag *usenetrc* |
Antoine Pitrou | 859c4ef | 2010-11-09 18:58:42 +0000 | [diff] [blame] | 62 | is true, the ``AUTHINFO USER`` and ``AUTHINFO PASS`` commands are used |
| 63 | to identify and authenticate the user to the server. If the optional |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 64 | flag *readermode* is true, then a ``mode reader`` command is sent before |
| 65 | authentication is performed. Reader mode is sometimes necessary if you are |
| 66 | connecting to an NNTP server on the local machine and intend to call |
| 67 | reader-specific commands, such as ``group``. If you get unexpected |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 68 | :exc:`NNTPPermanentError`\ s, you might need to set *readermode*. |
Antoine Pitrou | 859c4ef | 2010-11-09 18:58:42 +0000 | [diff] [blame] | 69 | |
| 70 | .. versionchanged:: 3.2 |
| 71 | *usenetrc* is now False by default. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 72 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 73 | |
Antoine Pitrou | 859c4ef | 2010-11-09 18:58:42 +0000 | [diff] [blame] | 74 | .. class:: NNTP_SSL(host, port=563, user=None, password=None, ssl_context=None, readermode=None, usenetrc=False, [timeout]) |
Antoine Pitrou | 1cb121e | 2010-11-09 18:54:37 +0000 | [diff] [blame] | 75 | |
| 76 | Return a new :class:`NNTP_SSL` object, representing an encrypted |
| 77 | connection to the NNTP server running on host *host*, listening at |
| 78 | port *port*. :class:`NNTP_SSL` objects have the same methods as |
| 79 | :class:`NNTP` objects. If *port* is omitted, port 563 (NNTPS) is used. |
| 80 | *ssl_context* is also optional, and is a :class:`~ssl.SSLContext` object. |
| 81 | All other parameters behave the same as for :class:`NNTP`. |
| 82 | |
| 83 | Note that SSL-on-563 is discouraged per :rfc:`4642`, in favor of |
| 84 | STARTTLS as described below. However, some servers only support the |
| 85 | former. |
| 86 | |
| 87 | .. versionadded:: 3.2 |
| 88 | |
| 89 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 90 | .. exception:: NNTPError |
| 91 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 92 | Derived from the standard exception :exc:`Exception`, this is the base |
| 93 | class for all exceptions raised by the :mod:`nntplib` module. Instances |
| 94 | of this class have the following attribute: |
| 95 | |
| 96 | .. attribute:: response |
| 97 | |
| 98 | The response of the server if available, as a :class:`str` object. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 99 | |
| 100 | |
| 101 | .. exception:: NNTPReplyError |
| 102 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 103 | Exception raised when an unexpected reply is received from the server. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 104 | |
| 105 | |
| 106 | .. exception:: NNTPTemporaryError |
| 107 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 108 | Exception raised when a response code in the range 400--499 is received. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 109 | |
| 110 | |
| 111 | .. exception:: NNTPPermanentError |
| 112 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 113 | Exception raised when a response code in the range 500--599 is received. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 114 | |
| 115 | |
| 116 | .. exception:: NNTPProtocolError |
| 117 | |
| 118 | Exception raised when a reply is received from the server that does not begin |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 119 | with a digit in the range 1--5. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 120 | |
| 121 | |
| 122 | .. exception:: NNTPDataError |
| 123 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 124 | Exception raised when there is some error in the response data. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 125 | |
| 126 | |
| 127 | .. _nntp-objects: |
| 128 | |
| 129 | NNTP Objects |
| 130 | ------------ |
| 131 | |
Antoine Pitrou | 1cb121e | 2010-11-09 18:54:37 +0000 | [diff] [blame] | 132 | When connected, :class:`NNTP` and :class:`NNTP_SSL` objects support the |
| 133 | following methods and attributes. |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 134 | |
Antoine Pitrou | a078115 | 2010-11-05 19:16:37 +0000 | [diff] [blame] | 135 | Attributes |
| 136 | ^^^^^^^^^^ |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 137 | |
Antoine Pitrou | a078115 | 2010-11-05 19:16:37 +0000 | [diff] [blame] | 138 | .. attribute:: NNTP.nntp_version |
| 139 | |
| 140 | An integer representing the version of the NNTP protocol supported by the |
| 141 | server. In practice, this should be ``2`` for servers advertising |
| 142 | :rfc:`3977` compliance and ``1`` for others. |
| 143 | |
| 144 | .. versionadded:: 3.2 |
| 145 | |
| 146 | .. attribute:: NNTP.nntp_implementation |
| 147 | |
| 148 | A string describing the software name and version of the NNTP server, |
| 149 | or :const:`None` if not advertised by the server. |
| 150 | |
| 151 | .. versionadded:: 3.2 |
| 152 | |
| 153 | Methods |
| 154 | ^^^^^^^ |
| 155 | |
| 156 | The *response* that is returned as the first item in the return tuple of almost |
| 157 | all methods is the server's response: a string beginning with a three-digit |
| 158 | code. If the server's response indicates an error, the method raises one of |
| 159 | the above exceptions. |
| 160 | |
| 161 | Many of the following methods take an optional keyword-only argument *file*. |
| 162 | When the *file* argument is supplied, it must be either a :term:`file object` |
| 163 | opened for binary writing, or the name of an on-disk file to be written to. |
| 164 | The method will then write any data returned by the server (except for the |
| 165 | response line and the terminating dot) to the file; any list of lines, |
| 166 | tuples or objects that the method normally returns will be empty. |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 167 | |
| 168 | .. versionchanged:: 3.2 |
| 169 | Many of the following methods have been reworked and fixed, which makes |
| 170 | them incompatible with their 3.1 counterparts. |
| 171 | |
| 172 | |
| 173 | .. method:: NNTP.quit() |
| 174 | |
| 175 | Send a ``QUIT`` command and close the connection. Once this method has been |
| 176 | called, no other methods of the NNTP object should be called. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 177 | |
| 178 | |
| 179 | .. method:: NNTP.getwelcome() |
| 180 | |
| 181 | Return the welcome message sent by the server in reply to the initial |
| 182 | connection. (This message sometimes contains disclaimers or help information |
| 183 | that may be relevant to the user.) |
| 184 | |
| 185 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 186 | .. method:: NNTP.getcapabilities() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 187 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 188 | Return the :rfc:`3977` capabilities advertised by the server, as a |
| 189 | :class:`dict` instance mapping capability names to (possibly empty) lists |
| 190 | of values. On legacy servers which don't understand the ``CAPABILITIES`` |
| 191 | command, an empty dictionary is returned instead. |
| 192 | |
| 193 | >>> s = NNTP('news.gmane.org') |
| 194 | >>> 'POST' in s.getcapabilities() |
| 195 | True |
| 196 | |
| 197 | .. versionadded:: 3.2 |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 198 | |
| 199 | |
Antoine Pitrou | 1cb121e | 2010-11-09 18:54:37 +0000 | [diff] [blame] | 200 | .. method:: NNTP.login(user=None, password=None, usenetrc=True) |
| 201 | |
| 202 | Send ``AUTHINFO`` commands with the user name and password. If *user* |
| 203 | and *password* are None and *usenetrc* is True, credentials from |
| 204 | ``~/.netrc`` will be used if possible. |
| 205 | |
| 206 | Unless intentionally delayed, login is normally performed during the |
| 207 | :class:`NNTP` object initialization and separately calling this function |
| 208 | is unnecessary. To force authentication to be delayed, you must not set |
| 209 | *user* or *password* when creating the object, and must set *usenetrc* to |
| 210 | False. |
| 211 | |
| 212 | .. versionadded:: 3.2 |
| 213 | |
| 214 | |
| 215 | .. method:: NNTP.starttls(ssl_context=None) |
| 216 | |
| 217 | Send a ``STARTTLS`` command. The *ssl_context* argument is optional |
| 218 | and should be a :class:`ssl.SSLContext` object. This will enable |
| 219 | encryption on the NNTP connection. |
| 220 | |
| 221 | Note that this may not be done after authentication information has |
| 222 | been transmitted, and authentication occurs by default if possible during a |
| 223 | :class:`NNTP` object initialization. See :meth:`NNTP.login` for information |
| 224 | on suppressing this behavior. |
| 225 | |
| 226 | .. versionadded:: 3.2 |
| 227 | |
| 228 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 229 | .. method:: NNTP.newgroups(date, *, file=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 230 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 231 | Send a ``NEWGROUPS`` command. The *date* argument should be a |
| 232 | :class:`datetime.date` or :class:`datetime.datetime` object. |
| 233 | Return a pair ``(response, groups)`` where *groups* is a list representing |
| 234 | the groups that are new since the given *date*. If *file* is supplied, |
| 235 | though, then *groups* will be empty. |
| 236 | |
| 237 | >>> from datetime import date, timedelta |
| 238 | >>> resp, groups = s.newgroups(date.today() - timedelta(days=3)) |
| 239 | >>> len(groups) |
| 240 | 85 |
| 241 | >>> groups[0] |
| 242 | GroupInfo(group='gmane.network.tor.devel', last='4', first='1', flag='m') |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 243 | |
| 244 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 245 | .. method:: NNTP.newnews(group, date, *, file=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 246 | |
| 247 | Send a ``NEWNEWS`` command. Here, *group* is a group name or ``'*'``, and |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 248 | *date* has the same meaning as for :meth:`newgroups`. Return a pair |
| 249 | ``(response, articles)`` where *articles* is a list of message ids. |
| 250 | |
| 251 | This command is frequently disabled by NNTP server administrators. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 252 | |
| 253 | |
Antoine Pitrou | 08eeada | 2010-11-04 21:36:15 +0000 | [diff] [blame] | 254 | .. method:: NNTP.list(group_pattern=None, *, file=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 255 | |
Antoine Pitrou | 08eeada | 2010-11-04 21:36:15 +0000 | [diff] [blame] | 256 | Send a ``LIST`` or ``LIST ACTIVE`` command. Return a pair |
| 257 | ``(response, list)`` where *list* is a list of tuples representing all |
| 258 | the groups available from this NNTP server, optionally matching the |
| 259 | pattern string *group_pattern*. Each tuple has the form |
| 260 | ``(group, last, first, flag)``, where *group* is a group name, *last* |
| 261 | and *first* are the last and first article numbers, and *flag* usually |
| 262 | takes one of these values: |
Antoine Pitrou | 7dd1af0 | 2010-11-03 18:32:54 +0000 | [diff] [blame] | 263 | |
| 264 | * ``y``: Local postings and articles from peers are allowed. |
| 265 | * ``m``: The group is moderated and all postings must be approved. |
| 266 | * ``n``: No local postings are allowed, only articles from peers. |
| 267 | * ``j``: Articles from peers are filed in the junk group instead. |
| 268 | * ``x``: No local postings, and articles from peers are ignored. |
| 269 | * ``=foo.bar``: Articles are filed in the ``foo.bar`` group instead. |
| 270 | |
| 271 | If *flag* has another value, then the status of the newsgroup should be |
| 272 | considered unknown. |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 273 | |
Antoine Pitrou | 08eeada | 2010-11-04 21:36:15 +0000 | [diff] [blame] | 274 | This command can return very large results, especially if *group_pattern* |
| 275 | is not specified. It is best to cache the results offline unless you |
| 276 | really need to refresh them. |
| 277 | |
| 278 | .. versionchanged:: 3.2 |
| 279 | *group_pattern* was added. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 280 | |
| 281 | |
| 282 | .. method:: NNTP.descriptions(grouppattern) |
| 283 | |
| 284 | Send a ``LIST NEWSGROUPS`` command, where *grouppattern* is a wildmat string as |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 285 | specified in :rfc:`3977` (it's essentially the same as DOS or UNIX shell wildcard |
| 286 | strings). Return a pair ``(response, descriptions)``, where *descriptions* |
| 287 | is a dictionary mapping group names to textual descriptions. |
| 288 | |
| 289 | >>> resp, descs = s.descriptions('gmane.comp.python.*') |
| 290 | >>> len(descs) |
| 291 | 295 |
| 292 | >>> descs.popitem() |
| 293 | ('gmane.comp.python.bio.general', 'BioPython discussion list (Moderated)') |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 294 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 295 | |
| 296 | .. method:: NNTP.description(group) |
| 297 | |
| 298 | Get a description for a single group *group*. If more than one group matches |
| 299 | (if 'group' is a real wildmat string), return the first match. If no group |
| 300 | matches, return an empty string. |
| 301 | |
| 302 | This elides the response code from the server. If the response code is needed, |
| 303 | use :meth:`descriptions`. |
| 304 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 305 | |
| 306 | .. method:: NNTP.group(name) |
| 307 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 308 | Send a ``GROUP`` command, where *name* is the group name. The group is |
| 309 | selected as the current group, if it exists. Return a tuple |
| 310 | ``(response, count, first, last, name)`` where *count* is the (estimated) |
| 311 | number of articles in the group, *first* is the first article number in |
| 312 | the group, *last* is the last article number in the group, and *name* |
| 313 | is the group name. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 314 | |
| 315 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 316 | .. method:: NNTP.over(message_spec, *, file=None) |
| 317 | |
| 318 | Send a ``OVER`` command, or a ``XOVER`` command on legacy servers. |
| 319 | *message_spec* can be either a string representing a message id, or |
| 320 | a ``(first, last)`` tuple of numbers indicating a range of articles in |
| 321 | the current group, or a ``(first, None)`` tuple indicating a range of |
| 322 | articles starting from *first* to the last article in the current group, |
| 323 | or :const:`None` to select the current article in the current group. |
| 324 | |
| 325 | Return a pair ``(response, overviews)``. *overviews* is a list of |
| 326 | ``(article_number, overview)`` tuples, one for each article selected |
| 327 | by *message_spec*. Each *overview* is a dictionary with the same number |
| 328 | of items, but this number depends on the server. These items are either |
| 329 | message headers (the key is then the lower-cased header name) or metadata |
| 330 | items (the key is then the metadata name prepended with ``":"``). The |
| 331 | following items are guaranteed to be present by the NNTP specification: |
| 332 | |
| 333 | * the ``subject``, ``from``, ``date``, ``message-id`` and ``references`` |
| 334 | headers |
| 335 | * the ``:bytes`` metadata: the number of bytes in the entire raw article |
| 336 | (including headers and body) |
| 337 | * the ``:lines`` metadata: the number of lines in the article body |
| 338 | |
Antoine Pitrou | 4103bc0 | 2010-11-03 18:18:43 +0000 | [diff] [blame] | 339 | The value of each item is either a string, or :const:`None` if not present. |
| 340 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 341 | It is advisable to use the :func:`decode_header` function on header |
| 342 | values when they may contain non-ASCII characters:: |
| 343 | |
| 344 | >>> _, _, first, last, _ = s.group('gmane.comp.python.devel') |
| 345 | >>> resp, overviews = s.over((last, last)) |
| 346 | >>> art_num, over = overviews[0] |
| 347 | >>> art_num |
| 348 | 117216 |
| 349 | >>> list(over.keys()) |
| 350 | ['xref', 'from', ':lines', ':bytes', 'references', 'date', 'message-id', 'subject'] |
| 351 | >>> over['from'] |
| 352 | '=?UTF-8?B?Ik1hcnRpbiB2LiBMw7Z3aXMi?= <martin@v.loewis.de>' |
| 353 | >>> nntplib.decode_header(over['from']) |
| 354 | '"Martin v. Löwis" <martin@v.loewis.de>' |
| 355 | |
| 356 | .. versionadded:: 3.2 |
| 357 | |
| 358 | |
| 359 | .. method:: NNTP.help(*, file=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 360 | |
| 361 | Send a ``HELP`` command. Return a pair ``(response, list)`` where *list* is a |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 362 | list of help strings. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 363 | |
| 364 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 365 | .. method:: NNTP.stat(message_spec=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 366 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 367 | Send a ``STAT`` command, where *message_spec* is either a message id |
| 368 | (enclosed in ``'<'`` and ``'>'``) or an article number in the current group. |
| 369 | If *message_spec* is omitted or :const:`None`, the current article in the |
| 370 | current group is considered. Return a triple ``(response, number, id)`` |
| 371 | where *number* is the article number and *id* is the message id. |
| 372 | |
| 373 | >>> _, _, first, last, _ = s.group('gmane.comp.python.devel') |
| 374 | >>> resp, number, message_id = s.stat(first) |
| 375 | >>> number, message_id |
| 376 | (9099, '<20030112190404.GE29873@epoch.metaslash.com>') |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 377 | |
| 378 | |
| 379 | .. method:: NNTP.next() |
| 380 | |
| 381 | Send a ``NEXT`` command. Return as for :meth:`stat`. |
| 382 | |
| 383 | |
| 384 | .. method:: NNTP.last() |
| 385 | |
| 386 | Send a ``LAST`` command. Return as for :meth:`stat`. |
| 387 | |
| 388 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 389 | .. method:: NNTP.article(message_spec=None, *, file=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 390 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 391 | Send an ``ARTICLE`` command, where *message_spec* has the same meaning as |
| 392 | for :meth:`stat`. Return a tuple ``(response, info)`` where *info* |
| 393 | is a :class:`~collections.namedtuple` with three members *number*, |
| 394 | *message_id* and *lines* (in that order). *number* is the article number |
| 395 | in the group (or 0 if the information is not available), *message_id* the |
| 396 | message id as a string, and *lines* a list of lines (without terminating |
| 397 | newlines) comprising the raw message including headers and body. |
| 398 | |
| 399 | >>> resp, info = s.article('<20030112190404.GE29873@epoch.metaslash.com>') |
| 400 | >>> info.number |
| 401 | 0 |
| 402 | >>> info.message_id |
| 403 | '<20030112190404.GE29873@epoch.metaslash.com>' |
| 404 | >>> len(info.lines) |
| 405 | 65 |
| 406 | >>> info.lines[0] |
| 407 | b'Path: main.gmane.org!not-for-mail' |
| 408 | >>> info.lines[1] |
| 409 | b'From: Neal Norwitz <neal@metaslash.com>' |
| 410 | >>> info.lines[-3:] |
| 411 | [b'There is a patch for 2.3 as well as 2.2.', b'', b'Neal'] |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 412 | |
| 413 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 414 | .. method:: NNTP.head(message_spec=None, *, file=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 415 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 416 | Same as :meth:`article()`, but sends a ``HEAD`` command. The *lines* |
| 417 | returned (or written to *file*) will only contain the message headers, not |
| 418 | the body. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 419 | |
| 420 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 421 | .. method:: NNTP.body(message_spec=None, *, file=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 422 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 423 | Same as :meth:`article()`, but sends a ``BODY`` command. The *lines* |
| 424 | returned (or written to *file*) will only contain the message body, not the |
| 425 | headers. |
| 426 | |
| 427 | |
| 428 | .. method:: NNTP.post(data) |
| 429 | |
| 430 | Post an article using the ``POST`` command. The *data* argument is either |
| 431 | a :term:`file object` opened for binary reading, or any iterable of bytes |
| 432 | objects (representing raw lines of the article to be posted). It should |
| 433 | represent a well-formed news article, including the required headers. The |
| 434 | :meth:`post` method automatically escapes lines beginning with ``.`` and |
| 435 | appends the termination line. |
| 436 | |
| 437 | If the method succeeds, the server's response is returned. If the server |
| 438 | refuses posting, a :class:`NNTPReplyError` is raised. |
| 439 | |
| 440 | |
| 441 | .. method:: NNTP.ihave(message_id, data) |
| 442 | |
| 443 | Send an ``IHAVE`` command. *message_id* is the id of the message to send |
| 444 | to the server (enclosed in ``'<'`` and ``'>'``). The *data* parameter |
| 445 | and the return value are the same as for :meth:`post()`. |
| 446 | |
| 447 | |
| 448 | .. method:: NNTP.date() |
| 449 | |
| 450 | Return a pair ``(response, date)``. *date* is a :class:`~datetime.datetime` |
| 451 | object containing the current date and time of the server. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 452 | |
| 453 | |
| 454 | .. method:: NNTP.slave() |
| 455 | |
| 456 | Send a ``SLAVE`` command. Return the server's *response*. |
| 457 | |
| 458 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 459 | .. method:: NNTP.set_debuglevel(level) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 460 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 461 | Set the instance's debugging level. This controls the amount of debugging |
| 462 | output printed. The default, ``0``, produces no debugging output. A value of |
| 463 | ``1`` produces a moderate amount of debugging output, generally a single line |
| 464 | per request or response. A value of ``2`` or higher produces the maximum amount |
| 465 | of debugging output, logging each line sent and received on the connection |
| 466 | (including message text). |
| 467 | |
| 468 | |
| 469 | The following are optional NNTP extensions defined in :rfc:`2980`. Some of |
| 470 | them have been superseded by newer commands in :rfc:`3977`. |
| 471 | |
| 472 | |
| 473 | .. method:: NNTP.xhdr(header, string, *, file=None) |
| 474 | |
| 475 | Send an ``XHDR`` command. The *header* argument is a header keyword, e.g. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 476 | ``'subject'``. The *string* argument should have the form ``'first-last'`` |
| 477 | where *first* and *last* are the first and last article numbers to search. |
| 478 | Return a pair ``(response, list)``, where *list* is a list of pairs ``(id, |
| 479 | text)``, where *id* is an article number (as a string) and *text* is the text of |
| 480 | the requested header for that article. If the *file* parameter is supplied, then |
| 481 | the output of the ``XHDR`` command is stored in a file. If *file* is a string, |
Antoine Pitrou | 11cb961 | 2010-09-15 11:11:28 +0000 | [diff] [blame] | 482 | then the method will open a file with that name, write to it then close it. |
| 483 | If *file* is a :term:`file object`, then it will start calling :meth:`write` on |
| 484 | it to store the lines of the command output. If *file* is supplied, then the |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 485 | returned *list* is an empty list. |
| 486 | |
| 487 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 488 | .. method:: NNTP.xover(start, end, *, file=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 489 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 490 | Send an ``XOVER`` command. *start* and *end* are article numbers |
| 491 | delimiting the range of articles to select. The return value is the |
| 492 | same of for :meth:`over()`. It is recommended to use :meth:`over()` |
| 493 | instead, since it will automatically use the newer ``OVER`` command |
| 494 | if available. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 495 | |
| 496 | |
| 497 | .. method:: NNTP.xpath(id) |
| 498 | |
| 499 | Return a pair ``(resp, path)``, where *path* is the directory path to the |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 500 | article with message ID *id*. Most of the time, this extension is not |
| 501 | enabled by NNTP server administrators. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 502 | |
| 503 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 504 | .. XXX deprecated: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 505 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 506 | .. method:: NNTP.xgtitle(name, *, file=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 507 | |
Antoine Pitrou | 69ab951 | 2010-09-29 15:03:40 +0000 | [diff] [blame] | 508 | Process an ``XGTITLE`` command, returning a pair ``(response, list)``, where |
| 509 | *list* is a list of tuples containing ``(name, title)``. If the *file* parameter |
| 510 | is supplied, then the output of the ``XGTITLE`` command is stored in a file. |
| 511 | If *file* is a string, then the method will open a file with that name, write |
| 512 | to it then close it. If *file* is a :term:`file object`, then it will start |
| 513 | calling :meth:`write` on it to store the lines of the command output. If *file* |
| 514 | is supplied, then the returned *list* is an empty list. This is an optional NNTP |
| 515 | extension, and may not be supported by all servers. |
| 516 | |
| 517 | RFC2980 says "It is suggested that this extension be deprecated". Use |
| 518 | :meth:`descriptions` or :meth:`description` instead. |
| 519 | |
| 520 | |
| 521 | Utility functions |
| 522 | ----------------- |
| 523 | |
| 524 | The module also defines the following utility function: |
| 525 | |
| 526 | |
| 527 | .. function:: decode_header(header_str) |
| 528 | |
| 529 | Decode a header value, un-escaping any escaped non-ASCII characters. |
| 530 | *header_str* must be a :class:`str` object. The unescaped value is |
| 531 | returned. Using this function is recommended to display some headers |
| 532 | in a human readable form:: |
| 533 | |
| 534 | >>> decode_header("Some subject") |
| 535 | 'Some subject' |
| 536 | >>> decode_header("=?ISO-8859-15?Q?D=E9buter_en_Python?=") |
| 537 | 'Débuter en Python' |
| 538 | >>> decode_header("Re: =?UTF-8?B?cHJvYmzDqG1lIGRlIG1hdHJpY2U=?=") |
| 539 | 'Re: problème de matrice' |