pytz utc conversion

后端 未结 4 1197
醉话见心
醉话见心 2020-12-07 17:42

What is the right way to convert a naive time and a tzinfo into an UTC time? Say I have:

d = datetime(2009, 8, 31, 22, 30, 30)
tz = timezone(\'U         


        
4条回答
  •  误落风尘
    2020-12-07 18:32

    What is the right way to convert a naive time and a tzinfo into an utc time?

    This answer enumerates some issues with converting a local time to UTC:

    from datetime import datetime
    import pytz # $ pip install pytz
    
    d = datetime(2009, 8, 31, 22, 30, 30)
    tz = pytz.timezone('US/Pacific')
    
    # a) raise exception for non-existent or ambiguous times
    aware_d = tz.localize(d, is_dst=None)
    ## b) assume standard time, adjust non-existent times
    #aware_d = tz.normalize(tz.localize(d, is_dst=False))
    ## c) assume DST is in effect, adjust non-existent times
    #aware_d = tz.normalize(tz.localize(naive_d, is_dst=True))
    
    # convert to UTC
    utc_d = aware_d.astimezone(pytz.utc)
    

提交回复
热议问题