(
py: Python<'_>,
url: PyBackedStr,
kwds: Option<RequestParams>,
)
| 19 | #[pyfunction] |
| 20 | #[pyo3(signature = (url, **kwds))] |
| 21 | pub fn get( |
| 22 | py: Python<'_>, |
| 23 | url: PyBackedStr, |
| 24 | kwds: Option<RequestParams>, |
| 25 | ) -> PyResult<Bound<'_, PyAny>> { |
| 26 | future_into_py(py, shortcut_request(url, Method::GET, kwds)) |
| 27 | } |
| 28 | |
| 29 | /// Make a POST request with the given parameters. |
| 30 | #[pyfunction] |
nothing calls this directly
no test coverage detected