404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@3.149.240.196: ~ $
3

�P\	�@s*ddlZddlmZGdd�dej�ZdS)�N�)�urljoincs:eZdZdZdZd	�fdd�	Z�fdd�Zdd�Z�ZS)
�BaseUrlSessiona�A Session with a URL that all requests will use as a base.

    Let's start by looking at an 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/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 so most uses of a
    Session are covered. (This, however, precludes the use of PreparedRequest
    objects).

    .. 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|�j�dS)N)�base_url�superr�__init__)�selfr)�	__class__��/usr/lib/python3.6/sessions.pyr8szBaseUrlSession.__init__cs$|j|�}tt|�j||f|�|�S)z3Send the request after generating the complete URL.)�
create_urlrr�request)r�method�url�args�kwargs)r	r
rr
=s

zBaseUrlSession.requestcCst|j|�S)z+Create the URL based off this partial path.)rr)rrr
r
rrDszBaseUrlSession.create_url)N)	�__name__�
__module__�__qualname__�__doc__rrr
r�
__classcell__r
r
)r	rrs
.r)ZrequestsZ_compatrZSessionrr
r
r
r�<module>s

Filemanager

Name Type Size Permission Actions
__init__.cpython-36.opt-1.pyc File 1.23 KB 0644
__init__.cpython-36.pyc File 1.23 KB 0644
_compat.cpython-36.opt-1.pyc File 9.03 KB 0644
_compat.cpython-36.pyc File 9.03 KB 0644
exceptions.cpython-36.opt-1.pyc File 1.62 KB 0644
exceptions.cpython-36.pyc File 1.62 KB 0644
sessions.cpython-36.opt-1.pyc File 2.64 KB 0644
sessions.cpython-36.pyc File 2.64 KB 0644
streaming_iterator.cpython-36.opt-1.pyc File 3.95 KB 0644
streaming_iterator.cpython-36.pyc File 3.95 KB 0644