I need a way to find out if current time is in range of time window using time strings. So for example start time would be "0:00" and end time would be "3:15".
I came across this solution, How to check if the current time is in range in python?, and it's great but it doesn't use time strings. Is there anything in python that I can pass two time strings to and then check if something is between them? Any other suggestions?
Thanks.