To find out what time that is for you, you can run:
import polars as pl
from datetime import datetime
MY_TIME_ZONE = 'Europe/London' # replace with your time zone
print(pl.Series([datetime(2020, 6, 7, 14, 30)], dtype=pl.Datetime('us', 'UTC')).dt.convert_time_zone(MY_TIME_ZONE))
We'll have our first community call tomorrow, at 14:30 UTC
All welcome to join!
To find out what time that is for you, you can run: