Hello!

I'm using beautiful soup html parser, and I need to get all '<div
class=g>...</div>' tags.
It can be done by:

import BeautifulSoup as BSoup

...

soup = BSoup(page)
for div in soup.findAll('div', class='g'):
    <do something>

But how can I use `class` as kwarg name?

-- 
Vladimir Rusinov
GreenMice Solutions: IT-решения на базе Linux
http://greenmice.info/
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to