R client for accessing the Yelp Fusion API.
You can install the in-development version from GitHub using the
remotes
package.
install.packages("devtools")
remotes::install_github("SamanthaToet/yelpr")
If you encounter a bug, have usage questions, or want to share ideas to make this package better, feel free to file an issue.
To interface with the Yelp API, you’ll need to register a Yelp
Developer account and then create an
app. Your app will auto
generate a Client ID
and API Key
. Copy the value for the API Key
and save that value in your keyring by running the below code:
keyring::key_set("yelp")
You will be promped to paste your API Key
in a separate password
window.
Get a list of all the restaurants that have chicken wings in Charlottesville, VA:
yelp_search("chicken wings", "Charlottesville, VA")
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
MIT © Samantha Toet