-
Notifications
You must be signed in to change notification settings - Fork 0
Python API Calls
Heath Brown edited this page Nov 9, 2023
·
4 revisions
Probably need a better title
import requests
def create_session():
s = requests.Session():
return s
def main():
sess = create_session()
resp = sess.get(creds.url + "/api/blah")
if __name__ == '__main__':
main()