Jul-01-2023, 12:39 AM
(Jun-30-2023, 08:14 PM)tester_V Wrote: [ -> ]It sounds very good but then there are tons of Python datetime libraries for a reason...Pendulum is the best bye fair bit and it's built on top of datetime,
and special care has been taken to ensure
Timezones are handled correctly
.Can show some seamless convert between time zones,using
in_timezone
and convert
.Start for now time in Kuala_Lumpur,if it's timestamp it will work the same as all comparisons in Pendulum are done in
UTC
or in the Timezone of the datetime being used.>>> import pendulum >>> >>> kuala = pendulum.now("Asia/Kuala_Lumpur") >>> kuala DateTime(2023, 7, 1, 8, 14, 24, 85924, tzinfo=Timezone('Asia/Kuala_Lumpur')) >>> print(kuala) 2023-07-01T08:14:24.085924+08:00 >>> print(kuala.to_datetime_string()) 2023-07-01 08:14:24There are many to way display time in Pendulum can use
to_datetime_string
then it easier to see.>>> seattle = kuala.in_timezone('US/Pacific') >>> print(seattle.to_datetime_string()) 2023-06-30 17:14:24 >>> # Check with Timezone i an in >>> norway = kuala.in_timezone('Europe/Paris') >>> print(norway.to_datetime_string()) 2023-07-01 02:14:24 # Convert Kuala_Lumpur time to Seattle time >>> seattle = pendulum.timezone('US/Pacific') >>> seattle = seattle.convert(kuala) >>> print(seattle.to_datetime_string()) 2023-06-30 17:14:24