I'm a creating a type of news aggregator and I would like to create a program(Python) that correctly detects the headline and displays it. How would I go about doing this? Is this a machine learning problem?
I would appreciate any articles or books that would point me in the right direction.
My past attempts have included BeautifulSoup and Requests module. Any other open source models I should check out?
Thank you, Fernando
<h1>,<h2>,<h3>, etc. tags. Once you scrape all of those headlines, you could try using machine learning to further narrow down the potential headlines, even possibly categorize them with assisted learning by having users validate the choices. – Blender Sep 17 '12 at 21:05