Python(105)
-
[python] crawler (공공데이터포털_관광코스별 관광지 상세 날씨 조회서비스_JSON)
Ver. Jupyter Notebook (Anaconda3) ▶ crawler_공공데이터포털_관광코스별 관광지 상세 날씨 조회서비스_JSON # 공공데이터 이용 방법 1. 공공데이터포털 (http://data.go.kr) 2. 필요한 데이터 검색 3. 활용신청 4. 참고문서.docx 참고하여 작성 # 요청url = 'http:서버에 요청하는 주소?요청변수(parameters)' # .docx파일의 항목구분 : 1은 필수 0은 선택 코딩: github JeongJaeyoung0/crawler Contribute to JeongJaeyoung0/crawler development by creating an account on GitHub. github.com 2021.05.11 # 관광코스별 관광지 상세 날..
2021.05.01 -
[python] crawler (공공데이터포털_여객터미널실시간 운항정보_XML)
Ver. Jupyter Notebook (Anaconda3) ▶ crawler_공공데이터포털_여객터미널실시간 운항정보_XML # 공공데이터 이용 방법 1. 공공데이터포털 (http://data.go.kr) 2. 필요한 데이터 검색 3. 활용신청 4. 참고문서.docx 참고하여 작성 # 요청url = 'http:서버에 요청하는 주소?요청변수(parameters)' # .docx파일의 항목구분 : 1은 필수 0은 선택 코딩: github JeongJaeyoung0/crawler Contribute to JeongJaeyoung0/crawler development by creating an account on GitHub. github.com 2021.05.10 # "백령도" 관련 여객정보 가져오기 pwd ..
2021.05.01 -
[python] crawler (instagram)
Ver. Jupyter Notebook (Anaconda3) ▶ crawler_instagram 수집: 사진, 날짜, 좋아요, 태그 코딩: github JeongJaeyoung0/crawler Contribute to JeongJaeyoung0/crawler development by creating an account on GitHub. github.com 2021.05.09 # crawler_instagram Step 1. 인스타 > 검색어 입력 > 첫번째 검색어 선택 > 사진 클릭 > 데이터 수집 Step 2. 이미지 저장할 폴더 생성 > 이미지 저장 pwd ### step 0. 준비 import pandas as pd import numpy as np from selenium import webd..
2021.05.01 -
[python] crawler (naver news)
Ver. Jupyter Notebook (Anaconda3) ▶ crawler_naver news 수집: 기사명, 날짜, 추천수, 좋아요…, 댓글 수, 댓글 코딩: github JeongJaeyoung0/crawler Contribute to JeongJaeyoung0/crawler development by creating an account on GitHub. github.com 2021.05.08 # crawler_naver news Step 1. 네이버 > 검색어 입력 > 뉴스> 네이버뉴스 url 수집 > 저장 (naver_news_url.xlsx) Step 2. naver_news_url.xlsx 불러오기 > 제목, 날짜, 댓글, 좋아요 크롤링 > 저장 (naver_news_keyword.xls..
2021.05.01 -
[python] crawler (naver blog)
Ver. Jupyter Notebook (Anaconda3) ▶ crawler_naver blog 수집: 제목, 닉네임, 날짜, 제목 코딩: github JeongJaeyoung0/crawler Contribute to JeongJaeyoung0/crawler development by creating an account on GitHub. github.com 2021.05.07 # crawler_naver blog Step 1. 네이버 > 검색어 입력 > VIEW > 블로그 > 옵션 > 기간 > url 수집 > 저장 (naver_blog_url.xlsx) Step 2. naver_blog_url.xlsx 불러오기 > 제목, 닉네임, 날짜, 제목 크롤링 > 저장 (naver_blog_content.xls..
2021.05.01 -
[python] crawler
Ver. Jupyter Notebook (Anaconda3) # 크롤러 하기위해 필요한것(cmd에서 설치) pip install selenium pip install regex (# 제거) pip install times pip install tqdm # 라이브러리 import sys# 시스템 import os# 시스템 import pandas as pd# 판다스 : 데이터분석 라이브러리 import numpy as np# 넘파이 : 숫자, 행렬 데이터 라이브러리 from bs4 import BeautifulSoup# html 데이터를 전처리 from selenium import webdriver# 웹 브라우저 자동화 from selenium.webdriver import ActionChains as A..
2021.04.30