Possible Duplicate:
What’s the best way to find the inverse of datetime.isocalendar()?
I have a year and an ISO week number, and I need to translate this to the date of the first day in that week (Monday). How can I do this?
datetime.strptime() takes both a %W and a %U directive, but neither adheres to the ISO weekday rules that datetime.isocalendar() use.
The best I can come up with is to convert e.g. year 2011 and week 22 using:
datetime.strptime('2011221', '%Y%W%w')
and then check if the week number is correct using isocalendar() and adjust the date accordingly. But it's not very elegant.
Update: There is now a patch in the Python issue tracker implementing the %V and %u directives also present in libc, allowing this:
>>> datetime.strptime('2011 22 1', '%Y %V %u')
datetime.datetime(2011, 5, 30, 0, 0)