Custom templates for Courtney and iAdvize, and some notes for anthology, glassdoor, and stopit.

This commit is contained in:
Norm Rasmussen
2024-01-16 16:36:37 -05:00
parent 74cc4058bd
commit e9bdfd23df
25 changed files with 2448 additions and 75 deletions

View File

@ -6,6 +6,7 @@ HEADERS = {
"accept": "application/json",
"X-Api-Key": APIKEY,
}
"""
COURSES = [
"Build a Product Analytics Dashboard",
"FullStory 101",
@ -30,6 +31,7 @@ COURSES = [
"FullStory for Account Management",
"Product Analytics in FullStory",
]
"""
def get_courses():
@ -50,10 +52,10 @@ def get_courses():
for item in response["data"]:
print(item["id"])
idict = {item["attributes"]["name"]: item["id"]}
# idict = {item["attributes"]["name"]: item["id"]}
# id = item["id"]
# name = item["attributes"]["name"]
list_of_ids.append(idict)
# list_of_ids.append(idict)
if "next" not in nextlink:
break