A lightweight datetime utility library which wraps around the standard datetime module, with features from dateutil and pytz. Its purpose is to minimize the effort to convert datetime to/from UTC, a ...
dttm = timezone.make_naive(dttm, self.timezone) File "/Users/bolke/Documents/dev/airflow/airflow/utils/timezone.py", line 118, in make_naive o = value.astimezone ...
When trying to make things work with the datetime module, most Python users have faced a point when we resort to guess-and-check until the errors go away. datetime is one of those APIs that seems easy ...