-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecondaryMetrics.py
175 lines (152 loc) · 7.02 KB
/
secondaryMetrics.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
#!/usr/bin/python
# -*- coding: utf-8 -*-
import time
import sys
import io
# import the Auth Helper class
import hello_analytics_api_v3_auth
from apiclient.errors import HttpError
from oauth2client.client import AccessTokenRefreshError
globalOutputList = []
date1 = raw_input('Enter Start Date as YYYY-MM-DD ')
date2 = raw_input('Enter End Date as YYYY-MM-DD ')
filename = 'C:\\Users\\thambapillair\\Documents\\'+ raw_input('Enter preferred filename')+'.txt'
myNewFile = open (filename , 'w+')
myNewFile.write('Profile\tDesktop Transactions\tDesktop Visits\tDesktop Revenue\tDesktop Conversion Rate\tMobile Transactions\tMobile Visits\tMobile Revenue\tMobile Conversion Rate\tMobile Percentage of Revenue\n')
checkList = ['Profile', 'H - SendIt', 'A - Zavvi', 'A - TheHut.com', 'H - zavvi.es', 'H - mybag.com', 'J - iwantoneofthose.com', 'H - zavvi.nl', 'H - allsole.com', 'www.hqhair.com/', 'ttp://www.myprotein.com/uk/', 'www.mankind.co.uk', 'www.beautyexpert.co.uk', 'www.lookfantastic.com', 'www.lookmantastic.com', 'www.myvitamins.com', 'www.lookfantastic.net', 'www.myprotein.com/ie/pages/home', 'www.myprotein.com/it/pages/home', 'www.myprotein.com/es/pages/home', 'www.myprotein.com/fr/pages/home']
def main(argv):
## print x
##print "Hey-ho merry-o ring a ding a dillo what the chuff"
# Step 1. Get an analytics service object.
service = hello_analytics_api_v3_auth.initialize_service()
accounts = service.management().accounts().list().execute()
segment_id = 'gaid::'+raw_input('Please enter your preferred segment id. If you want no segments, enter -1 ')
##segments = service.management().segments().list().execute()
##print segments
for accountProfiles in range (12):
for x in range (countWebProperties(service,accounts,accountProfiles)):
time.sleep(0.3)
try:
# Step 2. Get the user's first profile ID.
profile_id = get_first_profile_id(service,accounts,accountProfiles,x)
## print "profileID \t%s" %str(profile_id)
if profile_id:
# Step 3. Query the Core Reporting API.
results = get_results(service, profile_id, segment_id)
#print "I got the results"
# Step 4. Output the results.
print_results(results)
#print "I printed the results"
except TypeError, error:
# Handle errors in constructing a query.
print ('There was an error in constructing your query : %s' % error)
except HttpError, error:
# Handle API errors.
print ('Arg, there was an API error : %s : %s' %
(error.resp.status, error._get_reason()))
except AccessTokenRefreshError:
# Handle Auth errors.
print ('The credentials have been revoked or expired, please re-run '
'the application to re-authorize')
def get_first_profile_id(service,accounts,accountProfiles,x):
# Get a list of all Google Analytics accounts for this user
##print "I am trying to get first profile ID"
##print service.management().accounts().list()
if accounts.get('items'):
# Get the first Google Analytics account
firstAccountId = accounts.get('items')[accountProfiles].get('id')
## print "firstAccountID \t%s" %str(firstAccountId)
# Get a list of all the Web Properties for the first account
webproperties = service.management().webproperties().list(accountId=firstAccountId).execute()
try:
if webproperties.get('items'):
# Get the first Web Property ID
firstWebpropertyId = webproperties.get('items')[x].get('id')
# Get a list of all Profiles for the first Web Property of the first Account
profiles = service.management().profiles().list(
accountId=firstAccountId,
webPropertyId=firstWebpropertyId).execute()
if profiles.get('items'):
# return the first Profile ID
return profiles.get('items')[0].get('id')
except:
if webproperties.get('items'):
# Get the first Web Property ID
firstWebpropertyId = webproperties.get('items')[0].get('id')
# Get a list of all Profiles for the first Web Property of the first Account
profiles = service.management().profiles().list(
accountId=firstAccountId,
webPropertyId=firstWebpropertyId).execute()
if profiles.get('items'):
# return the first Profile ID
return profiles.get('items')[0].get('id')
return None
def get_results(service, profile_id, segment_id):
# Use the Analytics Service Object to query the Core Reporting API
return service.data().ga().get(
ids='ga:' + profile_id,
start_date=date1,
end_date=date2,
segment=segment_id,
##Useful segment ids: 729961158 (ipad)
dimensions='ga:isMobile',
metrics='ga:bounces,ga:visits,ga:timeOnSite').execute()
def print_results(results):
# Writes results to a file called mynewfile in the documents folder.
#print results
try:
binCode = checkList.index(results.get('profileInfo').get('profileName'))
except:
binCode = 0
if binCode > 0:
if results:
myNewFile.write ('%s' % results.get('profileInfo').get('profileName'))
try:
myNewFile.write ('\t%s' % results.get('rows')[0][1])
except:
myNewFile.write ('\t0')
try:
myNewFile.write ('\t%s' % results.get('rows')[0][2])
except:
myNewFile.write ('\t0')
try:
myNewFile.write ('\t%s' % results.get('rows')[0][3])
except:
myNewFile.write ('\t0')
try:
myNewFile.write ('\t'+str(100*(float(results.get('rows')[0][1])/float(results.get('rows')[0][2])))+'%')
except:
myNewFile.write('\t0')
try:
myNewFile.write ('\t%s' % results.get('rows')[1][1])
except:
myNewFile.write ('\t0')
try:
myNewFile.write ('\t%s' % results.get('rows')[1][2])
except:
myNewFile.write ('\t0')
try:
myNewFile.write ('\t%s' % results.get('rows')[1][3])
except:
myNewFile.write ('\t0')
try:
myNewFile.write('\t'+str((100*float(results.get('rows')[1][1])/float(results.get('rows')[1][2])))+'%')
except:
myNewFile.write ('\t0')
try:
myNewFile.write ('\t'+str((100*float(results.get('rows')[1][3])/(float(results.get('rows')[0][3])+float(results.get('rows')[1][3]))))+'%'+'\n')
except:
myNewFile.write ('\t0\n')
globalOutputList.append((results.get('profileInfo').get('profileName'),results.get('rows')))
## else:
## print 'No results found'
def countWebProperties(service,accounts,accountProfiles):
firstAccountId = accounts.get('items')[accountProfiles].get('id')
webproperties = service.management().webproperties().list(accountId=firstAccountId).execute()
length = len(webproperties.get('items'))
##print len(webproperties.get('items'))
return length
##if __name__ == '__main__':
main(sys.argv)
print globalOutputList
myNewFile.close()