(
py: Python<'_>,
url: PyBackedStr,
kwds: Option<RequestParams>,
)
| 30 | #[pyfunction] |
| 31 | #[pyo3(signature = (url, **kwds))] |
| 32 | pub fn post( |
| 33 | py: Python<'_>, |
| 34 | url: PyBackedStr, |
| 35 | kwds: Option<RequestParams>, |
| 36 | ) -> PyResult<Bound<'_, PyAny>> { |
| 37 | future_into_py(py, shortcut_request(url, Method::POST, kwds)) |
| 38 | } |
| 39 | |
| 40 | /// Make a PUT request with the given parameters. |
| 41 | #[pyfunction] |
nothing calls this directly
no test coverage detected