Completed Anthology script to parse the long JS nodes.

This commit is contained in:
Norm Rasmussen
2023-11-01 16:57:42 -04:00
parent 79721ef1e5
commit 5b2363bae2
3 changed files with 43 additions and 17 deletions

View File

@ -4,7 +4,7 @@ from pathlib import Path
import Apikeys
import os
basefile = "/Users/normrasmussen/Downloads/Mizuno-September23-Completions.csv"
basefile = "/Users/normrasmussen/Downloads/Mizuno_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.iloc[:, 0:]
print(completions)
completions.to_csv(
"/Users/normrasmussen/Downloads/Mizuno-09.23-Completions_with_PGAIDs.csv",
"/Users/normrasmussen/Downloads/Mizuno-10.23-Completions_with_PGAIDs.csv",
index=False,
)