首页 > 技术文章 > python获取某一年的所有节假日

rong-z 2021-08-19 20:53 原文

注: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

推荐阅读