Metadata-Version: 2.1
Name: aiohttp-but-its-requests
Version: 0.1.0
Summary: The speed of aiohttp simplified to the level of requests.
Home-page: UNKNOWN
Author: TriC
License: UNKNOWN
Description: # aiohttp_but_its_requests
        The speed of aiohttp simplified to the level of requests.
        
        ## get
        ```
        aiohttp_but_its_requests.get(url)
        ```
        Returns a `ClientResponse` object.
        
        ## post
        ```
        aiohttp_but_its_requests.post(url, data)
        ```
        Returns a `ClientResponse` object.
        
        ## 
        ```
        aiohttp_but_its_requests.delete(url)
        ```
        Returns a `ClientResponse` object.
        
        ## head
        ```
        aiohttp_but_its_requests.head(url)
        ```
        Returns a `ClientResponse` object.
        
        ## options
        ```
        aiohttp_but_its_requests.options(url)
        ```
        Returns a `ClientResponse` object.
        
        
Keywords: aiohttp,requests,fast
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >= 3.6
Description-Content-Type: text/markdown
