0

BeautifulSoup4 を使用する GUI アプリケーションを作成しました。最終的に開くように試行錯誤した後、アプリケーションは機能せず、ログを確認するように言って閉じると情報ボックスがスローされます。これはログが言うことです:

Traceback (most recent call last):
  File "main.py", line 16, in newessay
  File "essay.pyc", line 10, in __init__
  File "essay.pyc", line 36, in buildDocument
  File "bs4\element.pyc", line 935, in __getattr__
  File "bs4\element.pyc", line 1146, in find
  File "bs4\element.pyc", line 1167, in find_all
  File "bs4\element.pyc", line 495, in _find_all
  File "bs4\element.pyc", line 1185, in descendants
AttributeError: 'NoneType' object has no attribute 'next_element'

これがなぜなのか分かりますか?.egg を解凍したので、BeautifulSoup4 がライブラリに含まれています。それが原因でしょうか?

4

1 に答える 1

0

BeautifulSoap4 ランチパッドで説明されている html5lib のバグであると思われます。

html5lib ツリー ビルダーが next_element のないタグを作成することがある

于 2013-10-08T15:16:06.180 に答える