api_time = datetime.strptime(
response_time, "%H:%M")
Debugging has shown that api_time : 1900-01-01 06:30:00
All i want to do is to add 7 hours so the time is 13:30:00 how can i do it
api_time = datetime.strptime(
response_time, "%H:%M")
Debugging has shown that api_time : 1900-01-01 06:30:00
All i want to do is to add 7 hours so the time is 13:30:00 how can i do it