This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This script formats a callback url for the Due app to send a reminder for | |
# each day of a Novena for the Dead. This script is called by Launch Center Pro | |
# with a sys argument nn, where nn is which day of the novena (1..9). | |
# The first day of the novena is set to begin +1 days of current date. | |
# Time is set for 5:15 of current time zone. | |
import datetime | |
import time | |
import webbrowser | |
import sys |