Currently I am using Serp Api to extract places, but there is some information left. Like Question and Answers, At this place.(https://i.stack.imgur.com/giaUG.png)
I have tried this code
from serpapi import GoogleSearch
params = {
"device": "desktop",
"engine": "google_maps",
"q": "ENOC | 1086 | Opp Emirates Int School",
"google_domain": "google.com",
"ll": "@40.7455096,-74.0083012,14z",
"data": "!4m5!3m4!1s0x3e5f6cbec8c4424d:0x951dd76fff166da1!8m2!3d25.06475!4d55.1546667",
"type": "place",
"hl": "en",
"api_key": "secret_api_key"
}
search = GoogleSearch(params)
results = search.get_dict()
"At this place" section has been recently added, as well as "Questions and Answers". Here's how you can access it:
Outputs:
As a side note, you don't need to use
ll
whendata
parameter is used (place results).This is because
data
parameter holds the same information also, i.e latitude, and longitude except for zoom as in thell
parameter. In the case of place results, zoom is not needed :-)Hope it makes sense.