Skip to content

Instantly share code, notes, and snippets.

@jing-jin-mc
jing-jin-mc / Automate_User_Deletion.ipynb
Created December 6, 2018 20:16
Get Data from Analytics Reporting API, Connect Jupyter Notebook with Spread Sheet
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
function myFunction() {
var activeSpreadsheet = SpreadsheetApp.getActiveSpreadsheet();
var sheet = activeSpreadsheet.getSheetByName('Main');
var resultsheet = activeSpreadsheet.getSheetByName('Result');
var userInputs = sheet.getRange("A3:B").getValues();
var webPropertyId = String(userInputs[0][0]);
var numClients = userInputs[0][1]
for (var i = 0; i<numClients;i++){
var typeOfId = String(userInputs[2+i][1]);
@jing-jin-mc
jing-jin-mc / Google_Drive.ipynb
Created December 3, 2018 16:11
Connect Jupyter Notebook with Google Sheet
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jing-jin-mc
jing-jin-mc / Get_ClientID_List.ipynb
Created December 3, 2018 11:36
Google Analytics Reporting API
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.