Skip to content
Snippets Groups Projects
Commit f4edd054 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

moved tofirstdayinisoweek to utils

parent c547dce3
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,7 @@ from django.conf import settings ...@@ -3,6 +3,7 @@ from django.conf import settings
import json import json
import urllib import urllib
from os.path import join from os.path import join
from datetime import datetime, date, timedelta
def get_automation_id_choices(): def get_automation_id_choices():
...@@ -26,3 +27,11 @@ def get_automation_id_choices(): ...@@ -26,3 +27,11 @@ def get_automation_id_choices():
shows = [(s['id'], s['title']) for s in shows_list] shows = [(s['id'], s['title']) for s in shows_list]
return shows return shows
def tofirstdayinisoweek(year, week):
# http://stackoverflow.com/questions/5882405/get-date-from-iso-week-number-in-python
ret = datetime.strptime('%04d-%02d-1' % (year, week), '%Y-%W-%w')
if date(year, 1, 4).isoweekday() > 4:
ret -= timedelta(days=7)
return ret
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment