''' Purpose: practice getting web content into a useful dataset and using then dataset ''' import url # specify data source CSV_BASE_FOLDER = 'http://www.cs.virginia.edu/~cs1112/datasets/csv/' reply = input( 'Enter the name of a data set: ' ) name = reply.strip() dataset_source = CSV_BASE_FOLDER + name # get dataset from the data source ... # process the dataset row-by-row