Get your own Python server Result Size: 625 x 565
x
 
import requests
url = 'https://www.w3schools.com/python/demopage.js'
x = requests.get(url)
print(x.json())
{'firstname': 'John', 'lastname': 'Doe'}