크롤링1 [python] 뉴스 기사 크롤링 (newspaper 모듈) newspaper 모듈이란? newspaper는 사용자가 지정한 url에서 text를 추출해주는 모듈이다. newspaper 모듈 설치 python2와 python3 각각의 모듈 설치 방법이 다르니 아래 참고 # python 2 pip install newspaper # python 3 pip install newspaper3k newspaper 모듈을 이용한 뉴스 기사 크롤링 #사용자가 입력한 url에서 text를 크롤링 해주는 패키지 import from newspaper import Article #크롤링할 url 주소 url = 'http://www.hani.co.kr/arti/society/health/986131.html' #한국어이므로 language='ko' article = Article.. 2021. 3. 21. 이전 1 다음