$65 GRAYBYTE WORDPRESS FILE MANAGER $66

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.217.254 | ADMIN IP 216.73.216.157
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/opt/alt/python37/lib/python3.7/site-packages/urllib3/util/__pycache__/

HOME
Current File : /opt/alt/python37/lib/python3.7/site-packages/urllib3/util/__pycache__//url.cpython-37.pyc
B

��`�6�	@sddlmZddlZddlmZddlmZddlmZddd	d
ddd
gZ	dZ
e�d�Ze�d�Z
e�dejejB�ZdZdZdjeed�Zeed�Zdddddddddg	Zd Zd!d"�d#d$�eD��d%Zd&ed'Zd(ed!ed)Zd*Ze�d+�Ze�d,ed-�Ze�d,ed-�Ze�d,ed-�Z e�d,edd.�d-�Z!e�d/ed0�Z"d1eeefZ#e�e#ejejB�Z$e%d2�Z&e%d3�Z'e&e'Bd4hBZ(e(d5d6hBZ)e)d7hBZ*Z+Gd8d9�d9ed9e	��Z,d:d;�Z-dKd=d>�Z.d?d@�Z/dAdB�Z0dCdD�Z1dEdF�Z2dGdH�Z3dIdJ�Z4dS)L�)�absolute_importN)�
namedtuple�)�LocationParseError)�six�scheme�auth�host�port�path�query�fragment)�http�httpsNz%[a-fA-F0-9]{2}z^(?:[a-zA-Z][a-zA-Z0-9+-]*:|/)zS^(?:([a-zA-Z][a-zA-Z0-9+.-]*):)?(?://([^\\/?#]*))?([^?#]*)(?:\?([^#]*))?(?:#(.*))?$z(?:[0-9]{1,3}\.){3}[0-9]{1,3}z[0-9A-Fa-f]{1,4}z(?:{hex}:{hex}|{ipv4}))�hexZipv4)rZls32z(?:%(hex)s:){6}%(ls32)sz::(?:%(hex)s:){5}%(ls32)sz%(?:%(hex)s)?::(?:%(hex)s:){4}%(ls32)sz2(?:(?:%(hex)s:)?%(hex)s)?::(?:%(hex)s:){3}%(ls32)sz6(?:(?:%(hex)s:){0,2}%(hex)s)?::(?:%(hex)s:){2}%(ls32)sz/(?:(?:%(hex)s:){0,3}%(hex)s)?::%(hex)s:%(ls32)sz'(?:(?:%(hex)s:){0,4}%(hex)s)?::%(ls32)sz&(?:(?:%(hex)s:){0,5}%(hex)s)?::%(hex)sz(?:(?:%(hex)s:){0,6}%(hex)s)?::zDABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789._!\-~z(?:�|cCsg|]}|t�qS�)�_subs)�.0�xrr�A/opt/alt/python37/lib/python3.7/site-packages/urllib3/util/url.py�
<listcomp>6sr�)z
(?:%25|%)(?:[z]|%[a-fA-F0-9]{2})+z\[z)?\]z!(?:[^\[\]%:/?#]|%[a-fA-F0-9]{2})*z!^(/[^?#]*)(?:\?([^#]*))?(?:#.*)?$�^�$����(z)\]$z^(%s|%s|%s)(?::([0-9]{0,5}))?$zBABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789._-~z!$&'()*+,;=�:�@�/�?cs^eZdZdZdZd�fdd�	Zedd��Zedd	��Zed
d��Z	edd
��Z
dd�Z�ZS)�Urlz�
    Data structure for representing an HTTP URL. Used as a return value for
    :func:`parse_url`. Both the scheme and host are normalized as they are
    both case-insensitive according to RFC 3986.
    rNc
sD|r|�d�sd|}|dk	r&|��}tt|��||||||||�S)Nr)�
startswith�lower�superr!�__new__)�clsrrr	r
rrr
)�	__class__rrr%[s

zUrl.__new__cCs|jS)z@For backwards-compatibility with urlparse. We're nice like that.)r	)�selfrrr�hostnamemszUrl.hostnamecCs&|jpd}|jdk	r"|d|j7}|S)z)Absolute path including the query string.rNr )rr)r(Zurirrr�request_urirs

zUrl.request_uricCs|jrd|j|jfS|jS)z(Network location including host and portz%s:%d)r
r	)r(rrr�netloc|sz
Url.netlocc	Cs�|\}}}}}}}d}|dk	r*||d7}|dk	r>||d7}|dk	rN||7}|dk	rf|dt|�7}|dk	rv||7}|dk	r�|d|7}|dk	r�|d|7}|S)a�
        Convert self into a url

        This function should more or less round-trip with :func:`.parse_url`. The
        returned url may not be exactly the same as the url inputted to
        :func:`.parse_url`, but it should be equivalent by the RFC (e.g., urls
        with a blank port will have : removed).

        Example: ::

            >>> U = parse_url('http://google.com/mail/')
            >>> U.url
            'http://google.com/mail/'
            >>> Url('http', 'username:password', 'host.com', 80,
            ... '/path', 'query', 'fragment').url
            'http://username:[email protected]:80/path?query#fragment'
        �Nz://rrr �#)�str)	r(rrr	r
rrr
�urlrrrr/�s"zUrl.urlcCs|jS)N)r/)r(rrr�__str__�szUrl.__str__)NNNNNNN)
�__name__�
__module__�__qualname__�__doc__�	__slots__r%�propertyr)r*r+r/r0�
__classcell__rr)r'rr!Rs

(r!cCszd}d}x8|D]0}|�|�}|dkr&q|dks6||kr|}|}qW|dksR|dkr\|ddfS|d|�||dd�|fS)a�
    .. deprecated:: 1.25

    Given a string and an iterable of delimiters, split on the first found
    delimiter. Return two split parts and the matched delimiter.

    If not found, then the first part is the full input string.

    Example::

        >>> split_first('foo/bar?baz', '?/=')
        ('foo', 'bar?baz', '/')
        >>> split_first('foo/bar?baz', '123')
        ('foo/bar?baz', '', None)

    Scales linearly with number of delims. Not ideal for large number of delims.
    Nrr,�)�find)�sZdelimsZmin_idxZ	min_delim�d�idxrrr�split_first�s


r=�utf-8c
Cs�|dkr|St�|�}t�dd�|�\}}|�dd�}||�d�k}t�}x�tdt|��D]n}|||d�}t	|�}	|r�|dks�|	d	kr�|�
�|kr�||7}qZ|�dt|	�d
d����
d
����qZW|�
|�S)zfPercent-encodes a URI component without reapplying
    onto an already percent-encoded component.
    NcSs|�d���S)Nr)�group�upper)�matchrrr�<lambda>��z'_encode_invalid_chars.<locals>.<lambda>zutf-8�
surrogatepass�%rr8�r)r�ensure_text�
PERCENT_RE�subn�encode�count�	bytearray�range�len�ord�decode�extendr�zfillr@)
Z	componentZ
allowed_chars�encodingZpercent_encodingsZ	uri_bytesZis_percent_encodedZencoded_component�iZbyteZbyte_ordrrr�_encode_invalid_chars�s"
,rUcCs�|�d�}g}x8|D]0}|dkr$qq|dkr8|�|�q|r|��qW|�d�rj|r^|drj|�dd�|�d�r~|�d�d�|�S)Nr�.z..rr,)z/.z/..)�split�append�popr"�insert�endswith�join)r�segments�outputZsegmentrrr�_remove_path_dot_segments�s



r_cCs�|r�t|tj�rt�|�}|tkr�t�|�}|r�t�|�}|r�|�	d�\}}|||�}|�
d�rx|dkrx|dd�}n|dd�}dt|t�}|d|��
�|||d�S|�
�Sn*t�|�s�t�d�dd�|�d�D���S|S)	Nr8z%25��%�.cSsg|]}t|��qSr)�_idna_encode)r�labelrrrr)sz#_normalize_host.<locals>.<listcomp>rV)�
isinstancerZbinary_type�
ensure_str�NORMALIZABLE_SCHEMES�
IPV6_ADDRZ_RErA�
ZONE_ID_RE�search�spanr"rU�UNRESERVED_CHARSr#�IPV4_REr\rW)r	rZis_ipv6rA�start�endZzone_idrrr�_normalize_hosts(


 

rpcCs�|r�tdd�|D��r�yddl}Wn$tk
rFt�td�d�YnXy|j|��ddd�S|jk
r�t�td|�d�YnX|���d�S)	NcSsg|]}t|�dk�qS)rF)rO)rrrrrr/sz _idna_encode.<locals>.<listcomp>rz-Unable to parse URL without the 'idna' moduleT)�strictZ
std3_rulesz#Name '%s' is not a valid IDNA label�ascii)	�any�idna�ImportErrorr�
raise_fromrrJr#Z	IDNAError)�namertrrrrc.srccCs>t�|���\}}t|t�}t|t�}|dk	r:|d|7}|S)zHPercent-encodes a request target so that there are no invalid charactersNr )�	TARGET_RErA�groupsrU�
PATH_CHARS�QUERY_CHARS)�targetrrrrr�_encode_target@s

r}c	s�|s
t�S|}t�|�s d|}�yt�|���\}}}}}|dkpN|��tk}|r\|��}|r�|�d�\}}	}
|pvd}t	�|
���\}}|r�|r�t
|t�}|dkr�d}n
d\}}}|dk	r�t|�}d|kr�dks�nt
|��t||�}|�r
|�r
t|�}t
|t�}|�r |�r t
|t�}|�r6|�r6t
|t�}Wn&ttfk
�r^t�t
|�d�SX|�s�|dk	�sz|dk	�r�d}nd}t|tj��r�tj�ntj��fdd	�}
t|
|�|
|�|
|�||
|�|
|�|
|�d
�S)a

    Given a url, return a parsed :class:`.Url` namedtuple. Best-effort is
    performed to parse incomplete urls. Fields not provided will be None.
    This parser is RFC 3986 compliant.

    The parser logic and helper functions are based heavily on
    work done in the ``rfc3986`` module.

    :param str url: URL to parse into a :class:`.Url` namedtuple.

    Partly backwards-compatible with :mod:`urlparse`.

    Example::

        >>> parse_url('http://google.com/mail/')
        Url(scheme='http', host='google.com', port=None, path='/mail/', ...)
        >>> parse_url('google.com:80')
        Url(scheme=None, host='google.com', port=80, path=None, ...)
        >>> parse_url('/foo?bar')
        Url(scheme=None, host=None, port=None, path='/foo', query='bar', ...)
    z//Nrr,)NNNri��cs|dkr|S�|�S)Nr)r)�ensure_funcrr�ensure_type�szparse_url.<locals>.ensure_type)rrr	r
rrr
)r!�	SCHEME_RErj�URI_RErAryr#rg�
rpartition�
_HOST_PORT_RErU�USERINFO_CHARS�intrrpr_rzr{�FRAGMENT_CHARS�
ValueError�AttributeErrorrrvreZ	text_typerGrf)r/Z
source_urlrZ	authorityrrr
Z
normalize_urir�_�	host_portr	r
rr)r~r�	parse_urlJsb





r�cCst|�}|jpd|j|jfS)z4
    Deprecated. Use :func:`parse_url` instead.
    r)r�rr)r
)r/�prrr�get_host�sr�)r>)5�
__future__r�re�collectionsr�
exceptionsr�packagesrZ	url_attrsrg�compilerHr��UNICODE�DOTALLr�ZIPV4_PATZHEX_PAT�formatZLS32_PATrZ_variationsZUNRESERVED_PATr\ZIPV6_PATZZONE_ID_PATZIPV6_ADDRZ_PATZREG_NAME_PATrxrmZIPV6_RErhZBRACELESS_IPV6_ADDRZ_REriZ_HOST_PORT_PATr��setrlZSUB_DELIM_CHARSr�rzr{r�r!r=rUr_rprcr}r�r�rrrr�<module>sn



]#
"
a


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
3 Mar 2024 11.11 PM
root / linksafe
0755
__init__.cpython-37.pyc
1.045 KB
14 Nov 2023 2.43 PM
root / linksafe
0644
connection.cpython-37.pyc
3.305 KB
14 Nov 2023 2.43 PM
root / linksafe
0644
proxy.cpython-37.pyc
1.248 KB
14 Nov 2023 2.43 PM
root / linksafe
0644
queue.cpython-37.pyc
0.978 KB
14 Nov 2023 2.43 PM
root / linksafe
0644
request.cpython-37.pyc
3.334 KB
14 Nov 2023 2.43 PM
root / linksafe
0644
response.cpython-37.pyc
2.234 KB
14 Nov 2023 2.43 PM
root / linksafe
0644
retry.cpython-37.pyc
15.911 KB
14 Nov 2023 2.43 PM
root / linksafe
0644
ssl_.cpython-37.pyc
10.978 KB
14 Nov 2023 2.43 PM
root / linksafe
0644
ssltransport.cpython-37.pyc
7.106 KB
14 Nov 2023 2.43 PM
root / linksafe
0644
timeout.cpython-37.pyc
8.652 KB
14 Nov 2023 2.43 PM
root / linksafe
0644
url.cpython-37.pyc
10.348 KB
14 Nov 2023 2.43 PM
root / linksafe
0644
wait.cpython-37.pyc
3.019 KB
14 Nov 2023 2.43 PM
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF