访问网站时基本的python请求错误

时间:2019-06-08 03:18:23

标签: python web-scraping plugins beautifulsoup python-requests

运行脚本会出现此意外的令牌错误和beautifulsoup错误。我看了很多指南,但似乎都没有用。这将提示我的python设置而不是请求或BS有问题。我只有run apt-get remove pythonget-get remove python-pip,然后都重新安装了它们。

无论如何,输出错误:

$./test.py
import-im6.q16: not authorized `urllib3' @ error/constitute.c/WriteImage/1037.
from: can't read /var/mail/bs4
./test.py: line 3: syntax error near unexpected token `('
./test.py: line 3: `http = urllib3.PoolManager()'
import urllib3
from bs4 import BeautifulSoup
http = urllib3.PoolManager()
r = http.request('GET', 'http://dustyfeet.com')
soup = BeautifulSoup(r.data, 'lxml')
print (soup.title)
print (soup.title.text)

1 个答案:

答案 0 :(得分:0)

您确定python正在执行此文件吗?
尝试使用$ python ./test.py而不是$ ./test.py来运行它,以确保默认外壳程序不执行您的脚本。