Mam skrypt z tych dwóch funkcji:AttributeError: obiekt 'NoneType' nie ma atrybutu 'rozłam'
# Getting content of each page
def GetContent(url):
response = requests.get(url)
return response.content
# Extracting the sites
def CiteParser(content):
soup = BeautifulSoup(content)
print "---> site #: ",len(soup('cite'))
result = []
for cite in soup.find_all('cite'):
result.append(cite.string.split('/')[0])
return result
Kiedy uruchamiam program, mam następujący błąd: Próbka
result.append(cite.string.split('/')[0])
AttributeError: 'NoneType' object has no attribute 'split'
Output :
URL: <URL That I use to search 'can be google, bing, etc'>
---> site #: 10
site1.com
.
.
.
site10.com
URL: <URL That I use to search 'can be google, bing, etc'>
File "python.py", line 49, in CiteParser
result.append(cite.string.split('/')[0])
AttributeError: 'NoneType' object has no attribute 'split'
można podać przykład wejście dla parametru partnerskiej? – Bryan
'cite.string' zwraca ci' NoneType' – cppcoder
@ cppcoder Jak mogę się pozbyć tego błędu? – MLSC