■ get_market_ticker_list 함수를 사용해 특정 기준일의 상장된 종목 코드(단축 코드) 리스트를 구하는 방법을 보여준다.
▶ main.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
from pykrx import stock baseDate = "20240620" tickerList = stock.get_market_ticker_list(baseDate ) # KOSPI allTickerList = stock.get_market_ticker_list(baseDate, market = "ALL" ) kospiTickerList = stock.get_market_ticker_list(baseDate, market = "KOSPI" ) kosdaqTickerList = stock.get_market_ticker_list(baseDate, market = "KOSDAQ") konexTickerList = stock.get_market_ticker_list(baseDate, market = "KONEX" ) print(len(tickerList )) # 953 print(len(allTickerList )) # 2811 print(len(kospiTickerList )) # 953 print(len(kosdaqTickerList)) # 1735 print(len(konexTickerList )) # 123 |
▶ requirements.txt
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 |
certifi==2024.6.2 charset-normalizer==3.3.2 contourpy==1.2.1 cycler==0.12.1 DateTime==5.5 Deprecated==1.2.14 fonttools==4.53.0 idna==3.7 kiwisolver==1.4.5 matplotlib==3.9.0 multipledispatch==1.0.0 numpy==2.0.0 packaging==24.1 pandas==2.2.2 pillow==10.3.0 pykrx==1.0.45 pyparsing==3.1.2 python-dateutil==2.9.0.post0 pytz==2024.1 requests==2.32.3 six==1.16.0 tzdata==2024.1 urllib3==2.2.2 wrapt==1.16.0 xlrd==2.0.1 zope.interface==6.4.post2 |
※ pip install pykrx 명령을 실행했다.