X7ROOT File Manager
Current Path:
/opt/alt/python37/lib/python3.7/site-packages/requests
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
requests
/
??
..
??
__init__.py
(4.79 KB)
??
__pycache__
??
__version__.py
(441 B)
??
_internal_utils.py
(1.07 KB)
??
adapters.py
(20.84 KB)
??
api.py
(6.25 KB)
??
auth.py
(9.97 KB)
??
certs.py
(629 B)
??
compat.py
(1.81 KB)
??
cookies.py
(18 KB)
??
exceptions.py
(3.16 KB)
??
help.py
(3.88 KB)
??
hooks.py
(757 B)
??
models.py
(34.04 KB)
??
packages.py
(932 B)
??
sessions.py
(29.46 KB)
??
status_codes.py
(4.09 KB)
??
structures.py
(2.93 KB)
??
utils.py
(30.65 KB)
Editing: packages.py
import sys try: import chardet except ImportError: import charset_normalizer as chardet import warnings warnings.filterwarnings('ignore', 'Trying to detect', module='charset_normalizer') # This code exists for backwards compatibility reasons. # I don't like it either. Just look the other way. :) for package in ('urllib3', 'idna'): locals()[package] = __import__(package) # This traversal is apparently necessary such that the identities are # preserved (requests.packages.urllib3.* is urllib3.*) for mod in list(sys.modules): if mod == package or mod.startswith(package + '.'): sys.modules['requests.packages.' + mod] = sys.modules[mod] target = chardet.__name__ for mod in list(sys.modules): if mod == target or mod.startswith(target + '.'): sys.modules['requests.packages.' + target.replace(target, 'chardet')] = sys.modules[mod] # Kinda cool, though, right?
Upload File
Create Folder