-
Notifications
You must be signed in to change notification settings - Fork 1
/
secondhand_crolling.py
179 lines (145 loc) · 5.48 KB
/
secondhand_crolling.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
from selenium import webdriver
import time
import datetime
from selenium.webdriver.common.keys import Keys
import pyperclip
import pandas as pd
# 검색할 물건
thing = '맥북프로 m1'
# 총 몇 페이지 자료를 모을지 선택
total_page = 5
# 페이지 개수 나누기
total_next = total_page // 10
last_page = total_page - total_next * 10
# datetime
now = datetime.datetime.now()
today = now.strftime('%Y-%m-%d')
# 데이터프레임 만들기 위한 박스 만들기
datas = []
# 중고나라 들어가기
driver = webdriver.Chrome('/Users/choewonjun/Downloads/chromedriver')
driver.implicitly_wait(3)
driver.get('https://cafe.naver.com/joonggonara')
driver.maximize_window()
time.sleep(1)
# 로그인 버튼을 찾고 클릭합니다.
login_btn = driver.find_element_by_css_selector('#gnb_login_button')
login_btn.click()
time.sleep(1)
# id, pw 입력할 곳을 찾습니다.
tag_id = driver.find_element_by_name('id')
tag_pw = driver.find_element_by_name('pw')
tag_id.clear()
time.sleep(1)
# id 입력
tag_id.click()
pyperclip.copy('####')
tag_id.send_keys(Keys.COMMAND, 'v')
time.sleep(1)
# pw 입력
tag_pw.click()
pyperclip.copy('####')
tag_pw.send_keys(Keys.COMMAND, 'v')
time.sleep(1)
# 로그인 버튼을 클릭합니다
login_btn = driver.find_element_by_id('log.login')
login_btn.click()
# 검색
driver.find_element_by_css_selector('#topLayerQueryInput').send_keys(thing)
driver.find_element_by_css_selector('#cafe-search .btn').click()
time.sleep(1)
# iframe 들어가기
driver.switch_to.frame('cafe_main')
# 제목만으로 바꾸기
driver.find_element_by_css_selector('#currentSearchByTop').click()
time.sleep(1)
driver.find_elements_by_css_selector('#sl_general li')[1].click()
time.sleep(1)
driver.find_element_by_css_selector('.btn-search-green').click()
time.sleep(1)
# 첫줄부터 끝줄까지 크롤링 함수 정의(만약 "이전" 버튼이 있으면 num은 1 아니면 0 )
def crolling(num):
# 게시글 들어가는 반복문
with_before = 0
for i in range(len(driver.find_elements_by_css_selector('.article'))):
# 게시글 들어가기
articles = driver.find_elements_by_css_selector('a.article')[i]
articles.click()
time.sleep(1)
# 정보추출
write_date = driver.find_element_by_css_selector('.date').text
product_title = driver.find_element_by_css_selector('h3.title_text').text
url = driver.find_element_by_css_selector('.button_url').get_attribute('href')
# 가격을 못찾으면 그냥 빈칸 입력
try:
# 가격 문자열을 숫자로 바꾸기
product_price_str = driver.find_element_by_css_selector('.ProductPrice').text
price_no_won = product_price_str[:-1]
price_no_won_shim = price_no_won.replace(',', '')
product_price = int(price_no_won_shim)
except:
# 제목에서 가격 문자열 추출
try:
product_title = product_title.replace('[', '')
product_title = product_title.replace(']', '&')
product_price_str = product_title.split('&')[-2]
# 가격 문자열을 숫자로 바꾸기
price_no_won = product_price_str[:-1]
price_no_won_shim = price_no_won.replace(',', '')
product_price = int(price_no_won_shim)
except:
product_price = ''
# 판매 상태 정보 저장
try:
status = driver.find_element_by_css_selector('.SaleLabel').text
# 판매 상태를 '완료' 나 '판매' 로 통일
if status == '예약중':
status = '완료'
elif status == '판매(안전)':
status = '판매'
except:
status = "알수없음"
# 데이터프레임에 작성
datas.append([write_date, status, product_title, url, product_price])
# 뒤로가기
driver.back()
driver.switch_to.frame('cafe_main')
# 다음 게시글 page 이동
pages = driver.find_elements_by_css_selector('.prev-next a')[page + 1 + num]
pages.click()
for i in range(total_next + 1):
# 마지막 10단위 페이지일 때
if i == 0:
# 다음페이지 클릭 반복문
for page in range(10):
crolling(0)
elif i > 0 and i != total_next:
for page in range(10):
crolling(1)
elif i == total_next:
for page in range(last_page):
crolling(1)
df = pd.DataFrame(data=datas, columns=['작성날짜', '판매 상태', '제목', 'url', '가격'])
# selenium 끝내기
driver.quit()
# 중복된 데이터 삭제
df.drop_duplicates(['제목'], inplace=True)
# 가격이 비이상적인 데이터 삭제하기
q1 = df['가격'].quantile(0.25)
q3 = df['가격'].quantile(0.75)
iqr = q3 - q1
condition = (df['가격'] > q3 + 1.5 * iqr) | (df['가격'] < q1 - 1.5 * iqr)
df.drop(df[condition].index, inplace=True)
# 제목에 '삽니다' 라는 말이 있으면 삭제
condition_buy = df['제목'].str.contains('삽니다')
df.drop(df[condition_buy].index, inplace=True)
# 가격이 낮은 순서대로 정렬하기
df = df.sort_values('가격')
# 만들어진 df를 엑셀에 저장하기
writer = pd.ExcelWriter(f'중고나라 {thing} 매물.xlsx')
df.to_excel(writer, f'{today}')
writer.save()
# pandas 소수 출력값을 소수 아래 0 자리까지 표시하도록 설정
pd.set_option('display.float_format', lambda x: '%.f' % x)
# 가격 칼럼에 대한 요약 출력
print(df['가격'].describe())