import wikipedia title = "University of Houston-Clear Lake" # Use wikipedage to get the page with the title. # Turn off automatic suggestion. page = wikipedia.page(title, auto_suggest=False) # print some selected information from Wikipedia print(f"Information about Wikipedia page on {title}") print(f"1. Page Title: {title}") print(f"2. Page URL: {page.url}") summary = wikipedia.summary(title, sentences=3, auto_suggest=False) print(f"3. Summary:\n{summary}") num_images = len(page.images) print(f"4. Number of Images: {num_images}")