McMaster University
CAS 706

Assignment 4

Scripting/Programming with libraries

This assignment is all about finding the right libraries as well as the right level of expressiveness to code what seems like a very complex task in very few lines of (still readable!) code.

First, you should write a program which takes a command-line parameter for a "search", then makes a query (DuckDuckGo, Bing, etc, all have APIs) to get (the names of) files containing HTML -- you might even want to make your query more precise and get certain flavour(s) of HTML. You are to take 500 files from the web (obtained from your query), and run these files/sites through the W3C HTML Validator. You can use the validator locally, but you get extra points if you can use the online version of the Validator hosted on the W3C site. [In other words, you don't even need to download the files.] Grab all the errors and warnings you get, and collect some statistics about this "bad html", and output these statistics. Your code should be no longer than 100 lines of well-formatted code. Fewer lines is better, as long as the code remains readable.

Beware: many search API only allows some number of free searches per day, so do not debug your code by massive testing, as you will get billed for it! Also, don't blast too much to the W3C site all at once as you'll get blacklisted. So it is a good idea to have a list of files available without doing the query, and the validator available locally, to do testing. Bonus marks for being able to do this in the same code with a command-line switch.



Nov. 2017