Last active
March 1, 2022 23:44
-
-
Save macloo/736e7111c89d14090e76e31411a67fe3 to your computer and use it in GitHub Desktop.
Demonstrates extraction of JSON data from a Wikipedia API request - does NOT use the Python library wikipedia-api
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Demonstrates extraction of data from a Wikipedia API request""" | |
import requests | |
API_URL = 'https://en.wikipedia.org/w/api.php?action=query&origin=*&format=json&generator=search&gsrnamespace=0&gsrlimit=10&gsrsearch={}' | |
search_term = "David_Bowie" | |
data = requests.get(API_URL.format(search_term)).json() | |
# put the pages from the result JSON into a list | |
dict = data["query"]["pages"] | |
for v in dict.values(): | |
print(v["pageid"]) | |
print(v["title"]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is (also, alternatively) a more compact way to write string formatters:
https://realpython.com/python-f-strings/#simple-syntax
In my opinion, that would not work as well here — but in other cases, I do prefer the compact style.