728x90
반응형
import requests
from bs4 import BeautifulSoup
headers = {'User-Agent':'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36'}
url = 'https://datalab.naver.com/keyword/realtimeList.naver?where=main'
res = requests.get(url, headers = headers)
soup = BeautifulSoup(res.content, 'html.parser')
data = soup.findAll('span','item_title')
for item in data:
print(item.get_text())
res1 = requests.get('https://datalab.naver.com/keyword/realtimeList.naver?where=main')
soup1 = BeautifulSoup(res.content, 'html.parser')
data1 = soup.findAll('span', 'item_title')
for item in data1:
print(item.get_text())
728x90
반응형
'코딩, 개발 꾸준히 하면 볕날선생만큼 한다.' 카테고리의 다른 글
클라우드 컴퓨팅 서비스 - 클라우딩 컴퓨터 서비스 (0) | 2020.08.28 |
---|---|
파이썬 크롤링을 위한 검색 코드 (0) | 2020.08.25 |
Unfortunately all *** could not be downloaded because some images were not downloadable. 0 is al l we got for this search filter! (0) | 2020.07.06 |
파이썬 최신버젼으로 업그레이드해서 설치하기 명령어 스크립트 (0) | 2020.07.06 |
*.py 파이썬 파일을 *.exe 실행파일로 만들기 py2exe 변환하기 (0) | 2020.07.06 |
어디선가 공유받은 키 (0) | 2020.07.02 |
메모 용도 / 트위터와 파이썬을 연결해주는 라이브러리(도구) tweepy 트위피 사용법 및 설치 방법. (0) | 2020.07.02 |
python index.py 파이썬 입문 파이썬 명령어 실행 방법 (0) | 2020.07.02 |