12페이지 이후 print
먼저 답변 감사드려요. 돌아는 가는데요, 11페이지 마지막 기사까지만 추출이 돼요. 그 이후에도 페이지가 100넘게까지 있는데, 그건 추출이 안 되네요. 아래 코드로 했어요. import requestsfrom bs4 import BeautifulSoupreq = requests.get("http://www.donga.com/news/List/Enter/?p=1&prod=news&ymd=&m=") # 엔터치기soup = BeautifulSoup(req.text, 'html.parser') ## 이런 식으로 HTMl에 있는 코드를 다 가져온다for i in soup.select("#contents > div.page >a "): req2 = requests.get("http://www.donga.com/news/List/Enter/" + i['href']) # 페이지별 돌아다니기 soup2 = BeautifulSoup(req2.text, 'html.parser') for i in soup2.find_all("span", class_="tit") : print(i.text) # 기사 제목 가져오기