2022-05-21 14:55:23 +08:00
|
|
|
|
import traceback
|
2022-05-20 18:44:18 +08:00
|
|
|
|
from io import BytesIO
|
2022-05-21 14:55:23 +08:00
|
|
|
|
from pathlib import Path
|
|
|
|
|
from ssl import SSLCertVerificationError
|
|
|
|
|
from typing import Dict, Optional, Any, Union, Tuple
|
|
|
|
|
|
2022-05-20 18:44:18 +08:00
|
|
|
|
import httpx
|
2022-05-21 14:55:23 +08:00
|
|
|
|
from PIL import Image
|
2022-05-20 18:44:18 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async def get(url: str,
|
|
|
|
|
*,
|
|
|
|
|
headers: Optional[Dict[str, str]] = None,
|
|
|
|
|
params: Optional[Dict[str, Any]] = None,
|
|
|
|
|
timeout: Optional[int] = 20,
|
|
|
|
|
**kwargs) -> httpx.Response:
|
|
|
|
|
"""
|
|
|
|
|
说明:
|
|
|
|
|
httpx的get请求封装
|
|
|
|
|
参数:
|
|
|
|
|
:param url: url
|
|
|
|
|
:param headers: 请求头
|
|
|
|
|
:param params: params
|
|
|
|
|
:param timeout: 超时时间
|
|
|
|
|
"""
|
|
|
|
|
async with httpx.AsyncClient() as client:
|
|
|
|
|
return await client.get(url,
|
|
|
|
|
headers=headers,
|
|
|
|
|
params=params,
|
|
|
|
|
timeout=timeout,
|
|
|
|
|
**kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async def post(url: str,
|
|
|
|
|
*,
|
|
|
|
|
headers: Optional[Dict[str, str]] = None,
|
|
|
|
|
params: Optional[Dict[str, Any]] = None,
|
|
|
|
|
data: Optional[Dict[str, Any]] = None,
|
|
|
|
|
json: Optional[Dict[str, Union[Any, str]]] = None,
|
|
|
|
|
timeout: Optional[int] = 20,
|
|
|
|
|
**kwargs) -> httpx.Response:
|
|
|
|
|
"""
|
|
|
|
|
说明:
|
|
|
|
|
httpx的post请求封装
|
|
|
|
|
参数:
|
|
|
|
|
:param url: url
|
|
|
|
|
:param headers: 请求头
|
|
|
|
|
:param params: params
|
|
|
|
|
:param data: data
|
|
|
|
|
:param json: json
|
|
|
|
|
:param timeout: 超时时间
|
|
|
|
|
"""
|
|
|
|
|
async with httpx.AsyncClient() as client:
|
|
|
|
|
return await client.post(url,
|
|
|
|
|
headers=headers,
|
|
|
|
|
params=params,
|
|
|
|
|
data=data,
|
|
|
|
|
json=json,
|
|
|
|
|
timeout=timeout,
|
|
|
|
|
**kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async def get_img(url: str,
|
|
|
|
|
*,
|
|
|
|
|
headers: Optional[Dict[str, str]] = None,
|
|
|
|
|
params: Optional[Dict[str, Any]] = None,
|
|
|
|
|
timeout: Optional[int] = 20,
|
|
|
|
|
save_path: Optional[Union[str, Path]] = None,
|
|
|
|
|
size: Optional[Tuple[int, int]] = None,
|
|
|
|
|
mode: Optional[str] = None,
|
2022-05-21 14:55:23 +08:00
|
|
|
|
crop: Optional[Tuple[int, int, int, int]] = None,
|
2022-05-20 18:44:18 +08:00
|
|
|
|
**kwargs) -> Union[str, Image.Image]:
|
|
|
|
|
"""
|
|
|
|
|
说明:
|
|
|
|
|
httpx的get请求封装,获取图片
|
|
|
|
|
参数:
|
|
|
|
|
:param url: url
|
|
|
|
|
:param headers: 请求头
|
|
|
|
|
:param params: params
|
|
|
|
|
:param timeout: 超时时间
|
|
|
|
|
:param save_path: 保存路径,为空则不保存
|
|
|
|
|
:param size: 图片尺寸,为空则不做修改
|
|
|
|
|
:param mode: 图片模式,为空则不做修改
|
2022-05-21 14:55:23 +08:00
|
|
|
|
:param crop: 图片裁剪,为空则不做修改
|
2022-05-20 18:44:18 +08:00
|
|
|
|
"""
|
2022-05-21 14:55:23 +08:00
|
|
|
|
try:
|
|
|
|
|
async with httpx.AsyncClient() as client:
|
|
|
|
|
resp = await client.get(url,
|
|
|
|
|
headers=headers,
|
|
|
|
|
params=params,
|
|
|
|
|
timeout=timeout,
|
|
|
|
|
**kwargs)
|
|
|
|
|
img = Image.open(BytesIO(resp.read()))
|
|
|
|
|
if size:
|
|
|
|
|
img = img.resize(size, Image.ANTIALIAS)
|
|
|
|
|
if mode:
|
|
|
|
|
img = img.convert(mode)
|
|
|
|
|
if crop:
|
|
|
|
|
img = img.crop(crop)
|
|
|
|
|
if save_path:
|
|
|
|
|
if isinstance(save_path, str):
|
|
|
|
|
save_path = Path(save_path)
|
|
|
|
|
save_path.parent.mkdir(parents=True, exist_ok=True)
|
|
|
|
|
img.save(save_path)
|
|
|
|
|
return img
|
|
|
|
|
except SSLCertVerificationError:
|
|
|
|
|
async with httpx.AsyncClient() as client:
|
|
|
|
|
resp = await client.get(url.replace('https', 'http'),
|
|
|
|
|
headers=headers,
|
|
|
|
|
params=params,
|
|
|
|
|
timeout=timeout,
|
|
|
|
|
**kwargs)
|
2022-05-20 18:44:18 +08:00
|
|
|
|
img = Image.open(BytesIO(resp.read()))
|
|
|
|
|
if size:
|
|
|
|
|
img = img.resize(size, Image.ANTIALIAS)
|
|
|
|
|
if mode:
|
|
|
|
|
img = img.convert(mode)
|
2022-05-21 14:55:23 +08:00
|
|
|
|
if crop:
|
|
|
|
|
img = img.crop(crop)
|
2022-05-20 18:44:18 +08:00
|
|
|
|
if save_path:
|
|
|
|
|
if isinstance(save_path, str):
|
|
|
|
|
save_path = Path(save_path)
|
|
|
|
|
save_path.parent.mkdir(parents=True, exist_ok=True)
|
|
|
|
|
img.save(save_path)
|
|
|
|
|
return img
|
2022-05-21 14:55:23 +08:00
|
|
|
|
except Exception:
|
|
|
|
|
traceback.print_exc()
|