How to convert time to different timezone in django python

Viewed 36

I am trying to convert time from America/New_York to other(any) timezone using

from django.utils import timezone

I tried finding references on web but couldn't find it

2 Answers

Tested it's working modify into settings.py file

TIME_ZONE = 'Asia/Kolkata'

Change TIME_ZONE variable in settings.py from utc to ...

Related