Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 1 | # An NNTP client class. Based on RFC 977: Network News Transfer |
| 2 | # Protocol, by Brian Kantor and Phil Lapsley. |
| 3 | |
| 4 | |
| 5 | # Example: |
| 6 | # |
Guido van Rossum | 18fc569 | 1992-11-26 09:17:19 +0000 | [diff] [blame] | 7 | # >>> from nntplib import NNTP |
Guido van Rossum | 8421c4e | 1995-09-22 00:52:38 +0000 | [diff] [blame] | 8 | # >>> s = NNTP('news') |
| 9 | # >>> resp, count, first, last, name = s.group('comp.lang.python') |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 10 | # >>> print 'Group', name, 'has', count, 'articles, range', first, 'to', last |
Guido van Rossum | 8421c4e | 1995-09-22 00:52:38 +0000 | [diff] [blame] | 11 | # Group comp.lang.python has 51 articles, range 5770 to 5821 |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 12 | # >>> resp, subs = s.xhdr('subject', first + '-' + last) |
| 13 | # >>> resp = s.quit() |
| 14 | # >>> |
| 15 | # |
| 16 | # Here 'resp' is the server response line. |
| 17 | # Error responses are turned into exceptions. |
| 18 | # |
| 19 | # To post an article from a file: |
| 20 | # >>> f = open(filename, 'r') # file containing article, including header |
| 21 | # >>> resp = s.post(f) |
| 22 | # >>> |
| 23 | # |
| 24 | # For descriptions of all methods, read the comments in the code below. |
| 25 | # Note that all arguments and return values representing article numbers |
| 26 | # are strings, not numbers, since they are rarely used for calculations. |
| 27 | |
Guido van Rossum | 8421c4e | 1995-09-22 00:52:38 +0000 | [diff] [blame] | 28 | # (xover, xgtitle, xpath, date methods by Kevan Heydon) |
| 29 | |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 30 | |
| 31 | # Imports |
Guido van Rossum | 9694fca | 1997-10-22 21:00:49 +0000 | [diff] [blame] | 32 | import re |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 33 | import socket |
| 34 | import string |
| 35 | |
| 36 | |
Guido van Rossum | 18fc569 | 1992-11-26 09:17:19 +0000 | [diff] [blame] | 37 | # Exception raised when an error or invalid response is received |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 38 | |
Guido van Rossum | 18fc569 | 1992-11-26 09:17:19 +0000 | [diff] [blame] | 39 | error_reply = 'nntplib.error_reply' # unexpected [123]xx reply |
| 40 | error_temp = 'nntplib.error_temp' # 4xx errors |
| 41 | error_perm = 'nntplib.error_perm' # 5xx errors |
| 42 | error_proto = 'nntplib.error_proto' # response does not begin with [1-5] |
Guido van Rossum | 8421c4e | 1995-09-22 00:52:38 +0000 | [diff] [blame] | 43 | error_data = 'nntplib.error_data' # error in response data |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 44 | |
| 45 | |
| 46 | # Standard port used by NNTP servers |
| 47 | NNTP_PORT = 119 |
| 48 | |
| 49 | |
| 50 | # Response numbers that are followed by additional text (e.g. article) |
Guido van Rossum | 8421c4e | 1995-09-22 00:52:38 +0000 | [diff] [blame] | 51 | LONGRESP = ['100', '215', '220', '221', '222', '224', '230', '231', '282'] |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 52 | |
| 53 | |
| 54 | # Line terminators (we always output CRLF, but accept any of CRLF, CR, LF) |
| 55 | CRLF = '\r\n' |
| 56 | |
| 57 | |
| 58 | # The class itself |
| 59 | |
| 60 | class NNTP: |
| 61 | |
| 62 | # Initialize an instance. Arguments: |
| 63 | # - host: hostname to connect to |
| 64 | # - port: port to connect to (default the standard NNTP port) |
| 65 | |
Guido van Rossum | dd65975 | 1997-10-20 23:29:44 +0000 | [diff] [blame] | 66 | def __init__(self, host, port = NNTP_PORT, user=None, password=None): |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 67 | self.host = host |
| 68 | self.port = port |
| 69 | self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
| 70 | self.sock.connect(self.host, self.port) |
Jack Jansen | 2bb57b8 | 1996-02-14 16:06:24 +0000 | [diff] [blame] | 71 | self.file = self.sock.makefile('rb') |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 72 | self.debugging = 0 |
| 73 | self.welcome = self.getresp() |
Guido van Rossum | dd65975 | 1997-10-20 23:29:44 +0000 | [diff] [blame] | 74 | if user: |
Guido van Rossum | 8ca8420 | 1998-03-26 20:56:10 +0000 | [diff] [blame] | 75 | resp = self.shortcmd('authinfo user '+user) |
| 76 | if resp[:3] == '381': |
| 77 | if not password: |
| 78 | raise error_reply, resp |
| 79 | else: |
| 80 | resp = self.shortcmd( |
| 81 | 'authinfo pass '+password) |
| 82 | if resp[:3] != '281': |
| 83 | raise error_perm, resp |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 84 | |
| 85 | # Get the welcome message from the server |
Guido van Rossum | 7bc817d | 1993-12-17 15:25:27 +0000 | [diff] [blame] | 86 | # (this is read and squirreled away by __init__()). |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 87 | # If the response code is 200, posting is allowed; |
| 88 | # if it 201, posting is not allowed |
| 89 | |
| 90 | def getwelcome(self): |
| 91 | if self.debugging: print '*welcome*', `self.welcome` |
| 92 | return self.welcome |
| 93 | |
| 94 | # Set the debugging level. Argument level means: |
| 95 | # 0: no debugging output (default) |
| 96 | # 1: print commands and responses but not body text etc. |
| 97 | # 2: also print raw lines read and sent before stripping CR/LF |
| 98 | |
Guido van Rossum | cf5394f | 1995-03-30 10:42:34 +0000 | [diff] [blame] | 99 | def set_debuglevel(self, level): |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 100 | self.debugging = level |
Guido van Rossum | cf5394f | 1995-03-30 10:42:34 +0000 | [diff] [blame] | 101 | debug = set_debuglevel |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 102 | |
| 103 | # Internal: send one line to the server, appending CRLF |
| 104 | def putline(self, line): |
| 105 | line = line + CRLF |
| 106 | if self.debugging > 1: print '*put*', `line` |
| 107 | self.sock.send(line) |
| 108 | |
| 109 | # Internal: send one command to the server (through putline()) |
| 110 | def putcmd(self, line): |
| 111 | if self.debugging: print '*cmd*', `line` |
| 112 | self.putline(line) |
| 113 | |
| 114 | # Internal: return one line from the server, stripping CRLF. |
| 115 | # Raise EOFError if the connection is closed |
| 116 | def getline(self): |
| 117 | line = self.file.readline() |
| 118 | if self.debugging > 1: |
| 119 | print '*get*', `line` |
| 120 | if not line: raise EOFError |
| 121 | if line[-2:] == CRLF: line = line[:-2] |
| 122 | elif line[-1:] in CRLF: line = line[:-1] |
| 123 | return line |
| 124 | |
| 125 | # Internal: get a response from the server. |
| 126 | # Raise various errors if the response indicates an error |
| 127 | def getresp(self): |
| 128 | resp = self.getline() |
| 129 | if self.debugging: print '*resp*', `resp` |
| 130 | c = resp[:1] |
| 131 | if c == '4': |
Guido van Rossum | 18fc569 | 1992-11-26 09:17:19 +0000 | [diff] [blame] | 132 | raise error_temp, resp |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 133 | if c == '5': |
Guido van Rossum | 18fc569 | 1992-11-26 09:17:19 +0000 | [diff] [blame] | 134 | raise error_perm, resp |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 135 | if c not in '123': |
Guido van Rossum | 18fc569 | 1992-11-26 09:17:19 +0000 | [diff] [blame] | 136 | raise error_proto, resp |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 137 | return resp |
| 138 | |
| 139 | # Internal: get a response plus following text from the server. |
| 140 | # Raise various errors if the response indicates an error |
| 141 | def getlongresp(self): |
| 142 | resp = self.getresp() |
| 143 | if resp[:3] not in LONGRESP: |
| 144 | raise error_reply, resp |
| 145 | list = [] |
| 146 | while 1: |
| 147 | line = self.getline() |
| 148 | if line == '.': |
| 149 | break |
Guido van Rossum | e2ed9df | 1997-08-26 23:26:18 +0000 | [diff] [blame] | 150 | if line[:2] == '..': |
| 151 | line = line[1:] |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 152 | list.append(line) |
| 153 | return resp, list |
| 154 | |
| 155 | # Internal: send a command and get the response |
| 156 | def shortcmd(self, line): |
| 157 | self.putcmd(line) |
| 158 | return self.getresp() |
| 159 | |
| 160 | # Internal: send a command and get the response plus following text |
| 161 | def longcmd(self, line): |
| 162 | self.putcmd(line) |
| 163 | return self.getlongresp() |
| 164 | |
| 165 | # Process a NEWGROUPS command. Arguments: |
| 166 | # - date: string 'yymmdd' indicating the date |
| 167 | # - time: string 'hhmmss' indicating the time |
| 168 | # Return: |
| 169 | # - resp: server response if succesful |
| 170 | # - list: list of newsgroup names |
| 171 | |
| 172 | def newgroups(self, date, time): |
| 173 | return self.longcmd('NEWGROUPS ' + date + ' ' + time) |
| 174 | |
| 175 | # Process a NEWNEWS command. Arguments: |
| 176 | # - group: group name or '*' |
| 177 | # - date: string 'yymmdd' indicating the date |
| 178 | # - time: string 'hhmmss' indicating the time |
| 179 | # Return: |
| 180 | # - resp: server response if succesful |
| 181 | # - list: list of article ids |
| 182 | |
| 183 | def newnews(self, group, date, time): |
| 184 | cmd = 'NEWNEWS ' + group + ' ' + date + ' ' + time |
| 185 | return self.longcmd(cmd) |
| 186 | |
| 187 | # Process a LIST command. Return: |
| 188 | # - resp: server response if succesful |
Guido van Rossum | be9f212 | 1995-01-10 10:35:55 +0000 | [diff] [blame] | 189 | # - list: list of (group, last, first, flag) (strings) |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 190 | |
| 191 | def list(self): |
| 192 | resp, list = self.longcmd('LIST') |
| 193 | for i in range(len(list)): |
Guido van Rossum | be9f212 | 1995-01-10 10:35:55 +0000 | [diff] [blame] | 194 | # Parse lines into "group last first flag" |
Guido van Rossum | c699553 | 1997-03-14 04:18:20 +0000 | [diff] [blame] | 195 | list[i] = tuple(string.split(list[i])) |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 196 | return resp, list |
| 197 | |
| 198 | # Process a GROUP command. Argument: |
| 199 | # - group: the group name |
| 200 | # Returns: |
| 201 | # - resp: server response if succesful |
| 202 | # - count: number of articles (string) |
| 203 | # - first: first article number (string) |
| 204 | # - last: last article number (string) |
| 205 | # - name: the group name |
| 206 | |
| 207 | def group(self, name): |
| 208 | resp = self.shortcmd('GROUP ' + name) |
| 209 | if resp[:3] <> '211': |
| 210 | raise error_reply, resp |
| 211 | words = string.split(resp) |
| 212 | count = first = last = 0 |
| 213 | n = len(words) |
| 214 | if n > 1: |
| 215 | count = words[1] |
| 216 | if n > 2: |
| 217 | first = words[2] |
| 218 | if n > 3: |
| 219 | last = words[3] |
| 220 | if n > 4: |
| 221 | name = string.lower(words[4]) |
| 222 | return resp, count, first, last, name |
| 223 | |
| 224 | # Process a HELP command. Returns: |
| 225 | # - resp: server response if succesful |
| 226 | # - list: list of strings |
| 227 | |
| 228 | def help(self): |
| 229 | return self.longcmd('HELP') |
| 230 | |
| 231 | # Internal: parse the response of a STAT, NEXT or LAST command |
| 232 | def statparse(self, resp): |
| 233 | if resp[:2] <> '22': |
| 234 | raise error_reply, resp |
| 235 | words = string.split(resp) |
| 236 | nr = 0 |
| 237 | id = '' |
| 238 | n = len(words) |
| 239 | if n > 1: |
| 240 | nr = words[1] |
| 241 | if n > 2: |
Guido van Rossum | 98c17b3 | 1998-12-21 18:51:23 +0000 | [diff] [blame] | 242 | id = words[2] |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 243 | return resp, nr, id |
| 244 | |
| 245 | # Internal: process a STAT, NEXT or LAST command |
| 246 | def statcmd(self, line): |
| 247 | resp = self.shortcmd(line) |
| 248 | return self.statparse(resp) |
| 249 | |
| 250 | # Process a STAT command. Argument: |
| 251 | # - id: article number or message id |
| 252 | # Returns: |
| 253 | # - resp: server response if succesful |
| 254 | # - nr: the article number |
| 255 | # - id: the article id |
| 256 | |
| 257 | def stat(self, id): |
| 258 | return self.statcmd('STAT ' + id) |
| 259 | |
| 260 | # Process a NEXT command. No arguments. Return as for STAT |
| 261 | |
| 262 | def next(self): |
| 263 | return self.statcmd('NEXT') |
| 264 | |
| 265 | # Process a LAST command. No arguments. Return as for STAT |
| 266 | |
| 267 | def last(self): |
| 268 | return self.statcmd('LAST') |
| 269 | |
| 270 | # Internal: process a HEAD, BODY or ARTICLE command |
| 271 | def artcmd(self, line): |
| 272 | resp, list = self.longcmd(line) |
| 273 | resp, nr, id = self.statparse(resp) |
| 274 | return resp, nr, id, list |
| 275 | |
| 276 | # Process a HEAD command. Argument: |
| 277 | # - id: article number or message id |
| 278 | # Returns: |
| 279 | # - resp: server response if succesful |
Guido van Rossum | 0f91183 | 1998-06-30 14:50:26 +0000 | [diff] [blame] | 280 | # - nr: article number |
| 281 | # - id: message id |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 282 | # - list: the lines of the article's header |
| 283 | |
| 284 | def head(self, id): |
| 285 | return self.artcmd('HEAD ' + id) |
| 286 | |
| 287 | # Process a BODY command. Argument: |
| 288 | # - id: article number or message id |
| 289 | # Returns: |
| 290 | # - resp: server response if succesful |
Guido van Rossum | 0f91183 | 1998-06-30 14:50:26 +0000 | [diff] [blame] | 291 | # - nr: article number |
| 292 | # - id: message id |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 293 | # - list: the lines of the article's body |
| 294 | |
| 295 | def body(self, id): |
| 296 | return self.artcmd('BODY ' + id) |
| 297 | |
| 298 | # Process an ARTICLE command. Argument: |
| 299 | # - id: article number or message id |
| 300 | # Returns: |
| 301 | # - resp: server response if succesful |
Guido van Rossum | 0f91183 | 1998-06-30 14:50:26 +0000 | [diff] [blame] | 302 | # - nr: article number |
| 303 | # - id: message id |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 304 | # - list: the lines of the article |
| 305 | |
| 306 | def article(self, id): |
| 307 | return self.artcmd('ARTICLE ' + id) |
| 308 | |
| 309 | # Process a SLAVE command. Returns: |
| 310 | # - resp: server response if succesful |
| 311 | |
| 312 | def slave(self): |
| 313 | return self.shortcmd('SLAVE') |
| 314 | |
| 315 | # Process an XHDR command (optional server extension). Arguments: |
| 316 | # - hdr: the header type (e.g. 'subject') |
| 317 | # - str: an article nr, a message id, or a range nr1-nr2 |
| 318 | # Returns: |
| 319 | # - resp: server response if succesful |
| 320 | # - list: list of (nr, value) strings |
| 321 | |
| 322 | def xhdr(self, hdr, str): |
Guido van Rossum | 9694fca | 1997-10-22 21:00:49 +0000 | [diff] [blame] | 323 | pat = re.compile('^([0-9]+) ?(.*)\n?') |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 324 | resp, lines = self.longcmd('XHDR ' + hdr + ' ' + str) |
| 325 | for i in range(len(lines)): |
| 326 | line = lines[i] |
Guido van Rossum | 9694fca | 1997-10-22 21:00:49 +0000 | [diff] [blame] | 327 | m = pat.match(line) |
| 328 | if m: |
| 329 | lines[i] = m.group(1, 2) |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 330 | return resp, lines |
| 331 | |
Guido van Rossum | 8421c4e | 1995-09-22 00:52:38 +0000 | [diff] [blame] | 332 | # Process an XOVER command (optional server extension) Arguments: |
| 333 | # - start: start of range |
| 334 | # - end: end of range |
| 335 | # Returns: |
| 336 | # - resp: server response if succesful |
| 337 | # - list: list of (art-nr, subject, poster, date, id, refrences, size, lines) |
| 338 | |
| 339 | def xover(self,start,end): |
| 340 | resp, lines = self.longcmd('XOVER ' + start + '-' + end) |
| 341 | xover_lines = [] |
| 342 | for line in lines: |
| 343 | elem = string.splitfields(line,"\t") |
| 344 | try: |
Guido van Rossum | c3fb88b | 1997-07-17 15:21:52 +0000 | [diff] [blame] | 345 | xover_lines.append((elem[0], |
| 346 | elem[1], |
| 347 | elem[2], |
| 348 | elem[3], |
| 349 | elem[4], |
| 350 | string.split(elem[5]), |
| 351 | elem[6], |
| 352 | elem[7])) |
Guido van Rossum | 8421c4e | 1995-09-22 00:52:38 +0000 | [diff] [blame] | 353 | except IndexError: |
| 354 | raise error_data,line |
| 355 | return resp,xover_lines |
| 356 | |
| 357 | # Process an XGTITLE command (optional server extension) Arguments: |
| 358 | # - group: group name wildcard (i.e. news.*) |
| 359 | # Returns: |
| 360 | # - resp: server response if succesful |
| 361 | # - list: list of (name,title) strings |
| 362 | |
| 363 | def xgtitle(self, group): |
Guido van Rossum | 9694fca | 1997-10-22 21:00:49 +0000 | [diff] [blame] | 364 | line_pat = re.compile("^([^ \t]+)[ \t]+(.*)$") |
Guido van Rossum | 8421c4e | 1995-09-22 00:52:38 +0000 | [diff] [blame] | 365 | resp, raw_lines = self.longcmd('XGTITLE ' + group) |
| 366 | lines = [] |
| 367 | for raw_line in raw_lines: |
Guido van Rossum | 9694fca | 1997-10-22 21:00:49 +0000 | [diff] [blame] | 368 | match = line_pat.search(string.strip(raw_line)) |
| 369 | if match: |
| 370 | lines.append(match.group(1, 2)) |
Guido van Rossum | 8421c4e | 1995-09-22 00:52:38 +0000 | [diff] [blame] | 371 | return resp, lines |
| 372 | |
| 373 | # Process an XPATH command (optional server extension) Arguments: |
| 374 | # - id: Message id of article |
| 375 | # Returns: |
| 376 | # resp: server response if succesful |
| 377 | # path: directory path to article |
| 378 | |
| 379 | def xpath(self,id): |
| 380 | resp = self.shortcmd("XPATH " + id) |
| 381 | if resp[:3] <> '223': |
| 382 | raise error_reply, resp |
| 383 | try: |
| 384 | [resp_num, path] = string.split(resp) |
| 385 | except ValueError: |
| 386 | raise error_reply, resp |
| 387 | else: |
| 388 | return resp, path |
| 389 | |
| 390 | # Process the DATE command. Arguments: |
| 391 | # None |
| 392 | # Returns: |
| 393 | # resp: server response if succesful |
| 394 | # date: Date suitable for newnews/newgroups commands etc. |
| 395 | # time: Time suitable for newnews/newgroups commands etc. |
| 396 | |
| 397 | def date (self): |
| 398 | resp = self.shortcmd("DATE") |
| 399 | if resp[:3] <> '111': |
| 400 | raise error_reply, resp |
| 401 | elem = string.split(resp) |
| 402 | if len(elem) != 2: |
| 403 | raise error_data, resp |
| 404 | date = elem[1][2:8] |
| 405 | time = elem[1][-6:] |
| 406 | if len(date) != 6 or len(time) != 6: |
| 407 | raise error_data, resp |
| 408 | return resp, date, time |
| 409 | |
| 410 | |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 411 | # Process a POST command. Arguments: |
| 412 | # - f: file containing the article |
| 413 | # Returns: |
| 414 | # - resp: server response if succesful |
| 415 | |
| 416 | def post(self, f): |
| 417 | resp = self.shortcmd('POST') |
| 418 | # Raises error_??? if posting is not allowed |
| 419 | if resp[0] <> '3': |
| 420 | raise error_reply, resp |
| 421 | while 1: |
| 422 | line = f.readline() |
| 423 | if not line: |
| 424 | break |
| 425 | if line[-1] == '\n': |
| 426 | line = line[:-1] |
Guido van Rossum | e2ed9df | 1997-08-26 23:26:18 +0000 | [diff] [blame] | 427 | if line[:1] == '.': |
| 428 | line = '.' + line |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 429 | self.putline(line) |
| 430 | self.putline('.') |
| 431 | return self.getresp() |
| 432 | |
| 433 | # Process an IHAVE command. Arguments: |
| 434 | # - id: message-id of the article |
| 435 | # - f: file containing the article |
| 436 | # Returns: |
| 437 | # - resp: server response if succesful |
| 438 | # Note that if the server refuses the article an exception is raised |
| 439 | |
| 440 | def ihave(self, id, f): |
| 441 | resp = self.shortcmd('IHAVE ' + id) |
Guido van Rossum | 18fc569 | 1992-11-26 09:17:19 +0000 | [diff] [blame] | 442 | # Raises error_??? if the server already has it |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 443 | if resp[0] <> '3': |
| 444 | raise error_reply, resp |
| 445 | while 1: |
| 446 | line = f.readline() |
| 447 | if not line: |
| 448 | break |
| 449 | if line[-1] == '\n': |
| 450 | line = line[:-1] |
Guido van Rossum | e2ed9df | 1997-08-26 23:26:18 +0000 | [diff] [blame] | 451 | if line[:1] == '.': |
| 452 | line = '.' + line |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 453 | self.putline(line) |
| 454 | self.putline('.') |
| 455 | return self.getresp() |
| 456 | |
| 457 | # Process a QUIT command and close the socket. Returns: |
| 458 | # - resp: server response if succesful |
| 459 | |
| 460 | def quit(self): |
| 461 | resp = self.shortcmd('QUIT') |
| 462 | self.file.close() |
| 463 | self.sock.close() |
| 464 | del self.file, self.sock |
| 465 | return resp |
Guido van Rossum | e2ed9df | 1997-08-26 23:26:18 +0000 | [diff] [blame] | 466 | |
| 467 | |
| 468 | # Minimal test function |
| 469 | def _test(): |
| 470 | s = NNTP('news') |
| 471 | resp, count, first, last, name = s.group('comp.lang.python') |
| 472 | print resp |
| 473 | print 'Group', name, 'has', count, 'articles, range', first, 'to', last |
| 474 | resp, subs = s.xhdr('subject', first + '-' + last) |
| 475 | print resp |
| 476 | for item in subs: |
| 477 | print "%7s %s" % item |
| 478 | resp = s.quit() |
| 479 | print resp |
| 480 | |
| 481 | |
| 482 | # Run the test when run as a script |
| 483 | if __name__ == '__main__': |
| 484 | _test() |