A CLI tool for finding food on Yelp using the Yelp API. Requires an API token from Yelp. Guide found here: https://www.yelp.com/developers/documentation/v3/authentication
./yelp_me --help
Usage of yelp_me:
-d, --distance int Distance in miles around the zip you are willing to look. NOT REQUIRED (default 10)
-s, --search string Keyword to search for on Yelp. REQUIRED
-v, --verbose Verbose mode
-z, --zip int Zip code to search around. REQUIRED (default 12345)
To build from source.
- Install Go. Guide here: https://golang.org/doc/install
- Install the required packages.
go get github.com/Jeffail/gabs
go get github.com/spf13/pflag
go get github.com/spf13/viper
go get gopkg.in/resty.v1
go build ./yelp_me.go
- Configure a .go_grub.yml file either in the based directory you are running yelp_me or in you home directory ~/.go_grub.yml. See the sample file in the project.
- Profit.