zmc
2023-10-12 ed135d79df12a2466b52dae1a82326941211dcc9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
U
I=®dqã    @s@dZddlmZddlmZddlZddlmZdd„Zd    d
„Zzeej    ej    ƒWn0e
e fk
r‚e  d   ej    ej    ¡e¡YnXzvdd lmZesžed ƒ‚z ddlZWnek
rÂdZYnXeeddƒsøddlmZe ¡ddlm    ZeeƒWnek
rYnXddlmZe de¡ddl    mZmZmZm    Z    ddl    mZmZm Z m!Z!ddl    m"Z"m#Z#ddl$m%Z%ddl$m&Z&ddl'm(Z(m)Z)m*Z*ddl+m,Z,m-Z-m.Z.m/Z/m0Z0m1Z1m2Z2m3Z3ddl4m5Z5m6Z6ddl7m8Z8ddlm9Z9m:Z:m;Z;m<Z<m=Z=m>Z>m?Z?m@Z@mAZAddlBZBddlBmCZCeB DeE¡ FeCƒ¡ejde?d d!dS)"aú
Requests HTTP Library
~~~~~~~~~~~~~~~~~~~~~
 
Requests is an HTTP library, written in Python, for human beings.
Basic GET usage:
 
   >>> import requests
   >>> r = requests.get('https://www.python.org')
   >>> r.status_code
   200
   >>> b'Python is a programming language' in r.content
   True
 
... or POST:
 
   >>> payload = dict(key1='value1', key2='value2')
   >>> r = requests.post('https://httpbin.org/post', data=payload)
   >>> print(r.text)
   {
     ...
     "form": {
       "key1": "value1",
       "key2": "value2"
     },
     ...
   }
 
The other HTTP methods are supported - see `requests.api`. Full documentation
is at <https://requests.readthedocs.io>.
 
:copyright: (c) 2017 by Kenneth Reitz.
:license: Apache 2.0, see LICENSE for more details.
é)Úurllib3)ÚchardetNé)ÚRequestsDependencyWarningcCsÔ| d¡}|dgkst‚t|ƒdkr.| d¡|\}}}t|ƒt|ƒt|ƒ}}}|dks`t‚|dkslt‚|dksxt‚| d¡dd…\}}}t|ƒt|ƒt|ƒ}}}|dks¸t‚|dksÄt‚|dksÐt‚dS)    NÚ.ÚdevéÚ0rééé)ÚsplitÚAssertionErrorÚlenÚappendÚint)Úurllib3_versionÚchardet_versionÚmajorÚminorÚpatch©rúTD:\z\workplace\VsCode\pyvenv\venv\Lib\site-packages\pip/_vendor/requests/__init__.pyÚcheck_compatibility1s
 
 
     rcCsXzttt| d¡ƒƒ}Wntk
r.YdSX|dddgkrTd |¡}t |t¡dS)Nrrr éz4Old version of cryptography ({}) may cause slowdown.)    ÚlistÚmaprr Ú
ValueErrorÚformatÚwarningsÚwarnr)Úcryptography_versionÚwarningrrrÚ_check_cryptographyJs
r#z?urllib3 ({}) or chardet ({}) doesn't match a supported version!)ÚWINDOWSz3pip internals: don't import cryptography on WindowsÚHAS_SNIF)Ú    pyopenssl)Ú __version__)ÚDependencyWarningÚignore)Ú    __title__Ú__description__Ú__url__r')Ú    __build__Ú
__author__Ú__author_email__Ú __license__)Ú __copyright__Ú__cake__)Úutils)Úpackages)ÚRequestÚResponseÚPreparedRequest)ÚrequestÚgetÚheadÚpostrÚputÚdeleteÚoptions)ÚsessionÚSession)Úcodes)    ÚRequestExceptionÚTimeoutÚ URLRequiredÚTooManyRedirectsÚ    HTTPErrorÚConnectionErrorÚFileModeWarningÚConnectTimeoutÚ ReadTimeout)Ú NullHandlerÚdefaultT)r)GÚ__doc__Ú pip._vendorrrrÚ
exceptionsrrr#r'rrr rÚpip._internal.utils.compatr$Ú ImportErrorÚsslÚgetattrÚpip._vendor.urllib3.contribr&Úinject_into_urllib3Z cryptographyr!Zpip._vendor.urllib3.exceptionsr(Ú simplefilterr*r+r,r-r.r/r0r1r2Úr3r4Úmodelsr5r6r7Úapir8r9r:r;rr<r=r>Úsessionsr?r@Ú status_codesrArBrCrDrErFrGrHrIrJÚloggingrKÚ    getLoggerÚ__name__Ú
addHandlerrrrrÚ<module>s\#    ÿþ
 
        ( ,