I am creating a homework organizer for my assignment with Python and Kivy, which involved creating a start date by subtracting a number of days from the due date.
However, if it is the beginning of the month and the number of days I am subtracting is greater than the remaining days, the result goes negative. In order to fix this I plan to use an if
statement to subtract one from month and then set the date to the number of days in that month and then subtract what remains.
This application is going to work on an Android device and I need a full calendar in other sections of the program, so I am wondering if there is a way to import calendar dates from the Android operating system into Python?