%PDF- %PDF-
Direktori : /usr/local/lib/python3.8/__pycache__/ |
Current File : //usr/local/lib/python3.8/__pycache__/nntplib.cpython-38.pyc |
U na @ s d Z ddlZddlZddlZddlZddlZddlZzddlZW n ek rX dZ Y nX dZ ddl mZ ddlm Z ddd d ddd dgZdZG 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 Zd7d8 Z dmd9d:Z!dnd;d<Z"dod=d>Z#e rd?d@ Z$G dAdB dBZ%G dCd de%Z&e rG 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,/ Z0e0j1Z1e0jse1dTkr|eZ1e&e0j2e1d`Z3ne1dTkreZ1e'e0j2e1d`Z3e34 Z5dae5kre36 e37e0j7\Z8Z9Z:Z;Z<e=dbe<dce9dde:dee; dfdg Z>e?e.e;e0j@ dh Z:e3Ae:e;\Z8ZBeBD ]Z\ZCZDeeDd% Edidhd ZFeeDd$ ZGe.eDd* ZHe=djIeCe>eFdke>eGdleH q e3J 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>