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

Method patch

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

Source from the content-addressed store, hash-verified

94 /// Make a PATCH request to the given URL.
95 #[pyo3(signature = (url, **kwds))]
96 pub fn patch<'py>(
97 &self,
98 py: Python<'py>,
99 url: PyBackedStr,
100 kwds: Option<RequestParams>,
101 ) -> PyResult<Bound<'py, PyAny>> {
102 self.request(py, Method::PATCH, url, kwds)
103 }
104
105 /// Make a OPTIONS request to the given URL.
106 #[pyo3(signature = (url, **kwds))]

Callers

nothing calls this directly

Calls 1

requestMethod · 0.45

Tested by

no test coverage detected