I have a time format:
Sat Jan 17 04:33:06 +0000 2015
that I can't match to a strptime format. The closest I can find: basic datetime types is %c "Locale’s appropriate date and time representation." However, this doesn't exactly match.
I'm going for:
time_vec = [datetime.strptime(str(x),'%c') for x in data['time']]
any help would be appreciated.