MCPcopy Create free account
hub / github.com/apify/impit / trace

Method trace

impit-python/src/client.rs:299–320  ·  view source on GitHub ↗
(
        &self,
        py: Python<'_>,
        url: String,
        content: Option<Vec<u8>>,
        data: Option<RequestBody>,
        headers: Option<HashMap<String, String>>,
        timeout: Op

Source from the content-addressed store, hash-verified

297
298 #[pyo3(signature = (url, content=None, data=None, headers=None, timeout=Some(Right(USE_CLIENT_DEFAULT_SENTINEL)), force_http3=false))]
299 pub fn trace(
300 &self,
301 py: Python<'_>,
302 url: String,
303 content: Option<Vec<u8>>,
304 data: Option<RequestBody>,
305 headers: Option<HashMap<String, String>>,
306 timeout: Option<Either<f64, &str>>,
307 force_http3: Option<bool>,
308 ) -> Result<response::ImpitPyResponse, ImpitPyError> {
309 self.request(
310 py,
311 "trace",
312 url,
313 content,
314 data,
315 headers,
316 timeout,
317 force_http3,
318 Some(false),
319 )
320 }
321
322 #[pyo3(signature = (method, url, content=None, data=None, headers=None, timeout=Some(Right(USE_CLIENT_DEFAULT_SENTINEL)), force_http3=false))]
323 pub fn stream<'python>(

Callers 2

fetchMethod · 0.45
requestMethod · 0.45

Calls 1

requestMethod · 0.45

Tested by

no test coverage detected