[EMAIL PROTECTED] wrote:
> Thanks Kent that works perfectly.. How can I strip all the HTML and
> create easily a dictionary of {location:price}  ??

This should help:

prices = priceGuide.table

for tr in prices:
     print tr.a.string, tr.a.findNext('font').string

Kent
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to