我试图在Python 3中使用BeautifulSoup刮一页

时间:2016-12-10 07:10:30

标签: python-3.x beautifulsoup html-parsing

我正试图抓住这个页面:http://sports.williamhill.com/bet/en-gb/results///E/10337992/today//////+England+v+Ukraine.html

我正在使用Python 3中的请求和BeautifulSoup。我特意尝试提取“#(绘图)(13/5)'在标签内。我试图用很多不同的方式使用BeautifulSoup导航到那个地方,就像BS4不能看到'它... 当我搜索所有内部时,它只给我第一行。

<tbody>
    <tr>
        <th width="41%" scope="col">Market</th>
        <th width="3%"></th>
        <th width="45%" scope="col">Result</th>
        <th width="10%" scope="col" style="text-align: center">Settled</th>
    </tr>
            <tr class="rowGroup top bottom">
                <td style="padding-top: 0pt;" class="borderBottom" rowspan="1">Match Betting</td>
                <td>
                </td>
                <td>
                        Draw (13/5) &nbsp;
                </td>
                <td style="padding-top: 0pt; text-align: center" class="borderBottom" rowspan="1">Y</td>
            </tr>

如何使用BeautifulSoup最好地检索该信息?先谢谢你。

0 个答案:

没有答案