コード例 #1
0
def main():
    daily_readings = {}
    YEAR = 2020
    WeeklySolomon(daily_readings, YEAR, "Sat")  # Saturdays with Solomon
    # for cal_date, full_refs in sorted(daily_readings.items()):
    #     print(cal_date, full_refs)  # Useful for debugging
    create_plan_with_playlists("WeeklySolomon", daily_readings)
コード例 #2
0
def main():
    daily_readings = {}
    YEAR = 2020
    WeekdayPsalms(daily_readings, YEAR)
    # for cal_date, full_refs in sorted(daily_readings.items()):
    #     print(cal_date, full_refs)  # Useful for debugging
    create_plan_with_playlists("WeekdayPsalms", daily_readings)
コード例 #3
0
def main():
    daily_readings = {}
    YEAR = 2020
    LordsDayNT(daily_readings, YEAR)
    Rest_OT(daily_readings, YEAR)

    # TODO: Add extra readings (such as metrical Psalms, with their
    #       corresponding prose Psalms) to handle:
    #           day 365: for all years
    #           day 366: for leap years

    # for cal_date, full_refs in sorted(daily_readings.items()):
    #     print(cal_date, full_refs)  # Useful for debugging
    create_plan_with_playlists("LordsDayNT_RestOT", daily_readings)