HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //usr/local/lib/python3.10/dist-packages/requests_toolbelt/__pycache__/sessions.cpython-310.pyc
o

���g�@s*ddlZddlmZGdd�dej�ZdS)�N�)�urljoincsFeZdZdZdZd�fdd�	Z�fdd�Z�fdd�Zd	d
�Z�Z	S)�BaseUrlSessionaqA Session with a URL that all requests will use as a base.

    Let's start by looking at a few examples:

    .. code-block:: python

        >>> from requests_toolbelt import sessions
        >>> s = sessions.BaseUrlSession(
        ...     base_url='https://example.com/resource/')
        >>> r = s.get('sub-resource/', params={'foo': 'bar'})
        >>> print(r.request.url)
        https://example.com/resource/sub-resource/?foo=bar

    Our call to the ``get`` method will make a request to the URL passed in
    when we created the Session and the partial resource name we provide.
    We implement this by overriding the ``request`` method of the Session.

    Likewise, we override the ``prepare_request`` method so you can construct
    a PreparedRequest in the same way:

    .. code-block:: python

        >>> from requests import Request
        >>> from requests_toolbelt import sessions
        >>> s = sessions.BaseUrlSession(
        ...     base_url='https://example.com/resource/')
        >>> request = Request(method='GET', url='sub-resource/')
        >>> prepared_request = s.prepare_request(request)
        >>> r = s.send(prepared_request)
        >>> print(r.request.url)
        https://example.com/resource/sub-resource

    .. note::

        The base URL that you provide and the path you provide are **very**
        important.

    Let's look at another *similar* example

    .. code-block:: python

        >>> from requests_toolbelt import sessions
        >>> s = sessions.BaseUrlSession(
        ...     base_url='https://example.com/resource/')
        >>> r = s.get('/sub-resource/', params={'foo': 'bar'})
        >>> print(r.request.url)
        https://example.com/sub-resource/?foo=bar

    The key difference here is that we called ``get`` with ``/sub-resource/``,
    i.e., there was a leading ``/``. This changes how we create the URL
    because we rely on :mod:`urllib.parse.urljoin`.

    To override how we generate the URL, sub-class this method and override the
    ``create_url`` method.

    Based on implementation from
    https://github.com/kennethreitz/requests/issues/2554#issuecomment-109341010
    Ncs|r||_tt|���dS�N)�base_url�superr�__init__)�selfr��	__class__��E/usr/local/lib/python3.10/dist-packages/requests_toolbelt/sessions.pyrDszBaseUrlSession.__init__cs*|�|�}tt|�j||g|�Ri|��S)z3Send the request after generating the complete URL.)�
create_urlrr�request)r	�method�url�args�kwargsr
rr
rIs

���zBaseUrlSession.requestcs,|�|j�|_tt|�j|g|�Ri|��S)z6Prepare the request after generating the complete URL.)rrrr�prepare_request)r	rrrr
rr
rPs
���zBaseUrlSession.prepare_requestcCst|j|�S)z+Create the URL based off this partial path.)rr)r	rrrr
rWszBaseUrlSession.create_urlr)
�__name__�
__module__�__qualname__�__doc__rrrrr�
__classcell__rrr
r
rs;r)�requests�_compatr�Sessionrrrrr
�<module>s