Notes and some templates. Small changes.

This commit is contained in:
Norm Rasmussen
2023-07-27 22:20:47 -04:00
parent 2320513c9f
commit 79794e0030
9 changed files with 333 additions and 4 deletions

View File

@ -1,7 +1,7 @@
import requests
import Apikeys
apiKey = Apikeys.doximity_internal
apiKey = Apikeys.bigideas
groups_dict = {}
@ -20,7 +20,7 @@ def get_groups(apiKey):
for response in data["data"]:
group_id = response["id"]
group_name = response["attributes"]["name"]
print(group_name)
# print(group_name)
groups_dict = {
"id": group_id,
"name": group_name,
@ -31,6 +31,7 @@ def get_groups(apiKey):
break
print(groups)
print(len(groups))
if __name__ == "__main__":