├── .gitignore ├── README.md ├── main.go └── structs.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | .DS_Store 3 | dist/ 4 | .goreleaser.yml 5 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawrowfly/amazon-keyword-scraper-go/HEAD/README.md -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawrowfly/amazon-keyword-scraper-go/HEAD/main.go -------------------------------------------------------------------------------- /structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drawrowfly/amazon-keyword-scraper-go/HEAD/structs.go --------------------------------------------------------------------------------