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

@ -13,3 +13,4 @@ anthology = "8ALsk8jDOlynEwn8ScMBSnG87"
talkspace_1099 = "jpfQoIc2i5S6iq4saFjBOEkbt"
doximity_internal = "vAnSR4CvxpII6buj3uT23MPBY"
terminus_employee = "M2er8m0DMQyCyP7zOg3Gbae9k"
bigideas = "mgGWRtmhebC9xulTXeSohVtop"

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__":