url := "https://www.naver.com"


req := ComObjCreate("WinHttp.WinHttpRequest.5.1")

req.open("GET", url)

req.Send()

req.WaitForResponse()


doc := ComObjCreate("HTMLfile")

doc.open()

doc.write(req.ResponseText)

doc.close()


while doc.readyState <> "complete"

Sleep, 20


FormatTime, currentTime, , yyyy.MM.dd HH:mm:ss

trends := "네이버 실시간 검색어 - "

. currentTime

. "`n`n"


Loop, 20

trends .= A_Index . "위: "

. doc.getElementsByClassName("ah_roll_area PM_CL_realtimeKeyword_rolling")[0].getElementsByClassName("ah_k")[A_Index - 1].InnerHTML

. "`n"


MsgBox % trends


네이버 실시간 검색어 크롤링이 필요한 분이 있으신 것 같아 간단하게 작성해보았습니다.



PS. 테일스타에 글이나 댓글을 작성할때마다 항상 불편함을 느끼는데, 들여쓰기가 전부 제거가 되어 가독성을 해치네요..


답글