Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

It is time to enroll in classes for the spring 2019 semester. The schedule is available programatically via a JSON api http://api.fit.edu/courses/v1/courses?term=spring Write a Python

It is time to enroll in classes for the spring 2019 semester. The schedule is available programatically via a JSON api

http://api.fit.edu/courses/v1/courses?term=spring 

Write a Python progrm to read the schedule into a Python dictionary and then answer queries.

Input and Output Specification

Each line of the standard input stream is a query. Each query is a space-separated list of terms. Each term consists of key and regular expression. Here is an example of a query.

subject=CSE course_number=4... 

The only keys allowed are those with string value fields (i.e., no lists, etc). The regular expression is in the Python re syntax (raw). A record matches if the regular expression matches the entire value for every key (conjunction).

For each query print all the matching records in the following form:

crn subject course_number section days begin_time end_time instructor 

For example,

84466 CSE 2010 01 MW 1400 1515 Chan 

Print a blank line after every set of matches.

If there are no matches, print the line:

NO MATCHING RECORDS
(And, follow it with a blank line.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Design Application Development And Administration

Authors: Michael V. Mannino

3rd Edition

0071107010, 978-0071107013

More Books

Students also viewed these Databases questions