modulepackage
0.0.0-20190726085653-a0ba54f39260
Repository: https://github.com/onyas/go-browsercookie.git
Documentation: pkg.go.dev
# README
go-browsercookie
- Port Browsercookie from Python to Golang
Install
go get -u github.com/onyas/go-browsercookie
Usage
package main
import (
"github.com/onyas/go-browsercookie"
"log"
)
func main() {
cookieJar, error := browsercookie.Chrome("https://google.com")
if error != nil {
log.Fatal(error)
}
log.Println(cookieJar)
}
Thanks/references
It's a Wrapper for zellyn/kooky, all the glory should belongs to @zellyn