Popular recipes tagged "websites"http://code.activestate.com/recipes/tags/websites/2010-10-10T19:33:20-07:00ActiveState Code RecipesRobot Pager (Search engines and others) (Python)
2010-10-10T19:33:20-07:00Carlos del Ojohttp://code.activestate.com/recipes/users/4173977/http://code.activestate.com/recipes/577420-robot-pager-search-engines-and-others/
<p style="color: grey">
Python
recipe 577420
by <a href="/recipes/users/4173977/">Carlos del Ojo</a>
(<a href="/recipes/tags/automate/">automate</a>, <a href="/recipes/tags/engine/">engine</a>, <a href="/recipes/tags/paging/">paging</a>, <a href="/recipes/tags/robot/">robot</a>, <a href="/recipes/tags/search/">search</a>, <a href="/recipes/tags/websites/">websites</a>).
Revision 3.
</p>
<p>This is a class to make easy the development of robots, to parse results over a website with a paging. For example Google, Yahoo, Bing, or any other page with paging system.</p>
<p>PagerEngine is the main class. I've developed three more clases implementing GoogleSearch, YahooSearch and BingSearch as examples.</p>
<p>Inheriting from PagerEngine (and having RexExp knowledge) you can easily develop other robots for other websites.</p>
Downloading website's favicon (Python)
2010-03-15T13:40:29-07:00Łukasz Fidoszhttp://code.activestate.com/recipes/users/4173347/http://code.activestate.com/recipes/577114-downloading-websites-favicon/
<p style="color: grey">
Python
recipe 577114
by <a href="/recipes/users/4173347/">Łukasz Fidosz</a>
(<a href="/recipes/tags/favicon/">favicon</a>, <a href="/recipes/tags/urllib2/">urllib2</a>, <a href="/recipes/tags/websites/">websites</a>).
</p>
<p>Downloading favicon of the website and save it to file, if website doesn't have favicon using default one.</p>