写一个封装的接口
这是一个简单的封装接口,用于获取指定URL的JSON数据:
import requests
def get_json(url):
"""
获取指定URL的JSON数据
:param url: str, JSON数据的URL
:return: dict, JSON数据
"""
try:
response = requests.get(url)
response.raise_for_status()
except requests.exceptions.RequestException as e:
print(e)
return None
else:
return response.json()
这个接口使用了Python的requests库来发送HTTP请求。它接受一个URL作为参数,并返回一个字典,其中包含从该URL获取的JSON数据。如果在获取JSON数据时发生错误,它将返回None。
原文地址: https://www.cveoy.top/t/topic/Mn6 著作权归作者所有。请勿转载和采集!