도움이 필요하십니까? 나는 Python의 Beautiful Soup를 사용하여 특정 Craigslist 게시물을 긁어 모으는 프로젝트를 진행하고 있습니다. 게시물 제목 내에 발견 된 이모티콘을 성공적으로 표시 할 수 있지만 게시물 본문 내에서 실패했습니다. 다른 변형을 시도했지만 지금까지 아무 것도 작동하지 않았습니다. 어떤 도움을 주시면 감사하겠습니다.아름다운 수프를 사용한 이모티콘 인코딩
코드 :
f = open("clcondensed.txt", "w")
html2 = requests.get("https://raleigh.craigslist.org/wan/6078682335.html")
soup = BeautifulSoup(html2.content,"html.parser")
#Post Title
title = soup.find(id="titletextonly")
title1 = soup.title.string.encode("ascii","xmlcharrefreplace")
f.write(title1)
#Post Body
body = soup.find(id="postingbody")
body = str(body)
body = body.encode("ascii","xmlcharrefreplace")
f.write(body)
오류가 몸에서 수신 된 :
'ascii' codec can't decode byte 0xef in position 273: ordinal not in range(128)
다음과 유사 할 수 있습니다. http://stackoverflow.com/questions/9644099/python-ascii-codec-cant-decode-byte – anonyXmous