Method
delete
(
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,
)
Source from the content-addressed store, hash-verified
| 128 | return self._tracing |
| 129 | |
| 130 | async def delete( |
| 131 | self, |
| 132 | url: str, |
| 133 | params: ParamsType = None, |
| 134 | headers: Headers = None, |
| 135 | data: DataType = None, |
| 136 | form: FormType = None, |
| 137 | multipart: MultipartType = None, |
| 138 | timeout: float = None, |
| 139 | failOnStatusCode: bool = None, |
| 140 | ignoreHTTPSErrors: bool = None, |
| 141 | maxRedirects: int = None, |
| 142 | maxRetries: int = None, |
| 143 | ) -> "APIResponse": |
| 144 | return await self.fetch( |
| 145 | url, |
| 146 | method="DELETE", |
| 147 | params=params, |
| 148 | headers=headers, |
| 149 | data=data, |
| 150 | form=form, |
| 151 | multipart=multipart, |
| 152 | timeout=timeout, |
| 153 | failOnStatusCode=failOnStatusCode, |
| 154 | ignoreHTTPSErrors=ignoreHTTPSErrors, |
| 155 | maxRedirects=maxRedirects, |
| 156 | maxRetries=maxRetries, |
| 157 | ) |
| 158 | |
| 159 | async def head( |
| 160 | self, |
Callers
nothing calls this directly
Tested by
no test coverage detected