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

Method get

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

Source from the content-addressed store, hash-verified

39 /// Make a GET request to the given URL.
40 #[pyo3(signature = (url, **kwds))]
41 pub fn get<'py>(
42 &self,
43 py: Python<'py>,
44 url: PyBackedStr,
45 kwds: Option<RequestParams>,
46 ) -> PyResult<Bound<'py, PyAny>> {
47 self.request(py, Method::GET, url, kwds)
48 }
49
50 /// Make a HEAD request to the given URL.
51 #[pyo3(signature = (url, **kwds))]

Callers 7

mainFunction · 0.95
request_firefoxFunction · 0.95
test_badsslFunction · 0.95
test_set_cookieFunction · 0.95
test_alps_new_endpointFunction · 0.95
encodingMethod · 0.45

Calls 1

requestMethod · 0.45

Tested by 4

test_badsslFunction · 0.76
test_set_cookieFunction · 0.76
test_alps_new_endpointFunction · 0.76