| Server IP : 178.105.222.151 / Your IP : 216.73.216.38 Web Server : nginx/1.28.3 System : Linux MNK 7.0.0-15-generic #15-Ubuntu SMP PREEMPT_DYNAMIC Wed Apr 22 16:06:43 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.5.4 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/requests/__pycache__/ |
Upload File : |
+
�i` � �R � R t ^ RIHt ^RIHtHt ! R R]4 t ! R R]4 tR# )zO
requests.structures
~~~~~~~~~~~~~~~~~~~
Data structures that power Requests.
)�OrderedDict)�Mapping�MutableMappingc �d a � ] tR t^
t o RtRR ltR tR tR tR t R t
R tR
tR t
R tR
tV tR# )�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 �V � \ 4 V n Vf / pV P ! V3/ VB R # �N)r �_store�update)�self�data�kwargss &&,�5/usr/lib/python3/dist-packages/requests/structures.py�__init__�CaseInsensitiveDict.__init__( s&