Python Pendulum Mavens,
In Python, when using the [awesome] date & time manipulation package, Pendulum, how can tzinfo
(TZ Database Name; such as 'Europe/London', 'Australia/Melbourne', etc.) be determined based on, or as a function of, UTC Offset
?
- For example: Given an Offset of (say)
-07:00
, how could 'America/Los_Angeles' be derived?
Or, is it necessary to set tz='America/Los_Angeles'
?
Many thanks for any assistance!