yelp-python
yelp-python copied to clipboard
A Python library for the Yelp API
Hello, I try the following python code copied from this site: from yelp.client import Client MY_API_KEY = 'xxxx' client = Client(MY_API_KEY) business_response = client.business.get_by_id('yelp-san-francisco') Then, I have the error "'Client'...
https://www.yelp.com/developers/documentation/v3/business_search
https://www.yelp.com/developers/documentation/v3/category https://www.yelp.com/developers/documentation/v3/all_categories
https://www.yelp.com/developers/documentation/v3/event https://www.yelp.com/developers/documentation/v3/event_search https://www.yelp.com/developers/documentation/v3/featured_event
https://www.yelp.com/developers/documentation/v3/business_match
https://www.yelp.com/developers/documentation/v3/business_reviews
https://www.yelp.com/developers/documentation/v3/business_search_phone
The following code does't work when the parameter 'lang' changes. Only English results are shown. ``` import io import json from yelp.client import Client from yelp.oauth1_authenticator import Oauth1Authenticator with io.open('config_secret.json')...
I'd expect Search to take Unicode objects in Python 2.7: ``` # -*- coding: utf-8 -*- from yelp.client import Client from yelp.oauth1_authenticator import Oauth1Authenticator auth = Oauth1Authenticator(...) client = Client(auth)...