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

Method __repr__

impit-python/python/impit/cookies.py:171–177  ·  view source on GitHub ↗

Return a string representation of the Cookies object.

(self)

Source from the content-addressed store, hash-verified

169 return False
170
171 def __repr__(self) -> str:
172 """Return a string representation of the Cookies object."""
173 cookies_repr = ', '.join(
174 [f'<Cookie {cookie.name}={cookie.value} for {cookie.domain} />' for cookie in self.jar]
175 )
176
177 return f'<Cookies[{cookies_repr}]>'

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected