requests库的用法
Posted qmjy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了requests库的用法相关的知识,希望对你有一定的参考价值。
import requests
headers = "headers头部文件"
url = ‘http://www.baidu.com/‘
html = requests.get(url,headers=headers)
html.encoding = ‘gbk‘ #转成该网站的格式
print(html.text)
详细用法请参见
↓↓↓↓↓↓↓↓↓↓↓↓↓↓
https://www.cnblogs.com/mzc1997/p/7813801.html
以上是关于requests库的用法的主要内容,如果未能解决你的问题,请参考以下文章