# import folium # # Map ka center location (latitude, longitude) # m = folium.Map(location=[28.6139, 77.2090], zoom_start=10) # # Ek marker add karo # folium.Marker( # location=[28.6139, 77.2090], # popup="Delhi", # tooltip="Click here" # ).add_to(m) # # Map save karo HTML file me # m.save("map.html") # print("Map successfully created!") api_key = "AIzaSyDUcwfYuGlQ5-hnysQO78aMtbzKWV3ElPw&callback=initMap&v=weekly" html_code = f""" Google Map Example

Google Map using Python

""" with open("google_map.html", "w") as f: f.write(html_code) print("Google Map HTML file created!")