やってみます
necessaryStuffOnly = SoupStrainer("table",{"class": "views-table"})
soup = BeautifulSoup(vegetables,parse_only=necessaryStuffOnly)
このようなテーブルで運がなければ:
<div class="view-content">
<table class="views-table sticky-enabled cols-20">
<thead>
<tr>
<td>blablaba</td>
</tr>
</thead>
<tbody>
<tr>
<td>more blablabla</td>
</tr>
</tbody>
</table>
</div>
これはdivで機能します
SoupStrainer("div",{"class": "view-content"})
複数のクラスを持つ要素でこのフィルターのようなSoupStrainerを使用することはできませんか?