I have two date time objects like this
a = first date time object
b = second date time object
And then
c = a - b
Now I want to compare c and check if the difference was greater than 3 hours, so I have a time object called three_hours
three_hours = datetime.time(3,0)
if c >= three_hours:
#do stuff
but I get an error saying cannot compare datetime.teimdelta to datetime.time
My question is different as I also want to then compare the subtracted time, not just get the difference!!
How can I convert them to the correct formats so I can check if 3 hours has passed?
Thanks for the help