MCPcopy Create free account
hub / github.com/apify/crawlee-python / crawlee_data

Method crawlee_data

src/crawlee/_request.py:361–367  ·  view source on GitHub ↗

Crawlee-specific configuration stored in the `user_data`.

(self)

Source from the content-addressed store, hash-verified

359
360 @property
361 def crawlee_data(self) -> CrawleeRequestData:
362 """Crawlee-specific configuration stored in the `user_data`."""
363 user_data = cast('UserData', self.user_data)
364 if user_data.crawlee_data is None:
365 user_data.crawlee_data = CrawleeRequestData()
366
367 return user_data.crawlee_data
368
369 @property
370 def crawl_depth(self) -> int:

Callers

nothing calls this directly

Calls 1

CrawleeRequestDataClass · 0.85

Tested by

no test coverage detected