MCPcopy Create free account
hub / github.com/0x676e67/wreq-python / delete

Method delete

src/client/blocking/mod.rs:65–72  ·  view source on GitHub ↗
(
        &self,
        py: Python<'_>,
        url: PyBackedStr,
        kwds: Option<RequestParams>,
    )

Source from the content-addressed store, hash-verified

63 /// Make a DELETE request to the specified URL.
64 #[pyo3(signature = (url, **kwds))]
65 pub fn delete(
66 &self,
67 py: Python<'_>,
68 url: PyBackedStr,
69 kwds: Option<RequestParams>,
70 ) -> PyResult<BlockingResponse> {
71 self.request(py, Method::DELETE, url, kwds)
72 }
73
74 /// Make a HEAD request to the specified URL.
75 #[pyo3(signature = (url, **kwds))]

Callers

nothing calls this directly

Calls 1

requestMethod · 0.45

Tested by

no test coverage detected