List of pytz timezones

I recently had to create a list of pytz timezones for MutexBot. Sharing here in case it helps anyone else

import pytz
for tz in pytz.all_timezones:
  print(f"{tz}")

(more…)