摘要: header的使用: imoprt requests url = '' head = { 'host':'www.baidu.com', 'Content-type':'application/json' } requests.get(url,headers = head) 阅读全文
posted @ 2020-09-20 23:19 文刀六日 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 1.下载文件的url 2.url是get还是post import requests down_url = '' res = request.get('url') --此时执行会返回200,此时的res只是个对象 with open('badu.apk','wb')as f: f.write(res 阅读全文
posted @ 2020-09-20 23:01 文刀六日 阅读(207) 评论(0) 推荐(0) 编辑