diff options
author | Kyomotoi <[email protected]> | 2020-11-22 01:01:43 +0800 |
---|---|---|
committer | Kyomotoi <[email protected]> | 2020-11-22 01:01:43 +0800 |
commit | f7198e8722f310926cf147bd0b218c5d9ef5d6c3 (patch) | |
tree | f4c3d0f2a003695b67e0e2018ec8d88898bcda90 /utils/utils_request | |
parent | 6c3e4c7f583be0006cd7bb913b7db81b987d2813 (diff) | |
download | ATRI-f7198e8722f310926cf147bd0b218c5d9ef5d6c3.tar.gz ATRI-f7198e8722f310926cf147bd0b218c5d9ef5d6c3.tar.bz2 ATRI-f7198e8722f310926cf147bd0b218c5d9ef5d6c3.zip |
[Update]
新增:
* 舆情检测
* 对涩图加以调用限制
修复:
* Pixiv插件全体
* 储存群聊信息时无法创建文件
优化:
* 部分代码重构,效率up
* 调整插件结构,使其看起来更舒服
Diffstat (limited to 'utils/utils_request')
-rw-r--r-- | utils/utils_request/__init__.py | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/utils/utils_request/__init__.py b/utils/utils_request/__init__.py deleted file mode 100644 index fd235bf..0000000 --- a/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 |