Basic Web Scraping example with Python and Beautiful Soup.
Searches for a product in FNAC.pt, saving the names and prices on a .csv file or presenting them directly on stdin.
Install Beautiful Soup:
$ pip install bs4
Run:
$ python search_fnac.py
Basic Web Scraping example with Python and Beautiful Soup
Python