Warning1 GuessedAtParserWarning: No parser was explicitly specified, so... 해결방법(BeaultifulSoup() 파서경고 해결하기!) 아래 코드는 bs4.py(라이브러리)파일에서 BeautifulSoup 관련해서 가져와서, 웹크롤링을 시도해본 기본적인 코드입니다. from bs4 import BeautifulSoup html_doc = """ The Dormouse's story Once upon a time there were three little sisters; and their names were Elsie, Lacie and Tillie; and they lived at the bottom of a well. ... """ soup = BeautifulSoup(html_doc) print("p : " , soup.p) 아래 코드를 PyCharm에서 실행(Shift + F10)해보면, 경고를 띄우게 됩니다. 에러가 아니라 경고이.. TroubleShooting 2023. 1. 21. 이전 1 다음