3
3
import os
4
4
5
5
import cartopy
6
- import google
7
6
import matplotlib .cm as cm
8
7
import matplotlib .colors as colors
9
8
import matplotlib .pyplot as plt
32
31
'universe_domain' : 'googleapis.com' ,
33
32
}
34
33
35
- # with open('cisl-vast-pythia-606cf5ac2303.json') as json_file:
36
- # credentials_dict = json.load(json_file)
37
-
38
- try :
39
- client = BetaAnalyticsDataClient .from_service_account_info (credentials_dict )
40
- except google .auth .exceptions .MalformedError as e :
41
- print ('Malformed Error:' , e )
42
- print (len (PRIVATE_KEY ))
34
+ client = BetaAnalyticsDataClient .from_service_account_info (credentials_dict )
43
35
44
36
45
37
def _format_rounding (value ):
46
38
return f'{ round (value / 1000 , 1 ):.1f} K'
47
39
48
40
49
- def run_total_users_report (property_id ):
41
+ def _run_total_users_report (property_id ):
50
42
request = RunReportRequest (
51
43
property = f'properties/{ property_id } ' ,
52
44
dimensions = [],
53
45
metrics = [Metric (name = 'activeUsers' )],
54
46
date_ranges = [DateRange (start_date = '2020-03-31' , end_date = 'today' )],
55
47
)
56
-
57
48
response = client .run_report (request )
58
49
59
50
total_users = 0
@@ -63,14 +54,22 @@ def run_total_users_report(property_id):
63
54
return _format_rounding (total_users )
64
55
65
56
57
+ def get_total_users (PORTAL_ID , FOUNDATIONS_ID , COOKBOOKS_ID ):
58
+ metrics_dict = {}
59
+ metrics_dict ['Portal' ] = _run_total_users_report (PORTAL_ID )
60
+ metrics_dict ['Foundations' ] = _run_total_users_report (FOUNDATIONS_ID )
61
+ metrics_dict ['Cookbooks' ] = _run_total_users_report (COOKBOOKS_ID )
62
+ with open ('portal/metrics/user_metrics.json' , 'w' ) as outfile :
63
+ json .dump (metrics_dict , outfile )
64
+
65
+
66
66
def _run_top_pages_report (property_id ):
67
67
request = RunReportRequest (
68
68
property = f'properties/{ property_id } ' ,
69
69
dimensions = [Dimension (name = 'pageTitle' )],
70
70
date_ranges = [DateRange (start_date = '2020-03-31' , end_date = 'today' )],
71
71
metrics = [Metric (name = 'screenPageViews' )],
72
72
)
73
-
74
73
response = client .run_report (request )
75
74
76
75
page_views = {}
@@ -80,12 +79,18 @@ def _run_top_pages_report(property_id):
80
79
page_views [page ] = views
81
80
82
81
top_10_pages = sorted (page_views .items (), key = lambda item : item [1 ], reverse = True )[:10 ]
83
- top_10_pages_dict = {page : views for page , views in top_10_pages }
82
+ return {page : views for page , views in top_10_pages }
84
83
85
- return top_10_pages_dict
86
84
85
+ def plot_top_pages (portal_id , foundations_id , cookbooks_id ):
86
+ portal_page_views = _run_top_pages_report (portal_id )
87
+ portal_pages = []
88
+ portal_sorted = {k : v for k , v in sorted (portal_page_views .items (), key = lambda item : item [1 ])}
89
+ portal_views = portal_sorted .values ()
90
+ for key in portal_sorted :
91
+ newkey = key .split ('—' )[0 ]
92
+ portal_pages .append (newkey )
87
93
88
- def plot_top_pages (foundations_id , cookbooks_id ):
89
94
foundations_page_views = _run_top_pages_report (foundations_id )
90
95
foundations_pages = []
91
96
foundations_sorted = {k : v for k , v in sorted (foundations_page_views .items (), key = lambda item : item [1 ])}
@@ -102,28 +107,32 @@ def plot_top_pages(foundations_id, cookbooks_id):
102
107
newkey = key .split ('—' )[0 ]
103
108
cookbooks_pages .insert (0 , newkey )
104
109
105
- pages = cookbooks_pages + foundations_pages
110
+ pages = cookbooks_pages + foundations_pages + portal_pages
106
111
107
- fig , ax = plt .subplots ()
108
- plt .title ('Most Popular Pages' )
112
+ fig , ax = plt .subplots (figsize = ( 10 , 8 ) )
113
+ plt .title ('All-Time Top Pages' )
109
114
110
- views_max = int (math .ceil (max (foundations_views ) / 10000.0 )) * 10000
115
+ views_max = int (math .ceil (max (portal_views ) / 10000.0 )) * 10000
111
116
ax .set_xlim ([0 , views_max ])
112
117
113
118
y = np .arange (10 )
114
119
y2 = np .arange (11 , 21 )
115
- y3 = np .append (y , y2 )
120
+ y3 = np .arange (22 , 32 )
121
+ y4 = np .append (y , y2 )
122
+ y4 = np .append (y4 , y3 )
116
123
117
- bar1 = ax .barh (y2 , foundations_views , align = 'center' , label = 'Foundations' , color = 'royalblue' )
118
- bar2 = ax .barh (y , cookbooks_views , align = 'center' , label = 'Cookbooks' , color = 'indianred' )
124
+ bar1 = ax .barh (y3 , portal_views , align = 'center' , label = 'Portal' , color = 'purple' )
125
+ bar2 = ax .barh (y2 , foundations_views , align = 'center' , label = 'Foundations' , color = 'royalblue' )
126
+ bar3 = ax .barh (y , cookbooks_views , align = 'center' , label = 'Cookbooks' , color = 'indianred' )
119
127
120
- ax .set_yticks (y3 , labels = pages )
128
+ ax .set_yticks (y4 , labels = pages )
121
129
122
130
ax .bar_label (bar1 , fmt = _format_rounding )
123
131
ax .bar_label (bar2 , fmt = _format_rounding )
132
+ ax .bar_label (bar3 , fmt = _format_rounding )
124
133
125
134
plt .legend ()
126
- plt .savefig ('portal/metrics/bypage .png' , bbox_inches = 'tight' )
135
+ plt .savefig ('portal/metrics/toppages .png' , bbox_inches = 'tight' )
127
136
128
137
129
138
def _run_usersXcountry_report (foundations_id ):
@@ -133,7 +142,6 @@ def _run_usersXcountry_report(foundations_id):
133
142
metrics = [Metric (name = 'activeUsers' )],
134
143
date_ranges = [DateRange (start_date = '2020-03-31' , end_date = 'today' )],
135
144
)
136
-
137
145
response = client .run_report (request )
138
146
139
147
user_by_country = {}
@@ -205,18 +213,7 @@ def plot_usersXcountry(foundations_id):
205
213
plt .savefig ('portal/metrics/bycountry.png' , bbox_inches = 'tight' )
206
214
207
215
208
- def get_metrics ():
209
- metrics_dict = {}
210
- metrics_dict ['Portal' ] = run_total_users_report (str (PORTAL_ID ))
211
- metrics_dict ['Foundations' ] = run_total_users_report (str (FOUNDATIONS_ID ))
212
- metrics_dict ['Cookbooks' ] = run_total_users_report (str (COOKBOOKS_ID ))
213
- with open ('portal/metrics/user_metrics.json' , 'w' ) as outfile :
214
- json .dump (metrics_dict , outfile )
215
-
216
- plot_top_pages (str (FOUNDATIONS_ID ), str (COOKBOOKS_ID ))
217
-
218
- plot_usersXcountry (str (FOUNDATIONS_ID ))
219
-
220
-
221
216
if __name__ == '__main__' :
222
- get_metrics ()
217
+ get_total_users (PORTAL_ID , FOUNDATIONS_ID , COOKBOOKS_ID )
218
+ plot_top_pages (PORTAL_ID , FOUNDATIONS_ID , COOKBOOKS_ID )
219
+ plot_usersXcountry (str (FOUNDATIONS_ID ))
0 commit comments