Skip to content

Instantly share code, notes, and snippets.

@richardoey
Created May 18, 2021 02:38
Show Gist options
  • Save richardoey/f1bd9e3f3c41afc5cfed921a5d26dced to your computer and use it in GitHub Desktop.
Save richardoey/f1bd9e3f3c41afc5cfed921a5d26dced to your computer and use it in GitHub Desktop.
Django make aware datetime
d = datetime.datetime.now()
timezone = pytz.timezone("Asia/Taipei")
d_aware = timezone.localize(d)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment