(self, url, **kwargs)
| 117 | @add_auth_token_to_headers |
| 118 | @add_basic_auth_creds_to_kwargs |
| 119 | def get(self, url, **kwargs): |
| 120 | response = requests.get(self.root + url, **kwargs) |
| 121 | response = self._response_hook(response=response) |
| 122 | return response |
| 123 | |
| 124 | @add_ssl_verify_to_kwargs |
| 125 | @add_auth_token_to_headers |