네이버 뉴스 크롤러 github naver_news_crawling_perfect.py

 

======================================

# -*- coding: utf-8 -*-
  import requests
  from bs4 import BeautifulSoup
  import pandas as pd
  from datetime import datetime
   
  '''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  < naver 뉴스 전문 가져오기 >_select 사용
  - 네이버 뉴스만 가져와서 결과값 조금 작음
  - 결과 메모장 저장 -> 엑셀로 저장
   
  '''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  RESULT_PATH = 'D:/python study/beautifulSoup_ws/crawling_result/'
  now = datetime.now() #파일이름 현 시간으로 저장하기
   
  def get_news(n_url):
  news_detail = []
   
  breq = requests.get(n_url)
  bsoup = BeautifulSoup(breq.content, 'html.parser')
   
  title = bsoup.select('h3#articleTitle')[0].text #대괄호는 h3#articleTitle 인 것중 첫번째 그룹만 가져오겠다.
  news_detail.append(title)
   
  pdate = bsoup.select('.t11')[0].get_text()[:11]
  news_detail.append(pdate)
   
  _text = bsoup.select('#articleBodyContents')[0].get_text().replace('\n', " ")
  btext = _text.replace("// flash 오류를 우회하기 위한 함수 추가 function _flash_removeCallback() {}", "")
  news_detail.append(btext.strip())
   
  news_detail.append(n_url)
   
  pcompany = bsoup.select('#footer address')[0].a.get_text()
  news_detail.append(pcompany)
   
  return news_detail
   
  def crawler(maxpage,query,s_date,e_date):
   
  s_from = s_date.replace(".","")
  e_to = e_date.replace(".","")
  page = 1
  maxpage_t =(int(maxpage)-1)*10+1 # 11= 2페이지 21=3페이지 31=4페이지 ...81=9페이지 , 91=10페이지, 101=11페이지
  f = open("D:/python study/beautifulSoup_ws/crawling_result/contents_text.txt", 'w', encoding='utf-8')
   
  while page < maxpage_t:
   
  print(page)
   
  url = "https://search.naver.com/search.naver?where=news&query=" + query + "&sort=0&ds=" + s_date + "&de=" + e_date + "&nso=so%3Ar%2Cp%3Afrom" + s_from + "to" + e_to + "%2Ca%3A&start=" + str(page)
   
  req = requests.get(url)
  print(url)
  cont = req.content
  soup = BeautifulSoup(cont, 'html.parser')
  #print(soup)
   
  for urls in soup.select("._sp_each_url"):
  try :
  #print(urls["href"])
  if urls["href"].startswith("https://news.naver.com"):
  #print(urls["href"])
  news_detail = get_news(urls["href"])
  # pdate, pcompany, title, btext
  f.write("{}\t{}\t{}\t{}\t{}\n".format(news_detail[1], news_detail[4], news_detail[0], news_detail[2],news_detail[3])) # new style
  except Exception as e:
  print(e)
  continue
  page += 10
   
   
  f.close()
   
  def excel_make():
  data = pd.read_csv(RESULT_PATH+'contents_text.txt', sep='\t',header=None, error_bad_lines=False)
  data.columns = ['years','company','title','contents','link']
  print(data)
   
  xlsx_outputFileName = '%s-%s-%s %s시 %s분 %s초 result.xlsx' % (now.year, now.month, now.day, now.hour, now.minute, now.second)
  #xlsx_name = 'result' + '.xlsx'
  data.to_excel(RESULT_PATH+xlsx_outputFileName, encoding='utf-8')
   
   
  def main():
  maxpage = input("최대 출력할 페이지수 입력하시오: ")
  query = input("검색어 입력: ")
  s_date = input("시작날짜 입력(2019.01.01):") #2019.01.01
  e_date = input("끝날짜 입력(2019.04.28):") #2019.04.28
  crawler(maxpage,query,s_date,e_date) #검색된 네이버뉴스의 기사내용을 크롤링합니다.
   
  excel_make() #엑셀로 만들기
  main()

======================================

 

경축! 아무것도 안하여 에스천사게임즈가 새로운 모습으로 재오픈 하였습니다.
어린이용이며, 설치가 필요없는 브라우저 게임입니다.
https://s1004games.com

[출처] https://github.com/sbomhoo/naver_news_crawling_perfect

 

 

본 웹사이트는 광고를 포함하고 있습니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
번호 제목 글쓴이 날짜 조회 수
57 [python 인공지능] Deploy ML models with FastAPI, Docker, and Heroku | Tutorial 졸리운_곰 2025.07.08 467
56 [python 인공지능] [VSCode] VSCode에서 ipynb 파일을 HTML(PDF 등..)로 졸리운_곰 2025.05.27 289
55 [Python 인공지능] [파이썬을 이용한 한글 NLP] 03. 간단한 키워드 추출기 졸리운_곰 2025.01.29 459
54 [Python 인공지능] [ 한글 키워드 시각화 ] 파이썬 python 텍스트 마이닝 한글 ( 워드 클라우드 WordCloud, squrify 트리맵으로 빅데이터 마스터) file 졸리운_곰 2025.01.29 401
53 [Python 인공지능] 기계 학습의 A to Z : IPython notebook과 scikit-learn을 활용한 기계 학습 file 졸리운_곰 2024.08.10 523
52 [python] 인공지능 python : 한글 문서 자동 요약 - lexrank 졸리운_곰 2023.07.06 404
51 [python] 인공지능 katiehouse / django-scikit-learn-tutorial file 졸리운_곰 2023.06.03 664
50 [python] [Anaconda]가상환경 설치,삭제 file 졸리운_곰 2022.12.03 405
49 [python][머신러닝] Scikit-learn Tutorial: Machine Learning in Python file 졸리운_곰 2022.11.29 497
48 [python] 파이썬(sklearn) 사이킷런(sklearn) 기초 졸리운_곰 2022.08.20 321
47 [python] scikit-learn이란 file 졸리운_곰 2022.08.20 455
46 [anaconde3][python] Create environment for tensorflow 1.4 in Anaconda 3 졸리운_곰 2022.07.02 563
45 [python][인공지능] [TensorFlow] Anaconda 가상환경 이용하여 TensorFlow GPU 설치 졸리운_곰 2022.01.20 438
44 [Python 인공지능] TextRank 를 이용한 키워드 추출과 핵심 문장 추출 (구현과 실험) file 졸리운_곰 2021.11.22 597
43 [python][인공지능] FLASK를 이용하여 PYTHON에서 PYTORCH를 REST API로 배포하기 졸리운_곰 2021.03.20 364
42 [python 파이썬] Creating REST API for TensorFlow models file 졸리운_곰 2021.02.01 488
41 [python 파이썬 인공지능] Keras 모델을 REST API로 배포해보기 file 졸리운_곰 2021.02.01 411
40 [파이썬 머신러닝] Scikit-learn 기초 졸리운_곰 2020.01.31 579
39 파이썬으로 간단한 뉴럴 네트워크 만들기 How to Create a Simple Neural Network in Python file 졸리운_곰 2020.01.29 22636
38 Keras를 활용한 주식 가격 예측 file 졸리운_곰 2019.02.25 984
대표 김성준 주소 : 경기 용인 분당수지 U타워 등록번호 : 142-07-27414
통신판매업 신고 : 제2012-용인수지-0185호 출판업 신고 : 수지구청 제 123호 개인정보보호최고책임자 : 김성준 sjkim70@stechstar.com
대표전화 : 010-4589-2193 [fax] 02-6280-1294 COPYRIGHT(C) stechstar.com ALL RIGHTS RESERVED