-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWVERSION5.py
186 lines (162 loc) · 8.64 KB
/
NEWVERSION5.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
176
177
178
179
180
181
182
183
184
185
186
#!/usr/bin/python
# -*- coding: utf-8 -*-
import time
import sys
import io
import segmentIds
import dimensions_and_metrics
import collectArguments
#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 ')
dateList = collectArguments.getDates()
date1 = dateList[0]
date2 = dateList[1]
filename = collectArguments.getFilename()
#filename = 'C:\\Users\\thambapillair\\Documents\\'+ raw_input('Enter preferred filename')+'.txt'
myNewFile = open (filename , 'w+')
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/', 'http://www.myprotein.com', 'www.mankind.co.uk', 'www.beautyexpert.co.uk', 'www.lookfantastic.com', 'www.lookmantastic.com', 'www.myvitamins.com', 'www.lookfantastic.net', 'www.myprotein.ie', 'www.myprotein.it', 'www.myprotein.es', 'fr.myprotein.com', 'de.myprotein.com','PBK EUR','PBK NOK','PBK YEN','PBK SEK','PBK INR', 'PBK CYR', 'PBK NZD', 'PBK ZAR','PBK AUS','PBK DKK','PBK HKD', 'PBK USD', 'PBK RUB', 'PBK CHF', 'PBK GBP (was all)','PBK CAD (wrong currency symbol)']
activeWebsites = {"UA-59323-77": "AllSole", "UA-59323-83":"HQHair","UA-59323-75":"Iwoot","UA-59323-61":"MyBag", "UA-59323-24":"Sendit","UA-59323-4":"TheHut","UA-59323-37":"Zavvi","UA-59323-58":"Zaavi.es","UA-59323-76":"Zavvi.nl","UA-9345964-1":"LookFantastic","UA-18807547-1":"Lookfantastic.net","UA-10211190-1":"lookmantastic","UA-19257214-1":"http://www.myprotein.com/de/pages/home","UA-19256573-1":"http://www.myprotein.com/es/pages/home","UA-19256640-1":"http://www.myprotein.com/fr/pages/home","UA-19256474-1":"http://www.myprotein.com/ie/pages/home","UA-19256561-1":"http://www.myprotein.com/it/pages/home","UA-479953-1":"http://www.myprotein.com/uk","UA-2620226-2":"http://www.beautyexpert.co.uk","UA-2620226-1":"http://www.mankind.co.uk","UA-18594156-35": "http://www.myvitamins.com","UA-3095960-8":"http://probikekit.com EUR","UA-3095960-12":"http://probikekit.com NOK","UA-3095960-10":"http://probikekit.com YEN","UA-3095960-14":"http://probikekit.com SEK","UA-3095960-18":"http://probikekit.com INR","UA-3095960-17":"http://probikekit.com CYR","UA-3095960-11":"http://probikekit.com NZD","UA-3095960-13":"http://probikekit.com ZAR","UA-3095960-5":"http://probikekit.com AUS","UA-3095960-7":"http://probikekit.com DKK","UA-3095960-16":"http://probikekit.com USD","UA-3095960-1":"http://probikekit.com GBP"}
dimensionString = collectArguments.collectArguments(dimensions_and_metrics.dimensions)
metricString = collectArguments.collectArguments(dimensions_and_metrics.metrics)
print metricString
dimensionList = collectArguments.collectLists(dimensionString)
#metricList = metricString.split(',')
metricList = collectArguments.collectLists(metricString)
print dimensionList,metricList
for z in range (0,len(metricList)-1):
print metricList[z]
print z
def main(argv):
service = hello_analytics_api_v3_auth.initialize_service()
accounts = service.management().accounts().list().execute()
counter = 0
segmentName = raw_input('Please Enter your preferred Segment Name (Hit Enter for All Visits)\n')
try:
segment_id = 'gaid::'+segmentIds.segments_Dictionary[segmentName]
except:
print "Oh dear, That Segment doesn't exist. Please try again or hit enter for no segments"
segment_id = 'gaid::'+segmentIds.segments_Dictionary[segmentName]
for accountProfiles in range (20):
for x in range (countWebProperties(service,accounts,accountProfiles)):
time.sleep(0.4)
try:
# Step 2. Get the user's first profile ID.
helperList = get_first_profile_id(service,accounts,accountProfiles,x)
print helperList
profile_id = helperList[0]
if profile_id:
try:
activeWebsites[helperList[1]]
# Step 3. Query the Core Reporting API.
results = get_results(service, profile_id, segment_id)
except(KeyError):
results = None
# Step 4. Output the results.
print_results(results,counter)
if results:
counter += 1
#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 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'),firstWebpropertyId]
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'),firstWebpropertyId]
return [None,None]
def get_results(service, profile_id, segment_id):
# Use the Analytics Service Object to query the Core Reporting API
print 'hello I am a profile id' + str(profile_id)
return service.data().ga().get(
ids='ga:' + profile_id,
start_date=date1,
end_date=date2,
segment=segment_id,
##Useful segment ids: 729961158 (ipad)
dimensions=dimensionString,
metrics=metricString).execute()
def print_results(results,counter):
# Writes results to a file called mynewfile in the documents folder.
#Print Headers
if results:
#print counter
if counter == 0:
for lists1 in results.get('rows'):
print lists1
for z in range (0,max(len(dimensionList)-1,1)):
for metric in range (0,len(metricList)):
try:
myNewFile.write('\t'+dimensionList[z]+'='+str(lists1[z])+','+dimensionList[z+1]+'='+lists1[z+1]+str(metricList[metric]))
except IndexError:
myNewFile.write('\t'+str(metricList[metric]))
myNewFile.write('\n')
counter += 1
#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'))
for lists in results.get('rows'):
for k in range (len(dimensionList),len(lists)):
try:
myNewFile.write ('\t%s' %lists[k])
print lists[k]
except:
myNewFile.write ('\t0')
myNewFile.write('\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()