this works...
print soup.findAll('td',{ "class" : "green center" })
but I only need the text and this wont work...
print soup.findAll('td',{ "class" : "green center" }).text
here is how im using it.
#!python27
import fileinput
import sys
import BeautifulSoup
from BeautifulSoup import BeautifulSoup
import re, urllib
filename = "url.txt"
LineNumber=0
f=open(filename)
lines=f.readlines()
f.close()
for line in lines:
filehandle = urllib.urlopen("http://kat.ph/usearch/"+lines[LineNumber]+"/")
line = filehandle.read()
soup = BeautifulSoup(line)
print soup.findAll('td',{ "class" : "green center" }).text
print soup.findAll('td',{ "class" : "red lasttd center" }).text
print LineNumber
LineNumber=LineNumber+1
filehandle.close()
Post script url.txt is just a list of searches to be ran.
ResultSethas no attributetext) That should have given you a clue =) – katrielalex Nov 19 '12 at 8:52