我需要从maven存储库页面中提取许可证信息超链接(最终目标是查找与每个maven依赖关联的版权信息)。以下是html的相关部分。
我希望在
<div class="version-section">
<h2>Licenses</h2>
<table class="grid" width="100%">
<thead>
<tr>
<th style="width: 16em;">License</th>
<th>URL</th>
</tr>
</thead>
<tbody>
<tr>
<td>The Apache Software License, Version 2.0</td>
<td>
<a href="http://www.apache.org/licenses/LICENSE-2.0.txt" rel="nofollow">http://www.apache.org/licenses/LICENSE-2.0.txt</a>
</td>
</tr>
</tbody>
</table>
</div>