yelp3

Python implementation of the Yelp V3 Fusion API


Keywords
yelp
License
MIT
Install
pip install yelp3==1.0.1

Documentation

yelp3-python

WIP Python implementation of Yelp's V3 Fusion API.

git clone "https://github.com/af-inet/yelp3-python"

Installation

Install yelp3 from PyPI using:

pip install yelp3

running the example

  1. Replace YOUR-ACCESS-TOKEN in example.py with your access token.

  2. run python example.py

from yelp3.client import Client

YELP_ACCESS_TOKEN = "YOUR-ACCESS-TOKEN"

client = Client(YELP_ACCESS_TOKEN)

resp = client.business_search(location="New York")

print(resp)

running the tests

python test.py YOUR-ACCESS-TOKEN

notes

Getting a v3 access token from Yelp:

Yelp v2 APIs: