不就是使用requests库或者urllib库进行HTTP链接调用接口 import requests res = requests.get('http://www.example.com/api/something_list') lst = res.json()
不就是使用
requests
库或者urllib
库进行HTTP链接调用接口