import wikipedia page = wikipedia.page("Golden Gate Bridge", auto_suggest=False) golden_gate_lat = page.coordinates[0] golden_gate_lon = page.coordinates[1] print(f"Golden Gate Bridge geocode: [{golden_gate_lat}, {golden_gate_lon }]") # Perform a geosearch around the Golden Gate Bridge nearby_golden_gate = wikipedia.geosearch(golden_gate_lat, golden_gate_lon, results=10, radius=5000) # return a list. print(nearby_golden_gate) print(f"Wikipedia pages near the Golden Gate Bridge:") for page_title in nearby_golden_gate: print(f"- {page_title}")