- 3
- 이니스프리
- 조회 수 594
import requests, json result_list = [] with requests.session() as s: url = 'https://trends.google.com/trends/api/topdailytrends?hl=ko&tz=-540&geo=US' html = s.get(url).text data = json.loads(str(html).split('\n')[1]) for i in range(10): result_list.append(data['default']['trendingSearches'][i]['title'])
곧바로 JSON으로 접근할 수 없게 약간의 장난(?)을 쳐놓았더군요 ^^
좋은 주말 되세요!
알피쥐님 포함 4명이 추천
추천인 4
작성자
댓글 3
권한이 없습니다.