I am having some issues getting timezone.localize()
to work correctly. My goal is to grab today\'s date and convert it from CST to EST. Then finally format the
Use cst.localize
to make a naive datetime into a timezone-aware datetime.
Then use astimezone
to convert a timezone-aware datetime to another timezone.
import pytz
import datetime
est = pytz.timezone('US/Eastern')
cst = pytz.timezone('US/Central')
curtime = cst.localize(datetime.datetime.now())
curtime = curtime.astimezone(est)