vote up 0 vote down star

So I am learning Python slowly, and am trying to make a simple function that will draw data from the high scores page of an online game. This is someone else's code that i rewrote into one function (which might be the problem), but I am getting this error. Here is the code:

>>> from urllib2 import urlopen
>>> from BeautifulSoup import BeautifulSoup
>>> def create(el):
    source = urlopen(el).read()
    soup = BeautifulSoup(source)
    get_table = soup.find('table', {'id':'mini_player'})
    get_rows = get_table.findAll('tr')
    text = ''.join(get_rows.findAll(text=True))
    data = text.strip()
    return data

>>> create('http://hiscore.runescape.com/hiscorepersonal.ws?user1=bigdrizzle13')

Traceback (most recent call last):
  File "<pyshell#18>", line 1, in <module>
    create('http://hiscore.runescape.com/hiscorepersonal.ws?user1=bigdrizzle13')
  File "<pyshell#17>", line 6, in create
    text = ''.join(get_rows.findAll(text=True))
AttributeError: 'ResultSet' object has no attribute 'findAll'

Thanks in advance.

flag

For what it's worth: naming your variables "first", "second", etc. is terrible style. You really should be more descriptive - the specific names are up to you, of course, but I might use "urlcontent", "parser", "mp_tables", and so on. – David Jun 14 at 5:09
Its my third day with Python. I need to do that to keep it straight in my head. That will get better as time goes on... – Alex Jun 14 at 5:12
I changed variable names. Hope thats better. – Alex Jun 14 at 5:16

1 Answer

vote up 3 vote down check

Wow. Triptych provided a great answer to a related question.

We can see, from BeautifulSoup's source code, that ResultSet subclasses list.

In your example, get_rows is an instance of BS's ResultSet class,
and since BS's ResultSet subclasses list, that means get_rows is a list.

get_rows, as an instance of ResultSet, does not have a findAll method implemented; hence your error.
What Triptych has done differently is to iterate over that list.
Triptych's method works because the items in the get_rows list are instances of BS's Tag class; which has a findAll method.

So, to fix your code, you could replace the last three lines of your create method with something like this:

for row in get_rows:
    text = ''.join(row.findAll(text=True))
    data = text.strip()
    print data

Note to Leonard Richardson: in no way do I intend to demean the quality of your work by referring to it as BS ;-)

link|flag
Thanks for the shout out :) – Triptych Jun 14 at 10:23
Don't mention it: Great work deserves recognition! – Adam Bernier Jun 14 at 20:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.