Skip to content
컴퓨터잡담
2021.08.22 11:39

파이썬 다음 증권의 주가 가져오기

조회 수 1452 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

파이썬 다음 증권의 주가 가져오기

 

 

import requests
import json
import pandas as pd
 
def get_price(coden):
    # DATA를 불러오는 부분 입니다.
    url = 'http://finance.daum.net/api/charts/A%s/days?limit=%d&adjusted=true'%(coden)
    headers = {
                'Accept''application/json, text/plain, */*',
                'Accept-Encoding''gzip, deflate',
                'Accept-Language''ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7',
                'Connection''keep-alive',
                'Cookie''GS_font_Name_no=0; GS_font_size=16; _ga=GA1.3.937989519.1493034297; webid=bb619e03ecbf4672b8d38a3fcedc3f8c; _ga=GA1.2.937989519.1493034297; _gid=GA1.2.215330840.1541556419; KAKAO_STOCK_RECENT=[%22A069500%22]; recentMenus=[{%22destination%22:%22chart%22%2C%22title%22:%22%EC%B0%A8%ED%8A%B8%22}%2C{%22destination%22:%22current%22%2C%22title%22:%22%ED%98%84%EC%9E%AC%EA%B0%80%22}]; TIARA=C-Tax5zAJ3L1CwQFDxYNxe-9yt4xuvAcw3IjfDg6hlCbJ_KXLZZhwEPhrMuSc5Rv1oty5obaYZzBQS5Du9ne5x7XZds-vHVF; webid_sync=1541565778037; _gat_gtag_UA_128578811_1=1; _dfs=VFlXMkVwUGJENlVvc1B3V2NaV1pFdHhpNTVZdnRZTWFZQWZwTzBPYWRxMFNVL3VrODRLY1VlbXI0dHhBZlJzcE03SS9Vblh0U2p2L2V2b3hQbU5mNlE9PS0tcGI2aXQrZ21qY0hFbzJ0S1hkaEhrZz09--6eba3111e6ac36d893bbc58439d2a3e0304c7cf3',
                'Host''finance.daum.net',
                'If-None-Match''W/"23501689faaaf24452ece4a039a904fd"',
                'Referer''http://finance.daum.net/quotes/A069500',
                'User-Agent':'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'
                }
    headers['Referer'] = 'http://finance.daum.net/quotes/A%s'%code
    r = requests.get(urlheaders = headers)
    
    # DATA를 보기 좋게 편집하는 부분 입니다.
    data = json.loads(r.text)
    df = pd.DataFrame(data['data'])
    df.index = pd.to_datetime(df['candleTime'])
    
    return df

print(get_price('006980',5))

 

결과는 최근 5일간의 가격정보를 가져옵니다.

Copyright (C) Microsoft Corporation. All rights reserved.

새로운 크로스 플랫폼 PowerShell 사용 https://aka.ms/pscore6
PS H:\python\py_code> & H:/python/python.exe h:/python/py_code/카카오라인/다음증권.py
symbolCode        date             candleTime  tradePrice  openingPrice  highPrice  lowPrice  candleAccTradePrice  candleAccTradeVolume tradeTime      timestamp change  changeRate  changePrice
candleTime
2021-08-13    A006980  2021-08-13  2021-08-13 00:00:00.0     33500.0       34250.0    34450.0   32950.0            800479000                 23991    153030  1629150648065   FALL    0.021898        750.0
2021-08-17    A006980  2021-08-17  2021-08-17 00:00:00.0     32250.0       33650.0    33850.0   31850.0            950686500                 29343    153012  1629237048540   FALL    0.037313       1250.0
2021-08-18    A006980  2021-08-18  2021-08-18 00:00:00.0     32450.0       31600.0    32650.0   31600.0            507615050                 15699    153030  1629323449741   RISE    0.006202        200.0
2021-08-19    A006980  2021-08-19  2021-08-19 00:00:00.0     31100.0       32200.0    32500.0   30800.0            811751150                 25806    153030  1629409848895   FALL    0.041602       1350.0
2021-08-20    A006980  2021-08-20  2021-08-20 00:00:00.0     29850.0       31200.0    31450.0   29700.0            938633350                 31126    153026  1629451601975   FALL    0.040193       1250.0
PS H:\python\py_code> 

 

https://steemit.com/kr/@thrufore/python-daum--1541574674320

 

로그인 후 댓글쓰기가 가능합니다.

?

  1. 09
    Mar 2023
    09:59

    스프레드시트에서 수정, 삭제 버튼 만들기

    Category[Docs]스프레드시트 Views1820
    Read More
  2. 28
    Jun 2016
    00:37

    xe 타이틀 게시판 이름 없애기

    CategoryServer Views1803
    Read More
  3. 06
    Sep 2016
    20:32

    Apache에 대한 mod_proxy 지원 구성

    CategoryServer Views1801
    Read More
  4. 31
    May 2021
    00:08

    파이썬 사이트 정보 가져와서 필요한 내용 추출하기

    Category컴퓨터잡담 Views1779
    Read More
  5. 08
    Jan 2015
    23:26

    컴퓨터가 많이 느리다면?

    CategoryWindowsTip Views1777
    Read More
  6. 11
    Feb 2015
    14:39

    윈도우 XP SP3 와 Windows 8.1 두가지 부팅 메뉴얼

    CategoryWindowsTip Views1768
    Read More
  7. 08
    Jul 2021
    12:08

    KM Wakeup 절전모드 예약 및 깨우는 프로그램

    Category컴퓨터잡담 Views1763
    Read More
  8. 06
    Sep 2021
    13:34

    키움증권 OpenAPI 당황스러움

    Category파이썬 Views1749
    Read More
  9. 30
    Apr 2016
    12:26

    서버 부하상태 체크

    CategoryServer Views1709
    Read More
  10. 22
    Jun 2021
    08:01

    파이썬 리스트에 데이터 삽입하기

    Category컴퓨터잡담 Views1707
    Read More
  11. 23
    Dec 2014
    18:09

    익스플로러 ftp 정상화 시키기

    CategoryWindowsTip Views1660
    Read More
  12. 10
    Mar 2023
    10:14

    스프레드시트의 값의 변화에 따라 지메일로 메일을 보내는 스크립트

    Category[Docs]스프레드시트 Views1660
    Read More
  13. 16
    Mar 2016
    12:18

    [Apache] mod_expires .htaccess을 수정하여 브라우저 캐싱하기

    CategoryServer Views1657
    Read More
  14. 19
    Aug 2016
    15:10

    XE file cache 활용

    CategoryServer Views1648
    Read More
  15. 27
    Jan 2015
    07:33

    IE 익스플로러 메뉴 바탕이 검정색으로 변했을경우 대처방법

    CategoryWindowsTip Views1644
    Read More
  16. 25
    Mar 2016
    08:58

    [아파치 error.log] Fatal Error Unable to reattach to base address

    CategoryServer Views1643
    Read More
  17. 05
    Jun 2021
    23:13

    파이썬 한우정액 정보 스프레드로 추출하기

    Category컴퓨터잡담 Views1625
    Read More
  18. 23
    Jun 2021
    13:32

    파이썬 멀티라벨 소스 줄이기

    Category컴퓨터잡담 Views1616
    Read More
  19. 16
    Jun 2021
    08:08

    Python 파일을 exe파일로 컴파일하기

    Category컴퓨터잡담 Views1611
    Read More
  20. 02
    Sep 2021
    23:14

    [python] 윈도우 파이썬 모듈 설치 방법 (특정프로그램 설치 없이 기본프로그램 활용)

    Category컴퓨터잡담 Views1580
    Read More
Board Pagination Prev 1 ... 41 42 43 44 45 46 Next
/ 46

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소