Python3网络爬虫之二:BeautifulSoup安装及问题解决

BeautifulSoup安装及问题解决

关于BeautifulSoup安装,请参考下列博文:

  1. BeautifulSoup安装使用
  2. 网络爬虫BeautifulSoup

在pycharm安装BeautifulSoup的时候,可能会出现一些安装不成功的情况,如下面的图片:

Python3网络爬虫之二:BeautifulSoup安装及问题解决_第1张图片
Python3网络爬虫之二:BeautifulSoup安装及问题解决_第2张图片
会出现下面的安装问题Python3网络爬虫之二:BeautifulSoup安装及问题解决_第3张图片
如果在代码框输入:from bs4 import BeautifulSoup会在编译时不通过,提醒没有该模块。
不成功,就找到下面蓝色的beautifulsoup4下载,解决。

下面练习一段代码:

from urllib.request import urlopen
from bs4 import BeautifulSoup
import importlib
html = urlopen("http://www.pythonscraping.com/pages/warandpeace.html")
bsobj = BeautifulSoup(html)
namelist = bsobj.findAll("span",{"class":{"green","red"}})

for name in namelist:
    #print(tagName,tagAttributes)
    print(name.get_text())

Python3网络爬虫之二:BeautifulSoup安装及问题解决_第4张图片

你可能感兴趣的:(python爬虫)