April 2017
Beginner to intermediate
358 pages
9h 30m
English
To start with, we will download the full web page from each of these links and store them in our data folder, under a raw subfolder. We will process these to extract the useful information later on. This caching of results ensures that we don't have to continuously download the websites while we are working. First, we set up the data folder path:
import os data_folder = os.path.join(os.path.expanduser("~"), "Data", "websites", "raw")
Read now
Unlock full access