摘要: import requests # GET请求 r = requests.get('http://httpbin.org/get') print(r.status_code, r.reason) print('GET请求', r.text) # 带参数的GET请求 r = requests.get( 阅读全文
posted @ 2020-07-10 07:39 topass123 阅读(152) 评论(0) 推荐(0) 编辑