Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Now we have a client object, we can ping the AvaTax REST V2 server to ensure con
```
response = client.ping()

# to view respnse text
# to view response text
print(response.text())

# to view json version of the response
Expand All @@ -78,7 +78,7 @@ Now we have a client object, we can ping the AvaTax REST V2 server to ensure con
# to view the raw response
print(response.raw())
```
Note that the response from all REST calls made using this SDK will be [Request](http://docs.python-requests.org/en/master/user/quickstart/#response-content) object, which contains status code, response text, raw josn, and more information on the respnse.
Note that the response from all REST calls made using this SDK will be [Request](http://docs.python-requests.org/en/master/user/quickstart/#response-content) object, which contains status code, response text, raw josn, and more information on the response.


**Add credentials to your client object**
Expand Down