Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3.6 /
site-packages /
requests /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2021-09-16 10:31
packages
[ DIR ]
drwxr-xr-x
2021-09-16 10:31
__init__.py
2.15
KB
-rw-r--r--
2017-05-10 10:04
_internal_utils.py
1.07
KB
-rw-r--r--
2017-05-10 10:04
adapters.py
20.26
KB
-rw-r--r--
2017-05-10 10:04
api.py
6.09
KB
-rw-r--r--
2017-05-10 10:04
auth.py
9.51
KB
-rw-r--r--
2017-05-10 10:04
certs.py
661
B
-rw-r--r--
2019-11-29 17:36
compat.py
1.78
KB
-rw-r--r--
2019-11-29 17:36
cookies.py
17.78
KB
-rw-r--r--
2017-05-10 10:04
exceptions.py
2.91
KB
-rw-r--r--
2017-05-10 10:04
hooks.py
767
B
-rw-r--r--
2017-05-10 10:04
models.py
33.27
KB
-rw-r--r--
2017-05-10 10:04
sessions.py
28
KB
-rw-r--r--
2019-11-29 17:36
status_codes.py
3.25
KB
-rw-r--r--
2017-05-10 10:04
structures.py
2.94
KB
-rw-r--r--
2017-05-10 10:04
utils.py
26.95
KB
-rw-r--r--
2017-05-10 10:04
Save
Rename
# -*- coding: utf-8 -*- """ requests.compat ~~~~~~~~~~~~~~~ This module handles import compatibility issues between Python 2 and Python 3. """ from .packages import chardet import sys # ------- # Pythons # ------- # Syntax sugar. _ver = sys.version_info #: Python 2.x? is_py2 = (_ver[0] == 2) #: Python 3.x? is_py3 = (_ver[0] == 3) try: import simplejson as json except (ImportError, SyntaxError): # simplejson does not support Python 3.2, it throws a SyntaxError # because of u'...' Unicode literals. import json # --------- # Specifics # --------- if is_py2: from urllib import ( quote, unquote, quote_plus, unquote_plus, urlencode, getproxies, proxy_bypass, proxy_bypass_environment, getproxies_environment) from urlparse import urlparse, urlunparse, urljoin, urlsplit, urldefrag from urllib2 import parse_http_list import cookielib from Cookie import Morsel from StringIO import StringIO try: from collections import OrderedDict # py2.7 except: from ordereddict import OrderedDict # py2.6 and lower (el6, etc.) builtin_str = str bytes = str str = unicode basestring = basestring numeric_types = (int, long, float) integer_types = (int, long) elif is_py3: from urllib.parse import urlparse, urlunparse, urljoin, urlsplit, urlencode, quote, unquote, quote_plus, unquote_plus, urldefrag from urllib.request import parse_http_list, getproxies, proxy_bypass, proxy_bypass_environment, getproxies_environment from http import cookiejar as cookielib from http.cookies import Morsel from io import StringIO from collections import OrderedDict builtin_str = str str = str bytes = bytes basestring = (str, bytes) numeric_types = (int, float) integer_types = (int,)