Cookies API — Aquilia Documentation
Comprehensive guide and documentation for Cookies API in the Aquilia framework. View API reference, examples, and implementation patterns.
HTTP Client / Core API cookies.py RFC 6265 compliant Cookie and CookieJar primitives for managing HTTP cookies. 1. Overview cookies.py manages cookie attributes (SameSite, Secure, HttpOnly), domain matching, and path hierarchies. 2. API Reference @dataclass class Cookie: name: str value: str domain: str | None = None path: str | None = None expires: datetime | None = None max_age: int | None = None secure: bool = False http_only: bool = False same_site: str | None = None )
Go to Homepage