How to get pytz timezone from common abbreviation (PST, EST, etc.)?

青春壹個敷衍的年華 提交于 2019-12-12 08:35:05

问题


This is a similar question as How to get the common name for a pytz timezone eg. EST/EDT for America/New_York , except I want to be able to just get a timezone from "PST" from pytz. such as tz = timezone("PST") Is this something like this possible with pytz?


回答1:


I ended up just manually making a dictionary that mapped abbreviations to timezone names. For example, 'PST' : 'America/Los_Angeles' would be an entry (as would PDT for the daylight savings abbreviation).




回答2:


Have you tried using strptime with the %Z format code? I've never done it myself, but at least in theory you should be able to put in the tz code there and it should get translated into a tzinfo (embedded in the datetime/time object)



来源:https://stackoverflow.com/questions/9753947/how-to-get-pytz-timezone-from-common-abbreviation-pst-est-etc

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!