라이브러리 설치
pip install exchange_calendars
코드
import datetime
import exchange_calendars as ecals
XKRX = ecals.get_calendar("XKRX")
print(XKRX.next_open(datetime.date.today()).strftime("%Y-%m-%d"))
결과
오늘은 2022년 5월 21일 토요일이기 때문에 다음 주식 개장일은
2022년 5월 23일 월요일이 맞다.
'Programming Language > Python' 카테고리의 다른 글
[Python] tabulate 사용시 한글때문에 깨지는 현상 해결하는 방법 (0) | 2022.05.21 |
---|---|
[Python] 판다스 데이터프레임 이쁘게 출력하는 방법, tabulate (0) | 2022.05.21 |
[Python] 오늘이 주식 개장일인지 확인하는 방법 (0) | 2022.05.21 |
[Python] 해당 날짜가 주식 개장일인지 확인하는 방법 (0) | 2022.05.21 |
[Python] UserWarning: Workbook contains no default style, apply openpyxl's default warn("Workbook contains no default style, apply openpyxl's default") (0) | 2022.05.21 |