码迷,mamicode.com
首页 > 其他好文 > 详细

360搜索主页爬虫

时间:2020-12-19 12:36:43      阅读:1      评论:0      收藏:0      [点我收藏+]

标签:lazy   img   ima   搜索关键词   int   inf   word   com   htm   

# encoding: utf-8
import urllib.request
import urllib.parse
 
url = "https://www.so.com/s?q="
keyword = input("请输入搜索关键词")
keyword = urllib.parse.quote(keyword)
urlkeyword = url+keyword
print(urlkeyword)
response = urllib.request.urlopen(url=urlkeyword)
content = response.read()
print(content)
html = content.decode(‘UTF-8‘)
print(html)
with open("360shanxijiaotong.html", "w", encoding="utf-8") as f:
	f.write(html)

  技术图片

360搜索主页爬虫

标签:lazy   img   ima   搜索关键词   int   inf   word   com   htm   

原文地址:https://www.cnblogs.com/hhct/p/14134899.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!