Answered step by step
Verified Expert Solution
Question
1 Approved Answer
please use Python to do this thank you very much RSS Overview Many websites have content that is updated on an unpredictable schedule. News sites,
please use Python to do this
thank you very much
RSS Overview
Many websites have content that is updated on an unpredictable schedule. News sites, such as Google News, are a good example of this. One tedious way to keep track of this changing content is to load the website up in your browser, and periodically hit the refresh button.
Fortunately, this process can be streamlined and automated by connecting to the websites RSS feed, using an RSS feed reader instead of a web browser (e.g. Sage). An RSS reader will periodically collect and draw your attention to updated content.
RSS stands for Really Simple Syndication. An RSS feed consists of (periodically changing) data stored in an XML-format file residing on a web-server. For this project the details are unimportant. You dont need to know what XML is, nor do you need to know how to access these files over the network. We will use a special Python module to deal with these low-level details. The higher-level details, in the notes below, describing the structure of the Google News RSS feed, should be enough for our purposes.
Part 1: Data Structure Design
RSS feed structure: Google News
First, lets talk about one specific RSS feed: Google News. The URL for the Google News feed is: https:/ews.google.comews?output=rss.
If you try to load this URL in your browser, you may see your browsers interpretation of the XML code generated by the feed. You can view the XML source with your browsers View Page Source function, though it probably will not make much sense to you. Abstractly, whenever you connect to the Google RSS feed, you receive a list of items. Each entry in this list represents a single news item. In a Google News feed, every entry has the following fields:
guid: A globally unique identifier for this news story
title: The news storys headline
published: Publication date of the story
summary: A paragraph or so summarizing the news story
link: A link to a web-site with the entire story
Generalizing the problem
This is, unfortunately, a little trickier than wed like it to be, because each of these RSS feeds is structured a little bit differently than the others. So, our goal in Part 1 is to come up with a unified, standard representation that well use to store a news story.
Why do we want this? When all is said and done, we want an application that aggregates several RSS feeds from various sources, and can act on all of them in the exact same way: we should be able to read the New York Timess RSS feed, Google Newss RSS feed, The Techs RSS feed, and the RSS feeds from blogs such as CuteOverload.com, all in one place.
Problem 1
Parsing all of this information from the feeds that Google/Yahoo/the New York Times/etc. gives us is no small feat. So, lets tackle an easy part of the problem first: Pretend that someone has already done the specific parsing, and has left you with variables that contain the following information for a news story:
globally unique identifier (GUID) a string that serves as a unique name for this entry
title a string
published a string
summary a string
link to more content a string
We want to store this information in an object that we can then pass around in the rest of our program. Your task, in this problem, is to write a class, NewsStory, with at least the following methods:
get_guid()
get_title()
get_published()
get_summary()
get_link()
Youll also want to write a constructor for NewsStory that takes (guid, title, published, summary, link) as arguments and stores them appropriately. The solution to this problem should be relatively short and very straightforward.
Parsing the feed
Parsing is the process of turning a data stream into a structured format that is more convenient to work with. We have provided you with code that will retrieve and parse the Google and Yahoo news feeds.
Part 2: Triggers
Given a set of news stories, your program will generate alerts for a subset of those stories. Stories with alerts will be displayed to the user, and the other stories will be silently discarded. We will represent alerting rules as triggers. A trigger is a rule that is evaluated over a single news story and may fire to generate an alert. For example, a simple trigger could fire for every news story whose title contained the word Microsoft. Another trigger may be set up to fire for all news stories where the summary contained the word Philadelphia. Finally, a more specific trigger could be set up to fire only when a news story contained both the words Microsoft and Philadelphia in the summary.
In order to simplify our code, we will use object polymorphism. We will define a trigger interface and then implement a number of different classes that implement that trigger interface in different ways.
Trigger interface
Each trigger class you define should implement the following interface, either directly or transitively. It must implement the evaluate method that takes a news item (NewsStory object) as an input and returns True if an alert should be generated for that item. We will not use the implementation of the Trigger class (which is why it throws an exception should anyone attempt to use it), but rather the function definition that specifies that an evaluate(self, story) function should exist. The class below implements the Trigger interface (you will not modify this). Any subclass that inherits from it will have an evaluate method. By default, they will use the evaluate method in Trigger, the superclass, unless they define their own evaluate function, which would then be used instead. If some subclass neglects to define its own evaluate method, calls to it will go to Trigger.evaluate, which fails cleanly with the NotImplementedError exception:
class Trigger(object):
def evaluate(self, story):
"""
Returns True if an alert should be generated
for the given news item, or False otherwise.
"""
raise NotImplementedError
We will define a number of classes that inherit from Trigger. In the figure below, Trigger is a superclass, which all other classes inherit from. The arrow from WordTrigger to Trigger means that WordTrigger inherits from Trigger a WordTrigger is a Trigger. Note that other classes inherit from WordTrigger.
Whole word triggers
Having a trigger that always fires isnt interesting. Lets write some that are. A user may want to be alerted about news items that contain specific words. For instance, a simple trigger could fire for every news item whose title contained the word Microsoft. In the following problems, we ask you to create a word trigger abstract class and implement three classes that implement triggers of this sort.
The trigger should fire when the whole word is present. For example, a trigger for soft should fire on:
Koala bears are soft and cuddly.
I prefer pillows that are soft.
Soft drinks are great.
Softs the new pink!
Soft! he exclaimed as he threw the football.
But should not fire on
Microsoft announced today that pillows are bad.
This is a little tricky, especially the case with the apostrophe. For the purpose of your parsing, pretend that a space or any character in string.punctuation is a word separator. If youve never seen string.punctuation before, go to your interpreter and type:
>>> import string
>>> string.punctuation
Play around with this a bit to get comfortable with what it is. The split and replace method of strings will almost certainly be helpful as you tackle this part. You may also find the string methods lower and/or upper useful for this problem.
Problem 2
Implement a word trigger abstract class, WordTrigger. It should take in a string word as an argument to the classs constructor.
WordTrigger should be a subclass of Trigger. It has one new method, is_word_in. is_word_in takes in one string argument text. It returns True if the whole word word is present in text, False otherwise, as described in the above examples. This method should not be case sensitive. Implement this method.
Because this is an abstract class, we will not be directly instantiating any WordTriggers. WordTrigger should inherit its evaluate method from Trigger. We do this because now we can create subclasses of WordTrigger that use its is_word_in function. In this way, it is much like the Trigger interface, except now actual code from the class is used.
Problem 3
Implement a word trigger class, TitleTrigger that fires when a news items title contains a given word. The word should be an argument to the classs constructor. This trigger should not be case-sensitive (it should treat Intel and intel as being equal).
For example, an instance of this type of trigger could be used to generate an alert whenever the word Intel occurred in the title of a news item. Another instance could generate an alert whenever the word Microsoft occurred in the title of an item.
Think carefully about what methods should be defined in TitleTrigger and what methods should be inherited from the superclass.
Once youve implemented TitleTrigger, the TitleTrigger unit tests in our test suite should pass.
Problem 4
Implement a word trigger class, PublishedTrigger, that fires when a news items published contains a given word. The word should be an argument to the classs constructor. This trigger should not be case-sensitive.
Once youve implemented PublishedTrigger, the PublishedTrigger unit tests in our test suite should pass.
Problem 5
Implement a word trigger class, SummaryTrigger, that fires when a news items summary contains a given word. The word should be an argument to the classs constructor. This trigger should not be case-sensitive.
Once youve implemented SummaryTrigger, the SummaryTrigger unit tests in our test suite should pass.
Composite triggers
So the triggers above are mildly interesting, but we want to do better: we want to compose the earlier triggers, to set up more powerful alert rules. For instance, we may want to raise an alert only when both google and stock are present in the news item (an idea we cant express right now).
Note that these triggers are not word triggers and should not be subclasses of WordTrigger.
Problem 6
Implement a NOT trigger (NotTrigger).
This trigger should produce its output by inverting the output of another trigger. The NOT trigger should take this other trigger as an argument to its constructor (why its constructor? Because we cant change evaluate thatd break our polymorphism). So, given a trigger T and a news item x, the output of the NOT triggers evaluate method should be equivalent to not T.evaluate(x).
When this is done, the NotTrigger unit tests should pass.
Problem 7
Implement an AND trigger (AndTrigger).
This trigger should take two triggers as arguments to its constructor, and should fire on a news story only if both of the inputted triggers would fire on that item.
When this is done, the AndTrigger unit tests should pass
Problem 8
Implement an OR trigger (OrTrigger).
This trigger should take two triggers as arguments to its constructor, and should fire if either one (or both) of its inputted triggers would fire on that item.
When this is done, the OrTrigger unit tests should pass.
Phrase triggers
At this point, you have no way of writing a trigger that matches on New York City the only triggers you know how to write would be a trigger that would fire on New AND York AND City which also fires on the phrase New students at York University love the city. Its time to fix this. Since here youre asking for an exact match, we will require that the cases match, but well be a little more flexible on word matching. So, New York City will match:
New York City sees movie premiere
In the heart of New York Citys famous cafe
New York Cityrandomtexttoproveapointhere
but will not match:
I love new york city
Problem 9
Implement a phrase trigger (PhraseTrigger) that fires when a given phrase is in the title or the summary. The phrase should be an argument to the classs constructor. You may find the Python operator in helpful, as in:
>>> print("New York City" in "In the heart of New York City's famous cafe")
True
>>> print("New York City" in "I love new york city")
False
When this is done, the PhraseTrigger unit tests should pass.
Part 3: Filtering
At this point, you can run ps5.py, and it will fetch and display Google and Yahoo news items for you in little pop-up windows. How many news items? All of them.
Right now, the code weve given you in ps5.py gets all of the feeds every minute, and displays the result. This is nice, but, remember, the goal here was to filter out only the the stories we wanted.
Problem 10
Write a function, filter_stories(stories, triggerlist) that takes in a list of news stories and a list of triggers, and returns only the stories which a trigger fires for.
After completing Problem 10, you can try running ps5.py, and various RSS news items should pop up, filtered by some hard-coded triggers defined for you in some code near the bottom. The code runs an infinite loop, checking the RSS feed for new stories every 60 seconds.
Part 4. User-Specified Triggers
Right now, your triggers are specified in your Python code, and to change them, you have to edit your program. This is very user-unfriendly. (Imagine if you had to edit the source code of your web browser every time you wanted to add a bookmark!)
Instead, we want you to read your trigger configuration from a triggers.txt file, every time your application starts, and use the triggers specified there.
Consider the following example configuration file:
# subject trigger named t1
t1 SUBJECT world
# title trigger named t2
t2 TITLE Intel
# phrase trigger named t3
t3 PHRASE New York City
# composite trigger named t4
t4 AND t2 t3
# the trigger set contains t1 and t4
ADD t1 t4
The example file specifies that four triggers should be created, and that two of those triggers should be added to the trigger set:
A trigger that fires when a subject contains the word world (t1).
A trigger that fires when the title contains the word intel and the news item contains the phrase New York City somewhere (t4).
The two other triggers (t2 and t3) are created but not added to the trigger set directly. They are used as arguments for the composite AND triggers definition.
Each line in this file does one of the following:
is blank
is a comment (begins with a #)
defines a named trigger
adds triggers to the trigger set.
Each type of line is described below.
Blank: blank lines are ignored. A line that consists only of whitespace is a blank line.
Comments: Any line that begins with a # character is ignored.
Trigger definitions: Lines that do not begin with the keyword ADD define named triggers. The first element in a trigger definition is the name of the trigger. The name can be any combination of letters without spaces, except for ADD. The second element of a trigger definition is a keyword (e.g., TITLE, PHRASE, etc.) that specifies the kind of trigger being defined. The remaining elements of the definition are the trigger arguments. What arguments are required depends on the trigger type:
TITLE: a single word.
PUBLISHED: a single word.
SUMMARY: a single word.
NOT: the name of the trigger that will be NOTd.
AND: the names of the two other triggers that will be ANDd.
OR: the names of the two other triggers that will be ORd.
PHRASE: a phrase.
Trigger addition: A trigger definition should create a trigger and associate it with a name but should not automatically add that trigger to the trigger set. One or more ADD lines in the .txt file will specify which triggers should be in the trigger set. An addition line begins with the ADD keyword. Following ADD are the names of one or more previously defined triggers. These triggers will be added to the the trigger set.
Problem 11
Finish implementing readTriggerConfig(filename). Weve written code to open the file and throw away all the lines that dont begin with instructions (e.g. comments, blank spaces). Your job is to finish the implementation. readTriggerConfig should return the list of triggers specified in the configuration file.
Once thats done, modify the code within the function main_thread to use the trigger list specified in your configuration file, instead of the one we hard-coded for you:
# TODO: Problem 11
# After implementing readTriggerConfig, uncomment this line
#triggerlist = readTriggerConfig("triggers.txt")
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started