Modify import of urllib to urllib.request
The import as-is will fail as changes have been made to urllib. This fix will allow the rest of the code to work as-is.main
parent
1e81324573
commit
59b9115ccb
|
@ -124,7 +124,7 @@
|
||||||
"outputs": [],
|
"outputs": [],
|
||||||
"source": [
|
"source": [
|
||||||
"# Download the data\n",
|
"# Download the data\n",
|
||||||
"import urllib\n",
|
"import urllib.request\n",
|
||||||
"DOWNLOAD_ROOT = \"https://raw.githubusercontent.com/ageron/handson-ml2/master/\"\n",
|
"DOWNLOAD_ROOT = \"https://raw.githubusercontent.com/ageron/handson-ml2/master/\"\n",
|
||||||
"os.makedirs(datapath, exist_ok=True)\n",
|
"os.makedirs(datapath, exist_ok=True)\n",
|
||||||
"for filename in (\"oecd_bli_2015.csv\", \"gdp_per_capita.csv\"):\n",
|
"for filename in (\"oecd_bli_2015.csv\", \"gdp_per_capita.csv\"):\n",
|
||||||
|
|
Loading…
Reference in New Issue