summaryrefslogtreecommitdiffstats
path: root/doc/AnalyticsWebReport.py
blob: bd4a9a2bdffa32366cf204e1375aa8f3fdc8a113 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import os
import sys
import AnalyticsConnect as ac
import TRexDataAnalysis as tr
import time
import datetime


def main(verbose = False):
    if verbose:
        print('Retrieving data from Google Analytics')
    analytics = ac.initialize_analyticsreporting()
    current_date = time.strftime("%Y-%m-%d")
    k_days_ago = datetime.datetime.now() - datetime.timedelta(days=15)
    start_date = str(k_days_ago.date())
    response = ac.get_report(analytics, start_date, current_date)
    ga_all_data_dict, setups = ac.export_to_tuples(response)
    dest_path = os.path.join(os.getcwd(), 'build', 'images')
    if verbose:
        print('Saving data to %s' % dest_path)
    tr.create_all_data(ga_all_data_dict, setups, start_date, current_date, save_path = dest_path,
                       add_stats='yes')
    if verbose:
        print('Done without errors.')

if __name__ == "__main__":
    main()