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

Method put

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

Source from the content-addressed store, hash-verified

41 /// Make a PUT request to the specified URL.
42 #[pyo3(signature = (url, **kwds))]
43 pub fn put(
44 &self,
45 py: Python<'_>,
46 url: PyBackedStr,
47 kwds: Option<RequestParams>,
48 ) -> PyResult<BlockingResponse> {
49 self.request(py, Method::PUT, url, kwds)
50 }
51
52 /// Make a PATCH request to the specified URL.
53 #[pyo3(signature = (url, **kwds))]

Callers

nothing calls this directly

Calls 1

requestMethod · 0.45

Tested by

no test coverage detected