Last active
August 12, 2016 20:00
-
-
Save daleobrien/5a1ca47b3205b13ce508 to your computer and use it in GitHub Desktop.
Convert Google Analytic ga:yearweek to a date using python.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def ga_yearWeek_to_date(yearweek): | |
''' | |
Convert from Google Analytic ga:yearweek to a date at the start of | |
the time period. | |
e.g.: | |
>> ga_yearWeek_to_date('201353') | |
>> 2013-12-29 | |
''' | |
year, week = int(yearweek[:4]), int(yearweek[4:]) | |
start_of_year = date(year, 1, 1) | |
days = 7 * (week - 1) - (start_of_year.isoweekday() % 7) | |
days = max(0, days) # GA restarts yearWeek on a new year | |
d = start_of_year + timedelta(days=days) | |
return d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you, super helpful!