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

Method options

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

Source from the content-addressed store, hash-verified

85 /// Make a OPTIONS request to the specified URL.
86 #[pyo3(signature = (url, **kwds))]
87 pub fn options(
88 &self,
89 py: Python<'_>,
90 url: PyBackedStr,
91 kwds: Option<RequestParams>,
92 ) -> PyResult<BlockingResponse> {
93 self.request(py, Method::OPTIONS, url, kwds)
94 }
95
96 /// Make a TRACE request to the specified URL.
97 #[pyo3(signature = (url, **kwds))]

Callers

nothing calls this directly

Calls 1

requestMethod · 0.45

Tested by

no test coverage detected