반응형
for comment_entry in comment_feed.entry:
content = comment_entry.ToString()
parse = BeautifulSoup(content)
for con in parse.find('ns0:content'):
print con.string
s = con.string
file.write(s.encode('utf8'))
내가받는 오류 :
File "channel_search.py", line 108, in youtube_search
file.write(s.encode('utf8'))
AttributeError: 'NoneType' object has no attribute 'encode'
해결 방법
s
는 Nonetype 일 수 있습니다.
시험
s = con.string
if s:file.write(s.encode('utf8'))
# or if s is not None
#if you want to check only for None
참조 페이지 https://stackoverflow.com/questions/25967959
반응형
'파이썬' 카테고리의 다른 글
파이썬 Python urllib2.HTTPError : HTTP Error 503 : Service Unavailable on valid website (0) | 2020.12.08 |
---|---|
파이썬 Django 1.7-makemigrations 후 마이그레이션 실행시 "적용 할 마이그레이션 없음" (0) | 2020.12.08 |
파이썬에서 중첩 (이중) 루프 끊기 (0) | 2020.12.08 |
파이썬으로 목록에서 사전 만들기 (0) | 2020.12.08 |
파이썬 Python : dict의 변수를 네임 스페이스로로드 (0) | 2020.12.07 |
댓글