python-爬虫1----爬取百度搜索

python-爬虫1----爬取百度搜索

from urllib import request  #导入request模块
import re
url=r"http://www.baidu.com/"   #设置url,请求网址
#发送请求,获取相应信息,请求对象
#,request自动创建
req=request.Request(url)#创建自定义请求对象
response=request.urlopen(req).read().decode()
#decode(解码)
#ecode(编码)
pat=r"(.*?)"#标题部分
data=re.findall(pat,response)
print(data[0])#打印

你可能感兴趣的:(python-爬虫1----爬取百度搜索)