How do I scrape any website for creating a feed for my website? What format do most popular sites follow?
|
feedback
|
|
You'd have to reverse-engineer each website, because they don't follow a common format or something (freedom of the web developer). What about just scraping their rss feeds? | |||||||||
feedback
|
|
I don't believe many sites scrape for content, but if you wish to, I would go with RSS (Really Simple Syndication). Almost every website will have one, and the scraping from that is easy. RSS 2.0 Specification Brian makes a nice post on a few ways to read RSS (in C#). http://msdn.microsoft.com/en-us/library/bb943474.aspx Here are some web-based tools as well to make a single feed from combining multiple others. Quoted the list here:
Hope this helps :) | |||||||
feedback
|