Scraping Champlain Classes

Final Scripts:

Functions:

Function Calls and Queries:

Put the following html file in your "C:\xampp\htdocs" directory. Make sure your web server is on and you can access to your page from a web browser.

file-download
604KB

Unsolved Script to Scrape Classes

Solved Script to Scrape Classes

circle-exclamation

Script Working

Call Script with Dot Notation

Turn Days Property into an Array

The Days property displays its output as letters such as M, T, W, Th, and F. We want to change this so that we are outputting the days as their full names. We can turn the days property into an array with a translator function. Write a translator function where your first function is.

Unsolved Days Array Table

Solved Days Array Table

Call Both Scripts with Dot Notation

Making specific Queries

List all Classes taught by Furkan Paligu

Unsolved:

Solved:

List all the classes of JOYC 310 on Mondays, only display Class Code and Times. Sort by Start Time

Unsolved:

Solved:

Make a list of all the instructors that teach at least 1 course in one of the courses: SYS, NET, SEC, FOR, CSI, DAT. Sort by name and make it unique

Unsolved:

Solved:

Group all the instructors by the number of classes they are teaching, sort by the number of classes they are teaching

Unsolved:

Solved:

Last updated