Vladimir Rusinov <[EMAIL PROTECTED]> wrote: > 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 from BeautifulSoup import BeautifulSoup as BSoup > > ... > > soup = BSoup(page) > for div in soup.findAll('div', class='g'): for div in soup.findAll('div', attrs={'class':'g'}): > <do something> > > But how can I use `class` as kwarg name?
You can't. But you can use the attrs argument (see above). HTH Marc -- http://mail.python.org/mailman/listinfo/python-list