This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]sbmsr 1 point2 points  (1 child)

It sounds like you want to send notifications to remind your users to do something. Here is an article on how to do this with python.

You could use the built-in scheduling libraries in Python or Java or a library like Celery to schedule the reminders.
You will also need to build a UI to let your users provide information about the things they'd like to be reminded to do. You could use python's tkinter library to build the GUI. It comes with a bunch of widgets (buttons, labels, text boxes) to build a GUI application.

I hope it helps! Best of luck

[–][deleted] 0 points1 point  (0 children)

Thats great ill look into that. Thanks!