我正在测试一些代码,并得到一个奇怪的错误,应该是相当简单的。我的代码如下,正在返回:
ImportError: No module named request
我的代码如下:
import urllib.request, urllib.parse, urllib.error
from bs4 import BeautifulSoup
url = ('Enter- ')
html = urllib.request.urlopen(url).read()
soup = BeautifulSoup(html, 'html.parser')
# retrieve all of the anchor tags
tags = soup('a')
for tag in tags:
print(tag.get('href', None))
这次我做错了什么?我知道它在代码的第一行,但对库来说是很新的,所以我假设我弄乱了一些基本的东西!