MCPcopy Create free account
hub / github.com/apify/impit / delete

Method delete

impit-python/src/async_client.rs:254–275  ·  view source on GitHub ↗
(
        &self,
        py: Python<'python>,
        url: String,
        content: Option<Vec<u8>>,
        data: Option<RequestBody>,
        headers: Option<HashMap<String, String>>,
        timeou

Source from the content-addressed store, hash-verified

252
253 #[pyo3(signature = (url, content=None, data=None, headers=None, timeout=Some(Right(USE_CLIENT_DEFAULT_SENTINEL)), force_http3=false))]
254 pub fn delete<'python>(
255 &self,
256 py: Python<'python>,
257 url: String,
258 content: Option<Vec<u8>>,
259 data: Option<RequestBody>,
260 headers: Option<HashMap<String, String>>,
261 timeout: Option<Either<f64, &str>>,
262 force_http3: Option<bool>,
263 ) -> Result<pyo3::Bound<'python, PyAny>, PyErr> {
264 self.request(
265 py,
266 "delete",
267 url,
268 content,
269 data,
270 headers,
271 timeout,
272 force_http3,
273 Some(false),
274 )
275 }
276
277 #[pyo3(signature = (url, content=None, data=None, headers=None, timeout=Some(Right(USE_CLIENT_DEFAULT_SENTINEL)), force_http3=false))]
278 pub fn options<'python>(

Callers 1

requestMethod · 0.45

Calls 1

requestMethod · 0.45

Tested by

no test coverage detected