Notes from SPS,Keystone,Walmart, and Glassdoor. Changed some templates in my sandbox.

This commit is contained in:
Norm Rasmussen
2023-04-25 18:19:08 -04:00
parent 9c723283ff
commit c78cf84753
12 changed files with 317 additions and 86 deletions

View File

@ -0,0 +1,13 @@
import requests
import Apikeys
apikey = Apikeys.sps
url = "https://api.northpass.com/v2/events"
headers = {
"accept": "application/json",
"X-Api-Key": apikey
}
response = requests.get(url, headers=headers)
resp = response.json()
print(resp)