OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
requests
/
__pycache__
Server IP: 2a02:4780:11:1594:0:ef5:22d7:a
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/14/2024 03:09:54 PM
rwxr-xr-x
📄
__init__.cpython-37.pyc
3.75 KB
11/14/2023 02:30:13 PM
rw-r--r--
📄
__version__.cpython-37.pyc
516 bytes
11/14/2023 02:30:13 PM
rw-r--r--
📄
_internal_utils.cpython-37.pyc
1.24 KB
11/14/2023 02:30:13 PM
rw-r--r--
📄
adapters.cpython-37.pyc
16.38 KB
11/14/2023 02:30:13 PM
rw-r--r--
📄
api.cpython-37.pyc
6.49 KB
11/14/2023 02:30:13 PM
rw-r--r--
📄
auth.cpython-37.pyc
8.12 KB
11/14/2023 02:30:13 PM
rw-r--r--
📄
certs.cpython-37.pyc
814 bytes
11/14/2023 02:30:13 PM
rw-r--r--
📄
compat.cpython-37.pyc
1.64 KB
11/14/2023 02:30:13 PM
rw-r--r--
📄
cookies.cpython-37.pyc
18.31 KB
11/14/2023 02:30:13 PM
rw-r--r--
📄
exceptions.cpython-37.pyc
5.49 KB
11/14/2023 02:30:13 PM
rw-r--r--
📄
help.cpython-37.pyc
2.74 KB
11/14/2023 02:30:13 PM
rw-r--r--
📄
hooks.cpython-37.pyc
941 bytes
11/14/2023 02:30:13 PM
rw-r--r--
📄
models.cpython-37.pyc
24.04 KB
11/14/2023 02:30:13 PM
rw-r--r--
📄
packages.cpython-37.pyc
672 bytes
11/14/2023 02:30:13 PM
rw-r--r--
📄
sessions.cpython-37.pyc
19.32 KB
11/14/2023 02:30:13 PM
rw-r--r--
📄
status_codes.cpython-37.pyc
4.09 KB
11/14/2023 02:30:13 PM
rw-r--r--
📄
structures.cpython-37.pyc
4.27 KB
11/14/2023 02:30:13 PM
rw-r--r--
📄
utils.cpython-37.pyc
22.51 KB
11/14/2023 02:30:13 PM
rw-r--r--
Editing: structures.cpython-37.pyc
Close
B �}7�9 �� @ sD d Z ddlmZ ddlmZmZ G dd� de�ZG dd� de�Zd S ) zO requests.structures ~~~~~~~~~~~~~~~~~~~ Data structures that power Requests. � )�OrderedDict� )�Mapping�MutableMappingc @ sb e Zd ZdZddd�Zdd� Zdd� Zd d � Zdd� Zd d� Z dd� Z dd� Zdd� Zdd� Z dS )�CaseInsensitiveDicta� A case-insensitive ``dict``-like object. Implements all methods and operations of ``MutableMapping`` as well as dict's ``copy``. Also provides ``lower_items``. All keys are expected to be strings. The structure remembers the case of the last key to be set, and ``iter(instance)``, ``keys()``, ``items()``, ``iterkeys()``, and ``iteritems()`` will contain case-sensitive keys. However, querying and contains testing is case insensitive:: cid = CaseInsensitiveDict() cid['Accept'] = 'application/json' cid['aCCEPT'] == 'application/json' # True list(cid) == ['Accept'] # True For example, ``headers['content-encoding']`` will return the value of a ``'Content-Encoding'`` response header, regardless of how the header name was originally stored. If the constructor, ``.update``, or equality comparison operations are given keys that have equal ``.lower()``s, the behavior is undefined. Nc K s&