python获取某一年的所有节假日

注:chinese_calander库需要每年手动更新一次

import datetime
import chinese_calendar


def get_holidays(year=None, include_weekends=True):
    """
    获取某一年的所有节假日,默认当年
    :param year: which year
    :param include_weekends: False for excluding Saturdays and Sundays
    :return: list
    """
    if not year:
        year = datetime.datetime.now().year
    start = datetime.date(year, 1, 1)
    end = datetime.date(year, 12, 31)
    holidays = chinese_calendar.get_holidays(start, end, include_weekends)
    return holidays
posted @ 2021-08-19 20:53  cnblogs用户  阅读(2418)  评论(0编辑  收藏  举报