OXIESEC PANEL
- Current Dir:
/
/
lib
/
python3.9
/
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:10:02 PM
rwxr-xr-x
📄
__init__.cpython-39.opt-1.pyc
3.21 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
__init__.cpython-39.pyc
3.35 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
__version__.cpython-39.opt-1.pyc
507 bytes
04/01/2024 09:29:20 PM
rw-r--r--
📄
__version__.cpython-39.pyc
507 bytes
04/01/2024 09:29:20 PM
rw-r--r--
📄
_internal_utils.cpython-39.opt-1.pyc
1.2 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
_internal_utils.cpython-39.pyc
1.22 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
adapters.cpython-39.opt-1.pyc
16.46 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
adapters.cpython-39.pyc
16.46 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
api.cpython-39.opt-1.pyc
6.55 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
api.cpython-39.pyc
6.55 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
auth.cpython-39.opt-1.pyc
8.09 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
auth.cpython-39.pyc
8.09 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
certs.cpython-39.opt-1.pyc
832 bytes
04/01/2024 09:29:20 PM
rw-r--r--
📄
certs.cpython-39.pyc
832 bytes
04/01/2024 09:29:20 PM
rw-r--r--
📄
compat.cpython-39.opt-1.pyc
1.57 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
compat.cpython-39.pyc
1.57 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
cookies.cpython-39.opt-1.pyc
18.33 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
cookies.cpython-39.pyc
18.33 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
exceptions.cpython-39.opt-1.pyc
5.06 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
exceptions.cpython-39.pyc
5.06 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
help.cpython-39.opt-1.pyc
2.55 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
help.cpython-39.pyc
2.55 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
hooks.cpython-39.opt-1.pyc
942 bytes
04/01/2024 09:29:20 PM
rw-r--r--
📄
hooks.cpython-39.pyc
942 bytes
04/01/2024 09:29:20 PM
rw-r--r--
📄
models.cpython-39.opt-1.pyc
23.26 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
models.cpython-39.pyc
23.26 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
packages.cpython-39.opt-1.pyc
361 bytes
04/01/2024 09:29:20 PM
rw-r--r--
📄
packages.cpython-39.pyc
361 bytes
04/01/2024 09:29:20 PM
rw-r--r--
📄
sessions.cpython-39.opt-1.pyc
19.35 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
sessions.cpython-39.pyc
19.35 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
status_codes.cpython-39.opt-1.pyc
4.09 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
status_codes.cpython-39.pyc
4.09 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
structures.cpython-39.opt-1.pyc
4.31 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
structures.cpython-39.pyc
4.31 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
utils.cpython-39.opt-1.pyc
23.28 KB
04/01/2024 09:29:20 PM
rw-r--r--
📄
utils.cpython-39.pyc
23.28 KB
04/01/2024 09:29:20 PM
rw-r--r--
Editing: structures.cpython-39.opt-1.pyc
Close
a /'f� � @ 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* t � | _|d u ri }| j|fi |�� d S �N)r �_store�update)�self�data�kwargs� r �7/usr/lib/python3.9/site-packages/requests/structures.py�__init__* s zCaseInsensitiveDict.__init__c C s ||f| j |�� <