From 91834dfcc75623d49b1129f1a7878dea6b73336a Mon Sep 17 00:00:00 2001 From: Norm Rasmussen Date: Fri, 1 Nov 2024 21:51:41 -0400 Subject: [PATCH] Quick backup. Mizuno monthly script. --- Scripts/API_Tests/add-pgaids.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/API_Tests/add-pgaids.py b/Scripts/API_Tests/add-pgaids.py index 8a448124..6405356b 100644 --- a/Scripts/API_Tests/add-pgaids.py +++ b/Scripts/API_Tests/add-pgaids.py @@ -4,7 +4,7 @@ from pathlib import Path import Apikeys import os -basefile = "/Users/normrasmussen/Downloads/mizuno-sept-completions.csv" +basefile = "/Users/normrasmussen/Downloads/mizuno-oct-completions.csv" api_key = Apikeys.MIZUNO uuid_url = "https://api.northpass.com/v2/people?filter[email][eq]=" prop_url = "https://api.northpass.com/v2/properties/people/" @@ -51,7 +51,7 @@ def load_file(basefile): completions = completions[completions["userid"] != "0"] # completions = completions.iloc[:, 0:] completions.to_csv( - "/Users/normrasmussen/Downloads/Mizuno-Sept2024-with-PGAID.csv", + "/Users/normrasmussen/Downloads/Mizuno-Oct2024-with-PGAID.csv", index=False, )