a
    ^ŠÝg  ã                   @   s*   d dl Z ddlmZ G dd„ de jƒZdS )é    Né   )Úurljoinc                       sF   e Zd ZdZdZd‡ fdd„	Z‡ fdd„Z‡ fdd„Zd	d
„ Z‡  Z	S )ÚBaseUrlSessionaq  A 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
    Nc                    s   |r
|| _ tt| ƒ ¡  d S )N)Úbase_urlÚsuperr   Ú__init__)Úselfr   ©Ú	__class__© úh/var/www/html/cobodadashboardai.evdpl.com/venv/lib/python3.9/site-packages/requests_toolbelt/sessions.pyr   D   s    zBaseUrlSession.__init__c                    s*   |   |¡}tt| ƒj||g|¢R i |¤ŽS )z3Send the request after generating the complete URL.)Ú
create_urlr   r   Úrequest)r   ÚmethodÚurlÚargsÚkwargsr	   r   r   r   I   s    

ÿÿÿzBaseUrlSession.requestc                    s,   |   |j¡|_tt| ƒj|g|¢R i |¤ŽS )z6Prepare the request after generating the complete URL.)r   r   r   r   Úprepare_request)r   r   r   r   r	   r   r   r   P   s    
ÿÿÿzBaseUrlSession.prepare_requestc                 C   s   t | j|ƒS )z+Create the URL based off this partial path.)r   r   )r   r   r   r   r   r   W   s    zBaseUrlSession.create_url)N)
Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   r   r   r   r   Ú__classcell__r   r   r	   r   r      s   ;r   )ÚrequestsZ_compatr   ÚSessionr   r   r   r   r   Ú<module>   s   