logo Hurry, Grab up to 30% discount on the entire course
Order Now logo

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Dayanara AliPolitical science
(5/5)

661 Answers

Hire Me
expert
Taimoor KhanFinance
(4/5)

903 Answers

Hire Me
expert
Connorr EvansEngineering
(5/5)

697 Answers

Hire Me
expert
Vishal GoyalComputer science
(5/5)

912 Answers

Hire Me
Python Programming

Create a symbolic link to your script as ccn.py so that you can refer to your script as ccn.py. Your script must accept one or more "web site" as its command line parameters and other optional parameters

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

Instruction
Program Name and valid command line arguments
Name your Python3 script as ccn_[student_id].py. Create a symbolic link to your script as ccn.py (e.g. use the command ln -s ccn_rchan.py ccn.py to create the link) so that you can refer to your script as ccn.py. Your script must accept one or more "web site" as its command line parameters and other optional parameters as shown below. Your python script should produce the following usage text when run with the --help option:
 usage: ccn.py [-h] [-s SITE] [-t {table,text}] [-n {table,text}] N [N ...]
 Class Cancellation Notification System
 positional arguments:
  N         list of notification subscription sites to be processed.
 
optional arguments:
  -h, --help  show this help message and exit
  -s SITE, --site SITE  class cancellation web site
  -t {table,text}, --type {table,text}
                        type of class concellation data: table -> html table,
                        text -> plain text file
  -n {table,text}, --notification {table,text}
                        type of notification data: table -> html table, text
                        -> plain text file
 
Copyright 2020 - Raymond Chan
Replace the last line with your own full name
 If there is one CCN subscription web page provided at the command line, read the subscription list from the given web page. If there are more than one CCN subscription web pages provided, merge all the subscription list with the first one at the top and the last one at the bottom. Read and process the subscription list in that order in your program.
 If no class cancellation site specified, default to https://scs.senecac.on.ca/~raymond.chan/ops435/a3/ccn.html.
 If no -t or -n specified, default to html table.
Header
All your Python code for this assignment must be placed in a single source file. Please include the following declaration by you as the script level docstring in your Python source code file (replace [Student_id] with your Seneca email user name, and "Student Name" with your own name): 
OPS435 Assignment 3 - Fall 2019
Program: ccn_[Stduent_id].py
Author: "Student Name"
The python code in this file ccn_[Student_id].py is original work written by
"Student Name". No code in this file is copied from any other source 
including any person, textbook, or on-line resource except those provided
by the course instructor. I have not shared this python file with anyone
or anything except for submission for grading.  
I understand that the Academic Honesty Policy will be enforced and violators 
will be reported and appropriate action will be taken.
Modules you are allowed to use in your script for this assignment
the os, sys modules
the argparse module
Argparse Tutorial - should read this first.
Argparse API reference information page
the time module
Time module Tutorial
Time module API reference page
If you want or need to use other Python modules, please consult your professor to get the permission.
Sample Output
You python script should check the class cancellation notification site for any classes cancellation that are going to happen in the next 24 hours. If it identifies any classes, it should check the class cancellation notification subscription sites for any matches. If there is any matches, it should send an appropriate email to all the subscribers using the following template:
 
Dear <subscriber full name>,
     Your <class code> scheduled on <data and time> is being cancellated. Details about the cancellation can be found and confirm at <Class Cancellation Notification site>.
 
Your class cancellation notification team.
Message generated on <Date and time stamp>
The sample message should also be written to your CCN log file named ccn.log.

Related Questions

. The fundamental operations of create, read, update, and delete (CRUD) in either Python or Java

CS 340 Milestone One Guidelines and Rubric  Overview: For this assignment, you will implement the fundamental operations of create, read, update,

. Develop a program to emulate a purchase transaction at a retail store. This  program will have two classes, a LineItem class and a Transaction class

Retail Transaction Programming Project  Project Requirements:  Develop a program to emulate a purchase transaction at a retail store. This

. The following program contains five errors. Identify the errors and fix them

7COM1028   Secure Systems Programming   Referral Coursework: Secure

. Accepts the following from a user: Item Name Item Quantity Item Price Allows the user to create a file to store the sales receipt contents

Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip

. The final project will encompass developing a web service using a software stack and implementing an industry-standard interface. Regardless of whether you choose to pursue application development goals as a pure developer or as a software engineer

CS 340 Final Project Guidelines and Rubric  Overview The final project will encompass developing a web service using a software stack and impleme