为了账号安全,请及时绑定邮箱和手机立即绑定

为什么下面的代码爬不出图片(想爬妹子^_^)

from urllib import request
from bs4 import BeautifulSoup
import ssl
ssl._create_default_https_context = ssl._create_unverified_context
f = request.urlopen("https://www.zhihu.com/question/29815334")
html = f.read()
soup = BeautifulSoup(html, "html5lib")
# print(soup.prettify())
p = soup.select("img")
# print(p[2])
# for i in p:
#     print(i)
# x = p[0]["src"]
# print(x)
i = 0
while True:
   x = p[i]["src"]
   name = "/Users/lcycq/Desktop/BT/%d.jpg"%i
   i += 1
   if i >= len(p):
       break
   if not x.startswith('http'):
       continue
   request.urlretrieve(x, filename='name')

正在回答

1 回答

print一下最开始的html,如果输出不行或者乱码的话,先decode('utf-8),然后没有网址的图片具体目标分析,应该是解析网页图片哪里出现了错误,有些不一定是src标签里面的或许。

0 回复 有任何疑惑可以回复我~
#1

lcycq 提问者

谢谢,后来找到原因了,是最后name多加了引号?
2017-06-01 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
初识Python
  • 参与学习       758623    人
  • 解答问题       8667    个

学python入门视频教程,让你快速入门并能编写简单的Python程序

进入课程

为什么下面的代码爬不出图片(想爬妹子^_^)

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信