当我尝试在python 3.5中运行以下命令时,出现奇怪的提示
“输入文件名:”
我已经安装了BeautifulSoup4,我不确定该怎么办。
我要解析的网址如下: http://py4e-data.dr-chuck.net/known_by_Liala.html
以下代码:
import urllib.request, urllib.parse, urllib.error
from bs4 import BeautifulSoup
import ssl
# Ignore SSL certificate errors
ctx = ssl.create_default_context()
ctx.check_hostname = False
ctx.verify_mode = ssl.CERT_NONE
url = input('Enter - ')
html = urllib.request.urlopen(url, context=ctx).read()
soup = BeautifulSoup(html, 'html.parser')
# Retrieve all of the anchor tags
tags = soup('a')
for tag in tags:
print(tag.get('href', None))