Final save before Thanksgiving holiday! Blacklane has been completed. Some small scripts were updates. Downloaded new - but error prone - SPS templates.

This commit is contained in:
Norm Rasmussen
2023-11-22 16:37:22 -05:00
parent be3cb15494
commit 7bc8b430be
33 changed files with 1705 additions and 71 deletions

View File

@ -0,0 +1,10 @@
import Apikeys
import requests
company = "EJP"
url = f"https://api.northpass.com/v2/groups?filter[name][eq]={company}"
apikey = Apikeys.DATASNIPPER
headers = {"X-Api-Key":apikey}
response = requests.get(url, headers=headers)
print(response.text)