When I run:
datetime.strptime('UTC', '%Z') It compiles just fine, because as specified here the representation for time zone abbreviations is '%Z'
But if I run...
datetime.strptime('EST', '%Z') I get a ValueError, 'EST' does not match the format '%Z', even though like before 'EST' is even provided as an example for %Z at the same link I provided above
What am I doing wrong?
strptimehas changed once or twice, it started out nearly useless for dealing with timezones and I don't think it's improved much.