Wrapper around requests to handle auth and async.
The main purpose of this wrapper is to handle authentication (by saving headers) and enable easy async methods on the same base object.
Requests()GET the URL and return the text.
POST to the URL and return the text.
PATCH the URL and return the text.
PUT the URL and return the text.
DELETE the URL and return the text.
GET the URL and return the text asynchronously.
POST to the URL and return the text asynchronously.
PATCH the URL and return the text asynchronously.
PUT the URL and return the text asynchronously.
DELETE the URL and return the text asynchronously.