How do I compare a datetime object of this format
"Thu, 15 Jan 2015 06:35:37 GMT" with the current time ?
How do I compare a datetime object of this format
"Thu, 15 Jan 2015 06:35:37 GMT" with the current time ?
import time
from email.utils import parsedate_tz, mktime_tz
# Convert the input date string to "seconds since the epoch" (POSIX time)
timestamp = mktime_tz(parsedate_tz("Thu, 15 Jan 2015 06:35:37 GMT"))
# Compare it with the current time (ignoring leap seconds)
elapsed_seconds = time.time() - timestamp
The easiest way is with the dateutil
package. First install dateutil
and then:
from dateutil.parser import parse
parsed_time = parse("Thu, 15 Jan 2015 06:35:37 GMT")
Then you can do from datetime import datetime
and get the current time with datetime.now()
, and you'll have two datetime objects you can compare however you like.
If you can't use dateutil
, you can still do it with datetime.strptime()
, but you'll have to specify the date string exactly which is quite fiddly. Refer to the standard library documentation in that case.
You can use
datetime
module to convert from datetime string into datetimetime object. then get different between two datetime objects.