Skip to content

Commit 50b8bb5

Browse files
authored
Update 네이버 증권 당일 거래 TOP 주식들 크롤링.py
1 parent 017b960 commit 50b8bb5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

네이버 증권 당일 거래 TOP 주식들 크롤링.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#네이버 증권 당일 거래 TOP 주식들 크롤링
77

88
def Stock_crawling(result):
9-
wd = webdriver.Chrome('/Users/jnhyn/Documents/Jun/4학년1학기/빅데이터/chromedriver')
9+
wd = webdriver.Chrome('chromedriver 디렉토리 위치')
1010
time.sleep(3)
1111

1212
url = "https://finance.naver.com/"
@@ -60,6 +60,6 @@ def main():
6060
Stock_crawling(result)
6161
print(result)
6262
CB_tbl = pd.DataFrame(result,columns =('name','price','updown','updown(%)'))
63-
CB_tbl.to_csv('./3-최준현-201835753.csv', encoding = 'cp949', mode = 'w',index = True)
63+
CB_tbl.to_csv('./Stock_crawling.csv', encoding = 'cp949', mode = 'w',index = True)
6464

65-
main()
65+
main()

0 commit comments

Comments
 (0)