python 中使用BeautifulSoup

来源:互联网 发布:订演唱会门票软件 编辑:程序博客网 时间:2024/05/01 02:07

安装:sudo pip install beautifulsoup4 

使用  from urllib.request import urlopen  导入的时候报错,改为

from bs4 import BeautifulSoup

使用urlopen的时候,from urllib.request import urlopen 这样导入提示没有request模块,改为

from urllib import urlopen

0 0
原创粉丝点击