xiaomusic/plugins/httpget.py

11 lines
296 B
Python
Raw Permalink Normal View History

2024-07-05 04:20:16 +00:00
import requests
def httpget(url):
global log
# 发起请求
response = requests.get(url, timeout=5) # 增加超时以避免长时间挂起
response.raise_for_status() # 如果响应不是200引发HTTPError异常
log.info(f"httpget url:{url} response:{response.text}")