Python datetimeのタイムゾーンUTCからlocal timeへ

Convert a python UTC datetime to a local datetime using only python standard library? - Stack Overflow

from datetime import timezone
datetime_obj.replace(tzinfo=timezone.utc).astimezone(tz=None)