Call the API with a GET request. Args: url (str): Resource location relative to the base URL. params (dict or None): Query-string parameters. Returns: ResultParser or ErrorParser.
(self, url, params=None, **kwargs)
| 141 | return r, r.status_code |
| 142 | |
| 143 | def get(self, url, params=None, **kwargs): |
| 144 | """Call the API with a GET request. |
| 145 | |
| 146 | Args: |
| 147 | url (str): Resource location relative to the base URL. |
| 148 | params (dict or None): Query-string parameters. |
| 149 | |
| 150 | Returns: |
| 151 | ResultParser or ErrorParser. |
| 152 | """ |
| 153 | return self.call_api("GET", url, params=params, **kwargs) |
| 154 | |
| 155 | def delete(self, url, params=None, **kwargs): |
| 156 | """Call the API with a DELETE request. |
no test coverage detected