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

Method put

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

Source from the content-addressed store, hash-verified

72 /// Make a PUT request to the given URL.
73 #[pyo3(signature = (url, **kwds))]
74 pub fn put<'py>(
75 &self,
76 py: Python<'py>,
77 url: PyBackedStr,
78 kwds: Option<RequestParams>,
79 ) -> PyResult<Bound<'py, PyAny>> {
80 self.request(py, Method::PUT, url, kwds)
81 }
82
83 /// Make a DELETE request to the given URL.
84 #[pyo3(signature = (url, **kwds))]

Callers

nothing calls this directly

Calls 1

requestMethod · 0.45

Tested by

no test coverage detected