MCPcopy
hub / github.com/encode/httpx / cookies

Method cookies

httpx/_models.py:835–839  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

833
834 @property
835 def cookies(self) -> Cookies:
836 if not hasattr(self, "_cookies"):
837 self._cookies = Cookies()
838 self._cookies.extract_cookies(self)
839 return self._cookies
840
841 @property
842 def links(self) -> dict[str | None, dict[str, str]]:

Callers

nothing calls this directly

Calls 2

CookiesClass · 0.85
extract_cookiesMethod · 0.80

Tested by

no test coverage detected