Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Hey I need help with a Python program soon please I need to use Google Place API

ID: 3715766 • Letter: H

Question

Hey I need help with a Python program soon please

I need to use Google Place API. The program can have the user pins on the map. When user type in the word regarding to the pin, the program can show the location nears him.

For an example, users can pin on the map for a location where flu patients are found. So when other users type flu in the search box, it will return the nearest location that has flu patients.

Also, when user search a specific place the program will return the place's picture.

Please use Tkinter for the GUI.

It can be just few functions instead of entire program.

I'm using Python 3.

Also add the function that like when user type 'coffee' in the search box, the program will return the nearby coffee shop

Explanation / Answer

from googlemaps import GoogleMaps gmap = GoogleMaps(api_key) loc = gmaps.local_search('flu people near me' + destination) print loc['responseData']['results'][0]['titleNoFormatting']