vacanza/python-holidays

South Korea holiday question

jamjam0109 opened this issue · 1 comments

Hi friends, long time no see!
I have a question. When I print out South Korea holidays, I don't get "5/1 labor day".

import holidays
import pandas as pd

year = 2024
country_code = 'KR'

holidays_in_year = getattr(holidays, country_code)(years=year)
holidays_df = pd.DataFrame(holidays_in_year.items(), columns=['dt', 'holiday']).sort_values('dt', ignore_index=True)
holidays_df

image

But it's in the code. What's wrong?

Hi @jamjam0109,

It's a BANK holiday. Please see the usage examples here.