Google 트렌드 데이터를 가져 오는 데 필요한 라이브러리
다양한 지역 및 언어에서 검색어들의 인기도를 분석하는 Google 소유 웹 사이트
pip install pytrends
실행하여 Pytrends 라이브러리 설치
pip install pytrends
from pytrends.request import TrendReq
import pandas as pd
# hl = host language, tz = timezone
pytrends = TrendReq(hl='ko', tz=360)
pytrends.trending_searches(pn='south_korea')
나는 검색 급상승 리스트만 필요하였다.
부가 자료는 여기서!
pytrends api를 사용하여 Google 트렌드 데이터를 얻는 방법
당신의 시간이 헛되지 않는 글이 되겠습니다.
I'll write something that won't waste your time.