Here is the code:
import requests
url = "https://api.yelp.com/v3/businesses/search"
response = requests.get("https://api.yelp.com/v3/businesses/search")
print(response)
and I got this error:
PS D:\HelloWord> cd "d:\HelloWord"
PS D:\HelloWord> python -u "d:\HelloWord\app.py"
<Response [400]>
And I don't know what is wrong here I follow up the tutorial and is the same. Thank you in advance!