File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -80,11 +80,11 @@ Assuming this `exampleClient.py` file is in the same directory as your consuming
8080``` py
8181import Example from exampleClient
8282
83- example_client = Example() # instantiates a client object - uses environment variables for auth if present
84- resources = example .make_request(' /api/v1/resources' ) # will send a GET request to the resources endpoint
85- users = example .get_users() #
83+ client = Example() # instantiates a client object - uses environment variables for auth if present
84+ resources = client .make_request(' /api/v1/resources' ) # will send a GET request to the resources endpoint
85+ users = client .get_users() #
8686
87- john = example .get_user(id = " 12" ) # returns the user object for John
87+ john = client .get_user(id = " 12" ) # returns the user object for John
8888```
8989
9090## Roadmap
You can’t perform that action at this time.
0 commit comments