mirror of
https://github.com/janeczku/calibre-web
synced 2024-11-07 18:40:02 +00:00
23 lines
509 B
Python
23 lines
509 B
Python
|
'''tzinfo timezone information for America/Guadeloupe.'''
|
||
|
from pytz.tzinfo import DstTzInfo
|
||
|
from pytz.tzinfo import memorized_datetime as d
|
||
|
from pytz.tzinfo import memorized_ttinfo as i
|
||
|
|
||
|
class Guadeloupe(DstTzInfo):
|
||
|
'''America/Guadeloupe timezone definition. See datetime.tzinfo for details'''
|
||
|
|
||
|
zone = 'America/Guadeloupe'
|
||
|
|
||
|
_utc_transition_times = [
|
||
|
d(1,1,1,0,0,0),
|
||
|
d(1911,6,8,4,6,8),
|
||
|
]
|
||
|
|
||
|
_transition_info = [
|
||
|
i(-14760,0,'LMT'),
|
||
|
i(-14400,0,'AST'),
|
||
|
]
|
||
|
|
||
|
Guadeloupe = Guadeloupe()
|
||
|
|