我试图在Python上使用bs4制作一个蜘蛛,我已经使用pip和easy_install安装了bs4,但是一旦我使用PyCharm运行程序,就会出错:
Traceback (most recent call last):
File "C:/PyCharm Project/bs4.py", line 3, in <module>
from bs4 import BeautifulSoup
File "C:\PyCharm Project\bs4.py", line 3, in <module>
from bs4 import BeautifulSoup
ImportError: cannot import name 'BeautifulSoup'
Process finished with exit code 1
Run Code Online (Sandbox Code Playgroud)
但是在cmd提示符中没有出现此错误:
C:\WINDOWS\system32>python
Python 3.5.0 (v3.5.0:374f501f4567, Sep 13 2015, 02:16:59) [MSC v.1900 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from bs4 import BeautifulSoup
>>>
>>> html_doc = """
... <html><head><title>The Dormouse's story</title></head>
... <body>
... <p class="title"><b>The Dormouse's story</b></p>
...
... <p class="story">Once upon a time there were three little sisters; and their names were
... <a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>,
... <a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and
... <a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>;
... and they lived at the bottom of a well.</p>
...
... <p class="story">...</p>
... """
>>>
>>> # create a bs object using a HTML page
... soup = BeautifulSoup(html_doc, 'html.parser', from_encoding='utf-8')
>>> soup.title
<title>The Dormouse's story</title>
>>> soup.title.string
"The Dormouse's story"
>>>
Run Code Online (Sandbox Code Playgroud)
您调用了脚本C:/PyCharm Project/bs4.py",from bs4 import BeautifulSoup实际上是在尝试BeautifulSoup从您自己的脚本而不是bs4lib 导入,因此您需要重命名它并删除.pyc目录中的任何文件.
| 归档时间: |
|
| 查看次数: |
9159 次 |
| 最近记录: |