Quotes from goodsread crawler built using golang
- import the library
import "github.com/faruqisan/crawl-quote"
- example
quoteEngine := quote.New()
// get popular quotes
quotes, err := quoteEngine.GetPopulars()
if err != nil {
// handle err
}
// print the quotes
log.Println(quotes)