I am getting
time data '2015-02-10T13:00:00Z' does not match format '%Y-%m-%d %H:%M:%S'
I tried:
import datetime
datetime.datetime.strptime('2015-02-10T13:00:00Z', '%Y-%m-%d %H:%M:%S')
and
import time
time.strptime('2015-02-10T13:00:00Z', '%Y-%m-%d %H:%M:%S')
what am I doing wrong?