(
self,
url: str,
params: ParamsType = None,
headers: Headers = None,
data: DataType = None,
form: FormType = None,
multipart: MultipartType = None,
timeout: float = None,
failOnStatusCode: bool = None,
ignoreHTTPSErrors: bool = None,
maxRedirects: int = None,
maxRetries: int = None,
)
| 186 | ) |
| 187 | |
| 188 | async def get( |
| 189 | self, |
| 190 | url: str, |
| 191 | params: ParamsType = None, |
| 192 | headers: Headers = None, |
| 193 | data: DataType = None, |
| 194 | form: FormType = None, |
| 195 | multipart: MultipartType = None, |
| 196 | timeout: float = None, |
| 197 | failOnStatusCode: bool = None, |
| 198 | ignoreHTTPSErrors: bool = None, |
| 199 | maxRedirects: int = None, |
| 200 | maxRetries: int = None, |
| 201 | ) -> "APIResponse": |
| 202 | return await self.fetch( |
| 203 | url, |
| 204 | method="GET", |
| 205 | params=params, |
| 206 | headers=headers, |
| 207 | data=data, |
| 208 | form=form, |
| 209 | multipart=multipart, |
| 210 | timeout=timeout, |
| 211 | failOnStatusCode=failOnStatusCode, |
| 212 | ignoreHTTPSErrors=ignoreHTTPSErrors, |
| 213 | maxRedirects=maxRedirects, |
| 214 | maxRetries=maxRetries, |
| 215 | ) |
| 216 | |
| 217 | async def patch( |
| 218 | self, |
no test coverage detected