(
py: Python<'_>,
method: Method,
url: PyBackedStr,
kwds: Option<RequestParams>,
)
| 107 | #[pyfunction] |
| 108 | #[pyo3(signature = (method, url, **kwds))] |
| 109 | pub fn request( |
| 110 | py: Python<'_>, |
| 111 | method: Method, |
| 112 | url: PyBackedStr, |
| 113 | kwds: Option<RequestParams>, |
| 114 | ) -> PyResult<Bound<'_, PyAny>> { |
| 115 | future_into_py(py, shortcut_request(url, method, kwds)) |
| 116 | } |
| 117 | |
| 118 | /// Make a WebSocket connection with the given parameters. |
| 119 | #[pyfunction] |
nothing calls this directly
no test coverage detected