Notes and some templates. Small changes.
This commit is contained in:
@ -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__":
|
||||
|
||||
Reference in New Issue
Block a user