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

Method delete

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

Source from the content-addressed store, hash-verified

83 /// Make a DELETE request to the given URL.
84 #[pyo3(signature = (url, **kwds))]
85 pub fn delete<'py>(
86 &self,
87 py: Python<'py>,
88 url: PyBackedStr,
89 kwds: Option<RequestParams>,
90 ) -> PyResult<Bound<'py, PyAny>> {
91 self.request(py, Method::DELETE, url, kwds)
92 }
93
94 /// Make a PATCH request to the given URL.
95 #[pyo3(signature = (url, **kwds))]

Callers

nothing calls this directly

Calls 1

requestMethod · 0.45

Tested by

no test coverage detected