''' Name: Email id: Purpose: demonstrate the ability to analyze a web dataset ''' # get url data set module import url # specify web folder that has the data set DATASET_URL_FOLDER = 'http://www.cs1112.org/datasets/csv/' # get the dataset reply = input( 'Enter name of dataset: ' ) name = ... link = ... dataset = url.get_and_parse_dataset( link ) # get the search value reply = input( 'Enter search value: ' ) search_value = ... # initialize accumulator total_occurrences = ... # examine the dataset row by row. for each row determine the number of # occurrences of the search value. print the number and add it to the # accumulator for ... # print total number of occurrences of the search value print( total_occurrences )