#!/usr/bin/python3 from urllib.request import urlopen url = "https://stats.oecd.org/" with urlopen(url) as response: body = response.read() print(body)