You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gorequest/vendor/github.com/MercuryEngineering/CookieMonster
dtapps b7bd629099
- add vendor
2 months ago
..
.gitignore - add vendor 2 months ago
.travis.yml - add vendor 2 months ago
LICENSE - add vendor 2 months ago
README.md - add vendor 2 months ago
cookiemonster.go - add vendor 2 months ago
testcookies.txt - add vendor 2 months ago

README.md

CookieMonster

GoDoc Build Status

A simple package for parsing Netscape Cookie File formatted cookies into Go Cookies

Install

go get -u github.com/MercuryEngineering/CookieMonster

Example

import (
  "fmt"
  "github.com/MercuryEngineering/CookieMonster"
)

cookies, err := cookiemonster.ParseFile("cookies.txt")
if err != nil {
  panic(err)
}

for _, cookie := range cookies {
  fmt.Printf("%s=%s\n", cookie.Name, cookie.Value)
}