No description
Find a file
PhilippMDoerner 372b0ab1a6
Merge pull request #6 from PhilippMDoerner/master
Increase version for various bugfixes that happened over the years
2024-12-31 15:48:51 +01:00
.github/workflows ci 2020-10-02 11:31:27 +08:00
src Added exeception if a cookie is set with sameSite=None and secure=false 2023-02-23 09:24:05 -07:00
tests Updating the SameSite=Lax tests to handle being the default for browsers; passing nimble tests 2023-02-23 12:38:14 -07:00
.travis.yml initates 2020-04-29 11:36:49 +08:00
cookiejar.nimble Increase version for various bugfixes that happened over the years 2024-12-31 15:33:24 +01:00
LICENSE Initial commit 2020-04-29 11:30:46 +08:00
README.md usage 2020-04-29 17:00:38 +08:00

cookiejar

HTTP Cookies for Nim. This module provides the Cookie type, which directly maps to Set-Cookie HTTP response headers, and the CookieJar type which contains many cookies.

Overview

Cookie type is used to generate Set-Cookie HTTP response headers. Server sends Set-Cookie HTTP response headers to the user agent. So the user agent can send them back to the server later.

CookieJar contains many cookies from the user agent.

Usage

import cookiejar