AttributeError:抓取Wiki时,“ NoneType”对象没有属性“ find_all”

时间:2018-09-01 01:48:16

标签: python-3.x web-scraping beautifulsoup wikipedia

from bs4 import BeautifulSoup
import requests
import lxml

url = 'https://en.wikipedia.org/wiki/Berlin_Wall/'

cream = requests.get(url).content
soup= BeautifulSoup(cream, 'lxml')

table = soup.find('table', {'class' : 'infobox vcard'})
type(table)

table_rows = table.find_all('tr')

for tr in table_rows:
print(td.text)

我正在使用python3。我试图从Wikipedia页面上删除信息框,但一直在获取AttributeError:'NoneType'对象没有属性'find_all'。有人知道这个有什么问题吗?

1 个答案:

答案 0 :(得分:0)

您的脚本中有几个简单的错误:

  1. 从网址字符串中删除最后一个正斜杠(/)。
  

url = 'https://en.wikipedia.org/wiki/Berlin_Wall'

  1. td在您的循环中不存在,因此将其更改为tr
print(tr.text)