无法在Windows10,Python3.4-webscraping上安装BeautifulSoup

时间:2017-07-13 01:35:39

标签: python web-scraping beautifulsoup bs4

我已经研究了整个网站如何安装美味的汤。我安装了selenium

selenium scrnshot

我目前正在尝试提取使用Python的工作,也包括工作的详细信息,如location,i,e;职位,工资(如果发布)等。在互联网上作为html表中的最后一个。不要完全咀嚼我...给我一点休息,我正在学习。

我知道我需要通过

分开这些段落,但是如何解决这个问题,就是我陷入困境的地方。这是我到目前为止所做的。

import parser
import urllib.request
import html.entities
import selenium
import re

sauce = urllib.request.urlopen('http://Indeed.com/').read()
tb = re.find_all('<p>')
print(sauce)

我认为这是一个错误:

  

回溯(最近一次调用最后一次):文件&#34; C:/Devel/BSoup4.py" ;,行   8,在       table = re.find_all(&#39;

&#39;)AttributeError:&#39; module&#39;对象没有属性&#39; find_all&#39;

请帮忙。先感谢您!

1 个答案:

答案 0 :(得分:0)

根据docs

语法为re.findall()而非find_all