Skip to content

Instantly share code, notes, and snippets.

View mokejp's full-sized avatar

Kenji Morito mokejp

  • LINE Corporation
  • Saitama, Japan
View GitHub Profile
@mokejp
mokejp / holiday.py
Last active November 2, 2015 01:57
国民の祝日の処理 python (1948年以降の日本の祝日に対応)
# -*- coding: utf-8 -*-
from dateutil.rrule import rrule
from dateutil.rrule import YEARLY, MO, TH
from datetime import datetime, timedelta
class Holiday:
''' 祝祭日 '''
def __init__(self, title, rrule, _filter=None):
self.title = title
@mokejp
mokejp / rokuyo.py
Last active November 15, 2023 10:57
六曜の処理 python
# -*- coding: utf-8 -*-
from datetime import date, timedelta
# 六曜リスト
ROKUYO_TABLE = ['大安', '赤口', '先勝', '友引', '先負', '仏滅']
# 月別六曜開始位置リスト
ROKUYO_MONTH = [2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1]
# 新暦→旧暦の変換テーブル