<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>
î
“Re@  ã               @   s‚  d  Z  d Z d Z d Z d Z d Z d Z y d d l m Z e j	 ƒ  Wn e
 k
 r\ Yn Xd d	 l m Z d d
 l m Z m Z m Z d d l m Z m Z m Z m Z m Z m Z m Z m Z d d l m Z m Z d d l m Z d d l m  Z  m! Z! m" Z" m# Z# m$ Z$ m% Z% d d l& Z& y d d l& m' Z' Wn+ e
 k
 rdGd d „  d e& j( ƒ Z' Yn Xe& j) e* ƒ j+ e' ƒ  ƒ d S)aï  
requests HTTP library
~~~~~~~~~~~~~~~~~~~~~

Requests is an HTTP library, written in Python, for human beings. Basic GET
usage:

   >>> import requests
   >>> r = requests.get('http://python.org')
   >>> r.status_code
   200
   >>> 'Python is a programming language' in r.content
   True

... or POST:

   >>> payload = dict(key1='value1', key2='value2')
   >>> r = requests.post("http://httpbin.org/post", data=payload)
   >>> print(r.text)
   {
     ...
     "form": {
       "key2": "value2",
       "key1": "value1"
     },
     ...
   }

The other HTTP methods are supported - see `requests.api`. Full documentation
is at <http://python-requests.org>.

:copyright: (c) 2014 by Kenneth Reitz.
:license: Apache 2.0, see LICENSE for more details.

Úrequestsz2.3.0i  zKenneth Reitzz
Apache 2.0zCopyright 2014 Kenneth Reitzé   )Ú	pyopenssl)Úutils)ÚRequestÚResponseÚPreparedRequest)ÚrequestÚgetÚheadÚpostÚpatchÚputÚdeleteÚoptions)ÚsessionÚSession)Úcodes)ÚRequestExceptionÚTimeoutÚURLRequiredÚTooManyRedirectsÚ	HTTPErrorÚConnectionErroré    N)ÚNullHandlerc               @   s   e  Z d  Z d d „  Z d S)r   c             C   s   d  S)N© )ÚselfÚrecordr   r   ú8/tmp/pip-ztkk0jow-build/pip/_vendor/requests/__init__.pyÚemitJ   s    zNullHandler.emitN)Ú__name__Ú
__module__Ú__qualname__r   r   r   r   r   r   I   s   r   ),Ú__doc__Ú	__title__Ú__version__Ú	__build__Ú
__author__Ú__license__Ú__copyright__Zpackages.urllib3.contribr   Zinject_into_urllib3ÚImportErrorÚ r   Úmodelsr   r   r   Úapir   r	   r
   r   r   r   r   r   Úsessionsr   r   Ústatus_codesr   Ú
exceptionsr   r   r   r   r   r   Úloggingr   ÚHandlerÚ	getLoggerr    Ú
addHandlerr   r   r   r   Ú<module>*   s.   :.