Started the reorganization of Scripts for github. Some notes changes.

This commit is contained in:
Norm Rasmussen
2023-05-04 16:07:06 -04:00
parent 6a674ca24b
commit 18a266746b
209 changed files with 121 additions and 12181 deletions

View File

@ -4,8 +4,8 @@ from pathlib import Path
import Apikeys
import os
basefile = "/Users/normrasmussen/Downloads/Recast-learners.csv"
api_key = Apikeys.recast
basefile = "/Users/normrasmussen/Downloads/client-learners.csv"
api_key = Apikeys.client
prop_url = "https://api.northpass.com/v2/properties/people/"
headers = {
"accept": "*/*",
@ -45,7 +45,7 @@ def load_file(basefile):
completions.loc[completions.index[row], "Company"] = comp
print(completions)
completions.to_csv(
"/Users/normrasmussen/Downloads/Recast_learners_w_Company.csv",
"/Users/normrasmussen/Downloads/client_learners_w_Company.csv",
index=False
)