Bob Gailer wrote:
At 06:20 AM 3/5/2005, Alan Gauld wrote:
> > I'm trying to use Beautiful Soup to scrape some data out of an
HTML
> > table. I can do this using
A new one on me, but Beautiful Soup looks very interesting. I've just
downloaded it.
From where? My Google search does not help.
Actua
At 06:20 AM 3/5/2005, Alan Gauld wrote:
> > I'm trying to use
Beautiful Soup to scrape some data out of an
HTML
> > table. I can do this using
A new one on me, but Beautiful Soup looks very interesting. I've
just
downloaded it.
From where? My Google search does not help.
Thanks for pointing it
> > I'm trying to use Beautiful Soup to scrape some data out of an
HTML
> > table. I can do this using
A new one on me, but Beautiful Soup looks very interesting. I've just
downloaded it. Thanks for pointing it out.
Alan G.
___
Tutor maillist - Tuto
Bill Kranec wrote:
Hi,
I'm trying to use Beautiful Soup to scrape some data out of an HTML
table. I can do this using
table = soup("td", {'class' : 'yfnc_tabledata1' })
table[0].string.strip()
OK, table is a list of Tags, the first one has a 'string' attribute.
However, if I try
for entry in tab
Hi,
I'm trying to use Beautiful Soup to scrape some data out of an HTML
table. I can do this using
table = soup("td", {'class' : 'yfnc_tabledata1' })
table[0].string.strip()
However, if I try
for entry in table:
entry.string.strip()
I get: AttributeError: Tag instance has no attribute 'string