From Python 3.9, the zoneinfo
module can be used for getting timezones rather than using a third party library.
To get the current time in a particular timezone:
from datetime import datetime
from zoneinfo import ZoneInfo
datetime.now(tz=ZoneInfo("Europe/Amsterdam"))