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