GA_Daily.py 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. #!/usr/bin/python3
  2. import sys
  3. import codecs
  4. import traceback
  5. import requests
  6. import re
  7. import pandas as pd
  8. import random
  9. import urllib
  10. import json
  11. import gspread
  12. import datetime
  13. from gspread_pandas import Spread, Client
  14. from oauth2client.service_account import ServiceAccountCredentials
  15. import os
  16. import threading
  17. from googleapiclient.discovery import build
  18. from oauth2client.service_account import ServiceAccountCredentials
  19. import dataset
  20. from datetime import datetime
  21. import schedule
  22. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/hhh?charset=utf8mb4')
  23. db.query('delete from ga_pagepath')
  24. db.begin()
  25. table=db['ga_pagepath']
  26. SCOPES = ['https://www.googleapis.com/auth/analytics.readonly']
  27. KEY_FILE_LOCATION = 'c:\\keys\\choozmo-ga-beee24b7a4c1.json' #'c:\\keys\\choozmo-ga-beee24b7a4c1.json'
  28. VIEW_ID = '188916214'
  29. # line notify header
  30. headers = {
  31. "Authorization": "Bearer " + "WekCRfnAirSiSxALiD6gcm0B56EejsoK89zFbIaiZQD",
  32. "Content-Type": "application/x-www-form-urlencoded"
  33. }
  34. def send_msg(kw):
  35. # line notify send message
  36. current_time = datetime.now().strftime('%Y-%m-%d %H:%M:%S') #現在時間
  37. # 判斷是否達標
  38. complet="否"
  39. if int(kw) > 56000 :
  40. complet="是"
  41. params = {"message": "\n現在時間: " + current_time + "\n當前pageViews: "+kw + "\n是否達標: " + complet}
  42. print(params)
  43. r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
  44. print(r.text)
  45. def scheduleMonitor():
  46. # 清空任務
  47. schedule.clear()
  48. # 建立一個按1小時隔執行任務
  49. schedule.every(1).hours.do(main)
  50. while True:
  51. schedule.run_pending()
  52. def initialize_analyticsreporting():
  53. """Initializes an Analytics Reporting API V4 service object.
  54. Returns:
  55. An authorized Analytics Reporting API V4 service object.
  56. """
  57. credentials = ServiceAccountCredentials.from_json_keyfile_name(
  58. KEY_FILE_LOCATION, SCOPES)
  59. # Build the service object.
  60. analytics = build('analyticsreporting', 'v4', credentials=credentials)
  61. return analytics
  62. def get_report(analytics,body):
  63. """Queries the Analytics Reporting API V4.
  64. Args:
  65. analytics: An authorized Analytics Reporting API V4 service object.
  66. Returns:
  67. The Analytics Reporting API V4 response.
  68. """
  69. return analytics.reports().batchGet(
  70. body={
  71. 'reportRequests':body
  72. }
  73. ).execute()
  74. def print_response(response):
  75. """Parses and prints the Analytics Reporting API V4 response.
  76. Args:
  77. response: An Analytics Reporting API V4 response.
  78. """
  79. result=[]
  80. for report in response.get('reports', []):
  81. columnHeader = report.get('columnHeader', {})
  82. dimensionHeaders = columnHeader.get('dimensions', [])
  83. metricHeaders = columnHeader.get('metricHeader', {}).get('metricHeaderEntries', [])
  84. for row in report.get('data', {}).get('rows', []):
  85. dimensions = row.get('dimensions', [])
  86. dateRangeValues = row.get('metrics', [])
  87. ga_dict={}
  88. for header, dimension in zip(dimensionHeaders, dimensions):
  89. # print(header + ': ', dimension)
  90. ga_dict[header]=dimension
  91. for i, values in enumerate(dateRangeValues):
  92. # print('Date range:', str(i))
  93. for metricHeader, value in zip(metricHeaders, values.get('values')):
  94. ga_dict[metricHeader.get('name')]=value
  95. # print(metricHeader.get('name') + ':', value)
  96. result.append(ga_dict)
  97. return result
  98. # print(ga_dict)
  99. def main():
  100. analytics = initialize_analyticsreporting()
  101. #(FB_|facebook|IG_|LINE_|LINEMP_|qsear.ch)
  102. body=[{ 'viewId': VIEW_ID,
  103. 'dateRanges': [{'startDate': '2021-11-03', 'endDate': '2021-11-03'}],
  104. 'metrics': [{'expression': 'ga:users'},{'expression': 'ga:newusers'},{'expression': 'ga:sessions'},{'expression': 'ga:pageviews'},{'expression': 'ga:bounceRate'},{'expression': 'ga:pageviewsPerSession'}],
  105. # 'dimensions': [{'name': 'ga:pagePath'}],
  106. # 'orderBys':[{"fieldName": "ga:pageviews", "sortOrder": "DESCENDING"}],
  107. 'pageSize': '100'
  108. }]
  109. response = get_report(analytics,body)
  110. ga_dict=print_response(response)
  111. result=[]
  112. for elmt in ga_dict:
  113. print(elmt)
  114. send_msg(elmt['ga:pageviews'])
  115. # result.append(elmt)
  116. print('inserting.....')
  117. if __name__ == '__main__':
  118. scheduleMonitor()