File: //usr/lib/python3.7/__pycache__/nntplib.cpython-37.pyc
B
{aP @ s d Z ddlZddlZddlZddlZddlZyddlZW n ek
rP dZY nX dZddl m
Z ddlmZ ddd d
ddd
dgZ
dZG dd deZG dd d eZG dd
d
eZG dd deZG dd deZG dd
d
eZdZdZddddddddd d!d"d#hZd$d%d&d'd(d)d*gZd)d*d+Zd,Zed-d.d/d0d1gZed2d3d4d5gZd6d Z
d7d8 Zdmd9d:Z dnd;d<Z!dod=d>Z"erd?d@ Z#G dAdB dBZ$G dCd de$Z%erG dDdE dEe$Z&e
'dE e(dFkrddl)Z)e)j*dGdHZ+e+j,dIdJdKdLdM e+j,dNdOdPdQdM e+j,dRdSdTe-dUeef dV e+j,dWdXdYe-dZdV e+j,d[d\d]dd^d_ e+. Z/e/j0Z0e/jse0dTkrteZ0e%e/j1e0d`Z2ne0dTkreZ0e&e/j1e0d`Z2e23 Z4dae4kre25 e26e/j6\Z7Z8Z9Z:Z;e<dbe;dce8dde9dee: dfdg Z=e>e-e:e/j? dh Z9e2@e9e:\Z7ZAxbeAD ]Z\ZBZCe
eCd% Ddidhd ZEe
eCd$ ZFe-eCd* ZGe<djHeBe=eEdke=eFdleG qW e2I dS )pa An NNTP client class based on:
- RFC 977: Network News Transfer Protocol
- RFC 2980: Common NNTP Extensions
- RFC 3977: Network News Transfer Protocol (version 2)
Example:
>>> from nntplib import NNTP
>>> s = NNTP('news')
>>> resp, count, first, last, name = s.group('comp.lang.python')
>>> print('Group', name, 'has', count, 'articles, range', first, 'to', last)
Group comp.lang.python has 51 articles, range 5770 to 5821
>>> resp, subs = s.xhdr('subject', '{0}-{1}'.format(first, last))
>>> resp = s.quit()
>>>
Here 'resp' is the server response line.
Error responses are turned into exceptions.
To post an article from a file:
>>> f = open(filename, 'rb') # file containing article, including header
>>> resp = s.post(f)
>>>
For descriptions of all methods, read the comments in the code below.
Note that all arguments and return values representing article numbers
are strings, not numbers, since they are rarely used for calculations.
NFT)
decode_header)_GLOBAL_DEFAULT_TIMEOUTNNTP NNTPErrorNNTPReplyErrorNNTPTemporaryErrorNNTPPermanentErrorNNTPProtocolError
NNTPDataErrorr i c @ s e Zd ZdZdd ZdS )r z%Base class for all nntplib exceptionsc G s>