Current Path: > > opt > alt > > python33 > lib > > python3.3 > site-packages > pip > _vendor > requests
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
packages | Directory | - | - | |
__init__.py | File | 1856 bytes | November 13 2023 21:16:39. | |
adapters.py | File | 14608 bytes | November 13 2023 21:16:39. | |
api.py | File | 4344 bytes | November 13 2023 21:16:39. | |
auth.py | File | 6123 bytes | November 13 2023 21:16:39. | |
cacert.pem | File | 308434 bytes | November 13 2023 21:16:39. | |
certs.py | File | 544 bytes | November 13 2023 21:16:39. | |
compat.py | File | 2556 bytes | November 13 2023 21:16:39. | |
cookies.py | File | 16686 bytes | November 13 2023 21:16:39. | |
exceptions.py | File | 1877 bytes | November 13 2023 21:16:39. | |
hooks.py | File | 820 bytes | November 13 2023 21:16:39. | |
models.py | File | 26436 bytes | November 13 2023 21:16:39. | |
sessions.py | File | 22290 bytes | November 13 2023 21:16:39. | |
status_codes.py | File | 3136 bytes | November 13 2023 21:16:39. | |
structures.py | File | 3541 bytes | November 13 2023 21:16:39. | |
utils.py | File | 19973 bytes | November 13 2023 21:16:39. |
# -*- coding: utf-8 -*- # __ # /__) _ _ _ _ _/ _ # / ( (- (/ (/ (- _) / _) # / """ requests HTTP library ~~~~~~~~~~~~~~~~~~~~~ Requests is an HTTP library, written in Python, for human beings. Basic GET usage: >>> import requests >>> r = requests.get('http://python.org') >>> r.status_code 200 >>> 'Python is a programming language' in r.content True ... or POST: >>> payload = dict(key1='value1', key2='value2') >>> r = requests.post("http://httpbin.org/post", data=payload) >>> print(r.text) { ... "form": { "key2": "value2", "key1": "value1" }, ... } The other HTTP methods are supported - see `requests.api`. Full documentation is at <http://python-requests.org>. :copyright: (c) 2014 by Kenneth Reitz. :license: Apache 2.0, see LICENSE for more details. """ __title__ = 'requests' __version__ = '2.3.0' __build__ = 0x020300 __author__ = 'Kenneth Reitz' __license__ = 'Apache 2.0' __copyright__ = 'Copyright 2014 Kenneth Reitz' # Attempt to enable urllib3's SNI support, if possible try: from .packages.urllib3.contrib import pyopenssl pyopenssl.inject_into_urllib3() except ImportError: pass from . import utils from .models import Request, Response, PreparedRequest from .api import request, get, head, post, patch, put, delete, options from .sessions import session, Session from .status_codes import codes from .exceptions import ( RequestException, Timeout, URLRequired, TooManyRedirects, HTTPError, ConnectionError ) # Set default logging handler to avoid "No handler found" warnings. import logging try: # Python 2.7+ from logging import NullHandler except ImportError: class NullHandler(logging.Handler): def emit(self, record): pass logging.getLogger(__name__).addHandler(NullHandler())
SILENT KILLER Tool