Error/python
python 크롤링할 때 Only the following pseudo-classes are implemented: nth-of-type
구글 크롬 개발자 도구에서 셀렉터 카피에서 오는 child 선택자인 nth-child를 지원하지 않는다고 한다. tr:nth-child(2)를 tr:nth-od-type(2)로 바꿔준다. 기존 # 기존 title = soup.select_one('#old_content > table > tbody > tr:nth-child(2) > td.title > div > a') 변경 후 #변경 title = soup.select_one('#old_content > table > tbody > tr:nth-of-type(2) > td.title > div > a')