View Single Post
Old 03-23-2009, 06:34 AM   #381
kiklop74
Guru
kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.
 
kiklop74's Avatar
 
Posts: 800
Karma: 194644
Join Date: Dec 2007
Location: Argentina
Device: Kindle Voyage
NZZ online server is quite slow. There is nothing you can do about that.

Just some notes about the recipe:

This:
Code:
    remove_tags_before = dict(id='article')
    remove_tags_after  = dict(id='article')
can be done better with just one line:

Code:
    keep_only_tags = [dict(name='div', attrs={'id':'article'})]
kiklop74 is offline