Extracting data from HTML table
A Python solution using BeautifulSoup4 (Edit: with proper skipping. Edit3: Using class=”details” to select the table): from bs4 import BeautifulSoup html = “”” <table class=”details” border=”0″ cellpadding=”5″ cellspacing=”2″ width=”95%”> <tr valign=”top”> <th>Tests</th> <th>Failures</th> <th>Success Rate</th> <th>Average Time</th> <th>Min Time</th> <th>Max Time</th> </tr> <tr valign=”top” class=”Failure”> <td>103</td> <td>24</td> <td>76.70%</td> <td>71 ms</td> <td>0 ms</td> <td>829 ms</td> </tr> … Read more