Linux シェル環境で 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>
</table>
そして、シェル変数に保存するか、上記のhtmlから抽出されたキーと値のペアでこれらをエコーします。例 :
Tests : 103
Failures : 24
Success Rate : 76.70 %
and so on..
現時点で私ができることは、sax パーサーまたは jsoup などの html パーサーを使用してこの情報を抽出する Java プログラムを作成することです。
ただし、ここで Java を使用すると、実行したい「ラッパー」スクリプト内に実行可能な jar を含めることでオーバーヘッドが発生するようです。
同じことができる「シェル」言語、つまりperl、python、bashなどがあるはずです。
私の問題は、これらの経験がまったくないことです。誰かがこの「かなり簡単な」問題を解決するのを手伝ってくれますか
クイックアップデート:
.html ドキュメントのテーブルと行が増えたことを忘れていました。申し訳ありません (早朝)。
更新 #2:
root アクセス権がないため、このように Bsoup をインストールしようとしました:
$ wget http://www.crummy.com/software/BeautifulSoup/bs4/download/4.0/beautifulsoup4-4.1.0.tar.gz
$ tar -zxvf beautifulsoup4-4.1.0.tar.gz
$ cp -r beautifulsoup4-4.1.0/bs4 .
$ vi htmlParse.py # (paste code from ) Tichodromas' answer, just in case this (http://pastebin.com/4Je11Y9q) is what I pasted
$ run file (python htmlParse.py)
エラー:
$ python htmlParse.py
Traceback (most recent call last):
File "htmlParse.py", line 1, in ?
from bs4 import BeautifulSoup
File "/home/gdd/setup/py/bs4/__init__.py", line 29
from .builder import builder_registry
^
SyntaxError: invalid syntax
更新 #3:
Tichodromas の回答を実行すると、次のエラーが発生します。
Traceback (most recent call last):
File "test.py", line 27, in ?
headings = [th.get_text() for th in table.find("tr").find_all("th")]
TypeError: 'NoneType' object is not callable
何か案は?