Если вы хотите получить несколько значений атрибутов из приведенного выше источника, вы можете использовать findAll и понимание списка, чтобы получить все, что вам нужно:
import urllib f = urllib.urlopen("http://58.68.130.147") s = f.read() f.close()
from BeautifulSoup import BeautifulStoneSoup soup = BeautifulStoneSoup(s)
inputTags = soup.findAll(attrs={"name" : "stainfo"}) ### You may be able to do findAll("input", attrs={"name" : "stainfo"})
output = [x["stainfo"] for x in inputTags]
print output ### This will print a list of the values.