Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 236221
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T20:19:39+00:00 2026-05-11T20:19:39+00:00

So I am learning Python slowly, and am trying to make a simple function

  • 0

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.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T20:19:40+00:00Added an answer on May 11, 2026 at 8:19 pm

    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 😉

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 120k
  • Answers 120k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Well for one thing, you're mostly ignoring the value returned… May 12, 2026 at 12:04 am
  • Editorial Team
    Editorial Team added an answer SHOW CREATE TABLE mytable It will show DELAY_KEY_WRITE = 1… May 12, 2026 at 12:04 am
  • Editorial Team
    Editorial Team added an answer Use Enumerable.AsEnumerable: var result = db.rows .Take(30) .AsEnumerable() .Select(a =>… May 12, 2026 at 12:04 am

Related Questions

I am learning Python and trying to figure out an efficient way to tokenize
I am just started out learning Python and also started looking into Django a
I have been trying to strip out some data from HTML files. I have
I'm a newbie to programming. I had 1 semester of computer science (we used

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.