BOT Data is a Python package for retrieving data from the website of the Bank of Thailand.
pip install botdata
or
pip install git+https://github.com/ezyquant/BOT-Data.git
from datetime import date
import botdata as bd
# Get holidays in 2020
bd.get_holidays(2022)
# Check if date is business day
bd.is_business_day(date.today())
# Get next business day
bd.next_business_day(date.today(), 1)