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

Method options

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

Source from the content-addressed store, hash-verified

105 /// Make a OPTIONS request to the given URL.
106 #[pyo3(signature = (url, **kwds))]
107 pub fn options<'py>(
108 &self,
109 py: Python<'py>,
110 url: PyBackedStr,
111 kwds: Option<RequestParams>,
112 ) -> PyResult<Bound<'py, PyAny>> {
113 self.request(py, Method::OPTIONS, url, kwds)
114 }
115
116 /// Make a TRACE request to the given URL.
117 #[pyo3(signature = (url, **kwds))]

Callers

nothing calls this directly

Calls 1

requestMethod · 0.45

Tested by

no test coverage detected