An open API service indexing awesome lists of open source software.

https://github.com/onyas/go-browsercookie

:cookie: Port python browsercookie to golang
https://github.com/onyas/go-browsercookie

browser-cookie golang-library

Last synced: 5 months ago
JSON representation

:cookie: Port python browsercookie to golang

Awesome Lists containing this project

README

          

# go-browsercookie

- Port [Browsercookie](https://pypi.org/project/browsercookie/) from Python to Golang

## Install

```golang
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](https://github.com/zellyn/kooky), all the glory should belongs to [@zellyn]()