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

https://github.com/hupe1980/gofrc

Golang Friendly Captcha Solver
https://github.com/hupe1980/gofrc

captcha captcha-solver proof-of-work

Last synced: 6 months ago
JSON representation

Golang Friendly Captcha Solver

Awesome Lists containing this project

README

          

# gofrc
![Build Status](https://github.com/hupe1980/gofrc/workflows/build/badge.svg)
[![Go Reference](https://pkg.go.dev/badge/github.com/hupe1980/gofrc.svg)](https://pkg.go.dev/github.com/hupe1980/gofrc)
> Golang Friendly Captcha Solver

## How to use
```go
frc := gofrc.New("YOUR_SITEKEY")

puzzle, err := frc.GetPuzzle()
if err != nil {
panic(err)
}

solution := frc.SolvePuzzle(puzzle)
```

## License
[MIT](LICENCE)