아래 화면처럼 했는대
데이터를 가져오는 건 1,10,20,30 여기서 어떠한 부분이 잘못된것일까요?
import requests
from bs4 import BeautifulSoup
import pyautogui
keyword = pyautogui.prompt('검색어를 입력하세요')
lastpage = pyautogui.prompt('마지막 페이지 번호')
pageNum=1
for i in range(1, int(lastpage) * 10, 10) :
print(f"{pageNum}페이지 ==============================")
response = requests.get(f"https://search.naver.com/search.naver?sm=tab_hty.top&where=news&query={keyword}&start={lastpage}")
html = response.text
soup = BeautifulSoup(html,'html.parser')
links = soup.select('.news_tit')
for link in links :
title = link.text
url=link.attrs['href']
print(title,url)
pageNum = pageNum + 1
안쪽으로 들여쓰기한거와 안한게 차이가 있나요?