B s/Ÿ]–7ã @sddlmZddlZddlmZddlmZddlmZddd d d d d gZ dZ e  d¡Z e  d¡Z e  dejejB¡ZdZdZdjeedZeedœ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+-]*:|/)zQ^(?:([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úUC:\Users\Lcollins\AppData\Local\Temp\pip-install-xe9bn6ac\urllib3\urllib3\util\url.pyú 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 r r r )Ú __class__rrr%[s  z Url.__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 )r r )r(ÚurirrrÚ 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:password@host.com:80/path?query#fragment' ÚNz://rrr ú#)Ústr) r(rrr r r r r Úurlrrrr0ƒs"    zUrl.urlcCs|jS)N)r0)r(rrrÚ__str__«sz Url.__str__)NNNNNNN) Ú__name__Ú __module__Ú __qualname__Ú__doc__Ú __slots__r%Úpropertyr)r+r,r0r1Ú __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)ÚsÚdelimsÚmin_idxÚ min_delimÚdÚidxrrrÚ split_first¯s   rAúutf-8c Csø|dkr |St |¡}t |¡}x$|D]}| ¡s&| || ¡¡}q&W| dd¡}t|ƒ|  d¡k}t ƒ}x‚t dt|ƒƒD]p}|||d…} t | ƒ} |r¢| dks¶| dkrÂ|   ¡|krÂ| | ¡qz| dt| ƒdd… ¡ d¡ ¡¡qzW|  |¡S) zfPercent-encodes a URI component without reapplying onto an already percent-encoded component. Nzutf-8Ú surrogatepassó%rr9é€r)rÚ ensure_textÚ PERCENT_REÚfindallÚisupperÚreplaceÚupperÚencodeÚlenÚcountÚ bytearrayÚrangeÚordÚdecodeÚextendrÚzfill) Ú componentÚ allowed_charsÚencodingZpercent_encodingsÚencZ uri_bytesZis_percent_encodedZencoded_componentÚiZbyteZbyte_ordrrrÚ_encode_invalid_charsÒs&      ,rZcCsˆ| 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       rdcCsê|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) Nr9z%25éú%ó.cSsg|] }t|ƒ‘qSr)Ú _idna_encode)rÚlabelrrrr,sz#_normalize_host..r[)Ú isinstancerÚ binary_typeÚ ensure_strÚNORMALIZABLE_SCHEMESÚ IPV6_ADDRZ_REÚmatchÚ ZONE_ID_REÚsearchÚspanr"rZÚUNRESERVED_CHARSr#ÚIPV4_RErar\)r rZis_ipv6roÚstartÚendZzone_idrrrÚ_normalize_hosts(         rwcCs–|rˆtdd„|Dƒƒrˆy ddl}Wn$tk rFt tdƒd¡YnXy|j| ¡dddS|jk r†t td|ƒd¡YnX| ¡ d¡S) NcSsg|]}t|ƒdk‘qS)rE)rQ)rrrrrr2sz _idna_encode..rz-Unable to parse URL without the 'idna' moduleT)ÚstrictÚ std3_rulesz#Name '%s' is not a valid IDNA labelÚascii) ÚanyÚidnaÚ ImportErrorrÚ raise_fromrrLr#Ú IDNAError)Únamer|rrrrh1s  rhcCsl| d¡s|St |¡ ¡\}}}t|tƒ}t|tƒ}t|tƒ}|dk rT|d|7}|dk rh|d|7}|S)zHPercent-encodes a request target so that there are no invalid charactersrNr r.)r"Ú TARGET_REroÚgroupsrZÚ PATH_CHARSÚ QUERY_CHARSÚFRAGMENT_CHARS)Útargetr r r rrrÚ_encode_targetCs      r‡c s¾|s tƒS|}t |¡s d|}yüt |¡ ¡\}}}}}|dkpL| ¡tk}|rZ| ¡}|r’t |¡ ¡\}} } |r„|r„t |t ƒ}| dkrœd} n d\}} } | dk rÊt | ƒ} d| krÀdksÊnt |ƒ‚t | |ƒ} |rî|rît|ƒ}t |tƒ}|r|rt |tƒ}|r|rt |tƒ}Wn&ttfk rBt t |ƒd¡SX|sh|dk s^|dk rdd}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//Nr-)NNNriÿÿcs|dkr |Sˆ|ƒS)Nr)r)Ú ensure_funcrrÚ ensure_type¤szparse_url..ensure_type)rrr r r r r )r!Ú SCHEME_RErqÚURI_REror‚r#rmÚSUBAUTHORITY_RErZÚUSERINFO_CHARSÚintrrwrdrƒr„r…Ú ValueErrorÚAttributeErrorrr~rjÚ text_typerFrl) r0Z source_urlrÚ authorityr r r Z normalize_urirr r r‰r)rˆrÚ parse_urlSs^         r“cCst|ƒ}|jpd|j|jfS)z4 Deprecated. Use :func:`parse_url` instead. r)r“rr)r )r0ÚprrrÚget_host²sr•)rB)5Ú __future__rÚreÚ collectionsrÚ exceptionsrÚpackagesrÚ url_attrsrmÚcompilerGrŠÚUNICODEÚDOTALLr‹ZIPV4_PATZHEX_PATÚformatZLS32_PATrZ _variationsZUNRESERVED_PATraZIPV6_PATZ ZONE_ID_PATZIPV6_ADDRZ_PATZ REG_NAME_PATrrtZIPV6_RErnZBRACELESS_IPV6_ADDRZ_RErpZSUBAUTHORITY_PATrŒÚsetrsZSUB_DELIM_CHARSrrƒr„r…r!rArZrdrwrhr‡r“r•rrrrÚsn          ]# %_