12 lines
325 B
Python
12 lines
325 B
Python
|
|
|
|
"""
|
|
Using notification logic from timers.py to notify at specified time
|
|
have web app to access list of reminders? (notion api?)
|
|
|
|
look into location based reminders and see if thats possible (maybe ntfy.sh supports this?)
|
|
"""
|
|
|
|
class Reminders: # ntfy.sh notification?
|
|
def __init__(self):
|
|
self.trigger_phrase = "reminders" |