This is the entire code basically logging in and scraping the data off google analytics. The issue surrounds the date loop. It will not loop around results and in this case it says
ERROR: Traceback (most recent call last):
File "C:/Python27/GOOGLE ANALYTICS/Data Extraction Life Plan V0.4 TEST.py", line 147, in <module>
main(sys.argv)
File "C:/Python27/GOOGLE ANALYTICS/Data Extraction Life Plan V0.4 TEST.py", line 45, in main
results = get_results(service, profile_id,date)
NameError: global name 'date' is not defined
Is this due to where the daterange function is defined not being recognised?
import sys
# import the Auth Helper class
import hello_analytics_api_v3_auth
from apiclient.errors import HttpError
from oauth2client.client import AccessTokenRefreshError
import datetime
# DEFINE FILE TO SAVE RESULTS TO;
f = open('C:\Python27\GOOGLE ANALYTICS\TEST.txt', 'a')
def daterange( start_date, end_date ):
if start_date <= end_date:
for n in range( ( end_date - start_date ).days + 1 ):
yield start_date + datetime.timedelta( n )
else:
for n in range( ( start_date - end_date ).days + 1 ):
yield start_date - datetime.timedelta( n )
# IMPUT START AND END DATE PARAMETERS HERE >>>>>
start = datetime.date( year = 2012, month = 6, day = 1 )
end = datetime.date( year = 2012, month = 6, day = 2 )
print start
print end
# START OF EXTRACTION CODE.
def main(argv):
# Initialize the Analytics Service Object from the login code.
service = hello_analytics_api_v3_auth.initialize_service()
try:
# Query APIs, print results
profile_id = get_first_profile_id(service)
print profile_id
if profile_id:
results = get_results(service, profile_id,date)
results2 = get_results2(service, profile_id, date)
results3 = get_results3(service, profile_id, date)
results4 = get_results4(service, profile_id, date)
print_results(results,results2,results3,results4,date)
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):
# Get a list of all Google Analytics accounts for this user
accounts = service.management().accounts().list().execute()
if accounts.get('items'):
# Get the first Google Analytics account
firstAccountId = accounts.get('items')[0].get('id')
print firstAccountId
# Get a list of all the Web Properties for the first account
webproperties = service.management().webproperties().list(accountId=firstAccountId).execute()
if webproperties.get('items'):
# Get the first Web Property ID
firstWebpropertyId = 'UA-1491108-38'
#firstWebpropertyId = webproperties.get('items')[0].get('id')
print firstWebpropertyId
# 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
# EXTRACT OVERALL VISITS AND UNIQUE VISITS;
def get_results(service, profile_id, date):
return service.data().ga().get(
ids='ga:' + str(profile_id),
start_date=str(date),
end_date=str(date),
metrics='ga:visits,ga:newVisits,ga:visitors').execute()
# EXTRACT UNIQUE PAGE VIEWS FOR IMPORTANT STAGES;
def get_results2(service, profile_id, date):
return service.data().ga().get(
ids='ga:' + profile_id,
start_date=str(date),
end_date=str(date),
filters='ga:pagePath=~/pg2',
metrics='ga:uniquePageviews').execute()
def get_results3(service, profile_id, date):
return service.data().ga().get(
ids='ga:' + profile_id,
start_date=str(date),
end_date=str(date),
filters='ga:pagePath=~/pg5results',
metrics='ga:uniquePageviews').execute()
def get_results4(service, profile_id, date):
return service.data().ga().get(
ids='ga:' + profile_id,
start_date=str(date),
end_date=str(date),
filters='ga:pagePath==/thanks',
metrics='ga:uniquePageviews').execute()
def print_results(results,results2,results3,results4,date):
if results:
# Print data nicely for the user.
for date in daterange( start, end ):
#print date
print (results)
#print 'First Profile: %s' % results.get('profileInfo').get('profileName')
#print 'Total Visits: %s' % results.get('rows')[0][0]
#print 'Total New Visits: %s' % results.get('rows')[0][1]
#print 'Total Unique Visitors: %s' % results.get('rows')[0][2]
#print 'Unique Visitors Starting the Survey: %s' % results2.get('rows')[0][0]
#print 'Unique Visitors Completing the Survey: %s' % results3.get('rows')[0][0]
#print 'Unique Visitors Registering: %s' % results4.get('rows')[0][0]
#print f
# OUTPUT TO FILE.
#f.write (str(date) + ',' + results.get('rows')[0][0] + ',' + results.get('rows')[0][2] + ',' + results2.get('rows')[0][0] + ',' + results3.get('rows')[0][0] + ',' + results4.get('rows')[0][0] + '\n')
#f.close()
else:
print 'No results found'
if __name__ == '__main__':
main(sys.argv)