본문 바로가기
파이썬

파이썬 AttributeError : 'NoneType'개체에 'split'속성이 없습니다.

by º기록 2020. 12. 9.
반응형

이 두 가지 기능을 가진 스크립트가 있습니다.

# 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

프로그램을 실행할 때 다음과 같은 오류가 발생합니다.

result.append(cite.string.split('/')[0])
AttributeError: 'NoneType' object has no attribute 'split'

출력 샘플 :

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'

 

해결 방법

 

문자열 내부에 "None"유형보다 아무것도없는 경우가 발생할 수 있으므로 문자열이 "None"이 아닌지 먼저 확인하는 것이 좋습니다.

# Extracting the sites
def CiteParser(content):
    soup = BeautifulSoup(content)
    #print soup
    print "---> site #: ",len(soup('cite'))
    result = []
    for cite in soup.find_all('cite'):
        if cite.string is not None:
            result.append(cite.string.split('/'))
            print cite
    return result

 

참조 페이지 https://stackoverflow.com/questions/25882670

 

 

반응형

댓글