python爬虫案例3-http请求:模拟网页搜索-get信息

import re

import urllib.request

keywd="吴" #关键词

keywd=urllib.request.quote(keywd)  ##解决中文搜索问题

url="https://www.bing.com/search?q="+keywd  ##网址搜索

req=urllib.request.Request(url)  ##网页请求

data=urllib.request.urlopen(req).read()  ###爬取请求文件

file=open("E:/py/data/http_request.html","wb")  ##新建文件

file.write(data)  ##数据写入文件内

file.close()  ##结束

你可能感兴趣的:(python爬虫案例3-http请求:模拟网页搜索-get信息)