You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Instructions for intacting with the Google Analytics API
124
+
125
+
### Setting up the Virtual Environment
126
+
127
+
Analytics must be run on a virtual environment. To create and activate this environment, with the necessary `google-analytics-data` package, the terminal commands are:
128
+
129
+
```
130
+
python -m venv analytics-api-env
131
+
source analytics-api-env/bin/activate
132
+
pip install google-analytics-data
133
+
```
134
+
135
+
Replace 'analytics-api-env' with any new environment name. Also, `pip install` any other packages you may want for your analytics work.
136
+
137
+
### Setting up Credentials
138
+
139
+
To interact with the Google Analytics API locally you need to download the credentials file. This file has been uploaded to the ProjectPythia Google Drive and lives in the Analytics_API folder.
140
+
141
+
**This credentials file needs to be kept secure**, especially the `private_key` field. **Do NOT share this file.** If you do not have access to our Google Drive and need access to this file, please reach out to the team on discourse or in a community meeting.
142
+
143
+
The credentials file will have a name similar to `cisl-vast-pythia-{letters and numbers}.json`. This file may be replaced intermittently with a slightly different alphanumeric string for additional security.
144
+
145
+
One way to ensure that your Python script is using the correct credentials file is to read it as a dictionary and pass that into your API client at the begging of your script.
146
+
147
+
```
148
+
from google.analytics.data_v1beta import BetaAnalyticsDataClient
149
+
from google.analytics.data_v1beta.types import DateRange, Dimension, Metric, RunReportRequest
150
+
151
+
with open('{credentials-file-path}') as json_file:
This function demonstrates how to format your `RunReportRequest()` arguments, notably the `dimensions` and `metrics` fields, as well as the expected date formatting in `date_ranges`.
176
+
177
+
This [Google Analytics API Schema](https://developers.google.com/analytics/devguides/reporting/data/v1/api-schema) documentation lists all of the available dimension and metric keys that can be passed into your request.
178
+
179
+
`property_id` is a 9-digit number associated with the project you are interested in. This number can be found on the Analytics project page. For Project Pythia, our three different property IDs are:
180
+
```
181
+
PORTAL_ID = '266784902'
182
+
FOUNDATIONS_ID = '281776420'
183
+
COOKBOOKS_ID = '324070631'
184
+
```
185
+
186
+
### Working with your request output
187
+
188
+
Your Google Analytics response is formatted in a series of rows that each have the key `dimension_value` and `metric_value`. You may find it easier to work with your data in a dictionary or tuple. For the single dimension of "date" and metric of "activeUsers" as specified in our example function, here is what your data manipulation may look like before you can carry out additional analysis.
189
+
190
+
```
191
+
dates=[]
192
+
users=[]
193
+
for row in response.rows:
194
+
date_str = row.dimension_values[0].value
195
+
date = datetime.datetime.strptime(date_str, '%Y%m%d')
One thing to note is that your Analytics response rows are not automatically chronological, so in this example we zipped our sorted tuple to ensure that the dates are in the expected order.
0 commit comments