以下是錯誤:Python的錯誤 - AttributeError的: 'NoneType' 對象沒有屬性 '分裂'
文件 「F ** PY。」,第34行,在模塊
url_type = url.split('-')[0][-2:] #
這裏被整個街區:
fit_urls = []
for event_url in event_urls:
print event_url
try:
sock = urllib.urlopen(event_url)
event_html = sock.read()
event_soup = BeautifulSoup(event_html)
tds = event_soup.find_all('td')
for td in tds:
for link in td.find_all('a'):
url = link.get('href')
url_type = url.split('-')[0][-2:] letters
if url_type == 'ht':
#print url
fit_urls.append(url)
except HTTPError:
pass
`
沒有鏈接。 'link.get'產生'None',因爲裏面沒有''href''。 – TigerhawkT3
它看起來像'url = link.get('href')'返回'None',即鏈接中沒有找到URL(或者根據庫的行爲方式找不到鏈接) – user783836