欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

requests访问百度

程序员文章站 2022-05-08 09:59:43
...

控制台输出百度网页源代码

def start_request(url)
	response = requests.get(url)
	response.encoding("utf-8")
	return response

response = start_request("https://www.baidu.com")
print(response.text)   # 百度的网页源代码
相关标签: requests