How to get first child table row from a table in BeautifulSoup ( Python )

PankajKushwaha

Here is the Code and sample results , I just want the first column of the table ignoring the rest. There are similar question on Stackoverflow but they did not help.

<tr>
<td>JOHNSON</td>
<td> 2,014,470 </td>
<td>0.81</td>
<td>2</td>
</tr>

I want JOHNSON only, as it is the first child. My python code is :

import requests
  from bs4 import BeautifulSoup
 def find_raw():
      url = 'http://names.mongabay.com/most_common_surnames.htm'
      r = requests.get(url)
      html = r.content
      soup = BeautifulSoup(html)
      for n in soup.find_all('tr'):
          print n.text
  
  find_raw()

What I get:

SMITH 2,501,922 1.0061
JOHNSON 2,014,470 0.812
enrico.bacis

You can find all the tr tags with find_all, then for each tr you find (gives only the first) td. If it exists, you print it:

for tr in soup.find_all('tr'):
    td = tr.find('td')
    if td:
        print td

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Python/Beautifulsoup - Missing first row of table

From Dev

How can I get the first and third td from a table with BeautifulSoup?

From Dev

How to get first row from each group from a table in sqlitedatabase?

From Dev

How to get first value of row in table on click?

From Dev

How to get first row of a selected table

From Dev

how delete parent row with all child row from other table

From Dev

How to select a specific row from a table using BeautifulSoup?

From Dev

How to get related row from same table?

From Dev

How to get last inserted row from a table?

From Dev

How to get a row from a Table with no ids

From Dev

How to get length of row from a rowsorted table?

From Dev

How to get text from the first column in a table?

From Dev

get a row from a table and having it at first position of a query

From Dev

How select row from html table and get the value of the first cell and put it on PHP Session

From Dev

how to select first row in table

From Dev

How to get the Excel header on each print page to be the first row of the table

From Dev

How to get first column value of invoked row in table?

From Dev

How to get value from table's td in BeautifulSoup?

From Dev

How to get data from big table row by row

From Dev

"On Delete Cascade" if deleting a row from the child table

From Dev

Get randomically or row from a table

From Dev

Get first cell value of each row in table

From Dev

How to get info from a child table using PDO in PHP with SQL?

From Dev

How to get data from MYSQL child table using checkbox selection?

From Dev

how to get the sum of a child column from another table

From Dev

Searching BeautifulSoup after text, need to get all data from table row

From Dev

Matlab add selected row data from child table to parent table

From Dev

Oracle :Matching row from first and second table

From Dev

Selecting a table row with a particular class using first-child

Related Related

  1. 1

    Python/Beautifulsoup - Missing first row of table

  2. 2

    How can I get the first and third td from a table with BeautifulSoup?

  3. 3

    How to get first row from each group from a table in sqlitedatabase?

  4. 4

    How to get first value of row in table on click?

  5. 5

    How to get first row of a selected table

  6. 6

    how delete parent row with all child row from other table

  7. 7

    How to select a specific row from a table using BeautifulSoup?

  8. 8

    How to get related row from same table?

  9. 9

    How to get last inserted row from a table?

  10. 10

    How to get a row from a Table with no ids

  11. 11

    How to get length of row from a rowsorted table?

  12. 12

    How to get text from the first column in a table?

  13. 13

    get a row from a table and having it at first position of a query

  14. 14

    How select row from html table and get the value of the first cell and put it on PHP Session

  15. 15

    how to select first row in table

  16. 16

    How to get the Excel header on each print page to be the first row of the table

  17. 17

    How to get first column value of invoked row in table?

  18. 18

    How to get value from table's td in BeautifulSoup?

  19. 19

    How to get data from big table row by row

  20. 20

    "On Delete Cascade" if deleting a row from the child table

  21. 21

    Get randomically or row from a table

  22. 22

    Get first cell value of each row in table

  23. 23

    How to get info from a child table using PDO in PHP with SQL?

  24. 24

    How to get data from MYSQL child table using checkbox selection?

  25. 25

    how to get the sum of a child column from another table

  26. 26

    Searching BeautifulSoup after text, need to get all data from table row

  27. 27

    Matlab add selected row data from child table to parent table

  28. 28

    Oracle :Matching row from first and second table

  29. 29

    Selecting a table row with a particular class using first-child

HotTag

Archive