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' object has no attribute 'business'".
Any idea why the given code doesn't work?
Thanks for your help.