Scheduling morning emails with Python and Celery
cucumbertown.com
Scheduling morning emails with Python and Celery
1–10 of 19 posts
Re: Scheduling morning emails with Python and Celery
#2Re: Scheduling morning emails with Python and Celery
#3http://uwsgi-docs.readthedocs.org/en/latest/PythonDecorators...
Re: Scheduling morning emails with Python and Celery
#4Re: Scheduling morning emails with Python and Celery
#5Re: Scheduling morning emails with Python and Celery
#6This doesn't handle daylight saving time.
Re: Scheduling morning emails with Python and Celery
#7Would this create a problem around Daylight Saving Time until the user logs in again to reset their time offset?
Re: Scheduling morning emails with Python and Celery
#8Would this create a problem around Daylight Saving Time until the user logs in again to reset their time offset?
getTimezoneOffset() would return the value after taking care of DST. So there shouldn't be any DST related inconsistencies. Now if the user moves to another timezone, and never hits one of our page, there is no direct way of tracking his/her change in location.
Re: Scheduling morning emails with Python and Celery
#9alternatively: use uWSGI cron http://uwsgi-docs.readthedocs.org/en/latest/PythonDecorators...
Re: Scheduling morning emails with Python and Celery
#10Earlier quoted context omitted.
getTimezoneOffset() would return the value after taking care of DST. So there shouldn't be any DST related inconsistencies. Now if the user moves to another timezone, and never hits one of our page, there is no direct way of tracking his/her change in location.
I mean that starting mid-March a user who had previously been in a -8:00 UTC offset would then be in a -7:00 UTC offset and you wouldn't know the timezone offset changed until they visited the website again.