LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'Europe/Moscow'
USE_I18N = True
USE_L10N = True
USE_TZ = True
from django.utils import timezone
timezone.localtime(timezone.now())
datetime.datetime(2019, 9, 2, 21, 37, 4, 511034, tzinfo=<DstTzInfo 'Europe/Moscow' MSK+3:00:00 STD>)