我正在从Wiki页面中提取url链接,并在尝试解析某些链接时出现“ValueError”。我正在寻找一种方法来忽略错误或解决问题。似乎当循环提取链接时,它会运行到它不能识别为链接和回溯的链接。
from bs4 import BeautifulSoup
import urllib.request, urllib.parse, urllib.error
import ssl
import re
ctx = ssl.create_default_context()
ctx.check_hostname = False
ctx.verify_mode = ssl.CERT_NONE
url = input("Enter First Link: ")
if len(url)<1: url = "https://www.bing.com/search?q=k+means+wiki&src=IE-SearchBox&FORM=IENAD2"
position = 18
process = 7
#to repeat 18 times#
for i in range(process):
html = urllib.request.urlopen(url, context=ctx)
soup = BeautifulSoup(html, 'html.parser')
tags = soup('a')
count = 0
for tag in tags:
count = count +1
#make it stop at position 3#
if count>position:
break
url = tag.get('href', None)
print(url)
Raises:
ValueError Traceback (most recent call last)
ValueError: unknown url type: '/search?q=Cluster+analysis%20wikipedia&FORM=WIKIRE'
你可以把它放在循环中:
for i in range(process):
try:
"line of code causes the problem"
except ValueError:
print("invalid url")
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。