I'm having trouble parsing out timezone information from a string that looks like:
8pm PST on sunday
So far, using parsedatetime
and dateutils
allows me to parse the date out but the timezone usually causes issues.
Anyone know of a library that handles this sort of thing? My fallback is to naively parse out the timezones via a regex or a simple "PST" in datestring
.