不能像老师一样直接ctrl+1导入re和urlparse啊,我crtl+1之后没有那个选项,其他的都有,有没有大神能解释下
2016-10-21
@xiaoqiang_123 head meta charset="utf-8" 这个改一下就可以了
2016-10-20
在from bs4 import beautifulsoup中 unresolved import:beautifulsoup解决方法:
右击项目,属性;选择"PyDev-Interpreter/Grammar";
点击链接"Click here to configure an interpreter not listed." ;
在"Libraries"内,点击"new egg/zip(s)",导入egg文件;
比如我的路径:C:\Python27\Lib\site-packages\beautifulsoup4-4.5.1-py2.7.egg
完成后重启
右击项目,属性;选择"PyDev-Interpreter/Grammar";
点击链接"Click here to configure an interpreter not listed." ;
在"Libraries"内,点击"new egg/zip(s)",导入egg文件;
比如我的路径:C:\Python27\Lib\site-packages\beautifulsoup4-4.5.1-py2.7.egg
完成后重启
python3.* 要这么写才可以
print(link.name,link['href'],link.getText())
print(link.name,link['href'],link.getText())
2016-10-19
貌似module名不能命名为bs4,因为会和bs4包冲突,在编译运行的时候报错“ from bs4 import BeautifulSoup
ImportError: cannot import name 'BeautifulSoup'”
ImportError: cannot import name 'BeautifulSoup'”
2016-10-17