diff options
author | Kyomotoi <[email protected]> | 2020-12-20 17:14:41 +0800 |
---|---|---|
committer | Kyomotoi <[email protected]> | 2020-12-20 17:14:41 +0800 |
commit | 9bf222471d34cb756a4878b103ec82c6c4bfb191 (patch) | |
tree | 1420d498c41f71858e74b4926b8d7206b5235fe6 /ATRI/utils/utils_request | |
parent | 9ac2c2eb7ef2eb267e926d599dc077f5afae98f9 (diff) | |
download | ATRI-9bf222471d34cb756a4878b103ec82c6c4bfb191.tar.gz ATRI-9bf222471d34cb756a4878b103ec82c6c4bfb191.tar.bz2 ATRI-9bf222471d34cb756a4878b103ec82c6c4bfb191.zip |
[Update]
- 创建项目结构
Diffstat (limited to 'ATRI/utils/utils_request')
-rw-r--r-- | ATRI/utils/utils_request/__init__.py | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/ATRI/utils/utils_request/__init__.py b/ATRI/utils/utils_request/__init__.py deleted file mode 100644 index fd235bf..0000000 --- a/ATRI/utils/utils_request/__init__.py +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/bin/env python3 -# -*- encoding: utf-8 -*- -''' -@File : __init__.py -@Time : 2020/10/11 14:43:55 -@Author : Kyomotoi -@Contact : [email protected] -@Github : https://github.com/Kyomotoi -@License : Copyright © 2018-2020 Kyomotoi, All Rights Reserved. -''' -__author__ = 'kyomotoi' - -import requests -from typing import Optional -from aiohttp import ClientSession - -def request_get(url: str, params: Optional[dict] = None) -> bytes: - ''' - 通过 GET 方式请求 url。 - - :return: bytes - ''' - return requests.get(url, params).content - -def request_api_text(url: str) -> str: - res = requests.request("GET", url) - html = res.text - return html - -async def aio_get_bytes(url: str, headers: Optional[dict] = None) -> bytes: - ''' - 通过 GET 以 异步 方式请求 url。 - - :return: bytes - ''' - async with ClientSession() as asyncSession: - async with asyncSession.get(url, headers=headers) as resp: - result = await resp.read() - return result
\ No newline at end of file |