You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
from wiktionaryparser import WiktionaryParser
parser = WiktionaryParser()
result = parser.fetch('verity')
The traceback points to line 221, in parse_related_words.
site-packages/wiktionaryparser.py", line 221, in parse_related_words
while not parent_tag.find_all('li'):
AttributeError: 'NoneType' object has no attribute 'find_all'
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Fetching verity results in an AttributeError, yet verity is in the wiktionary at https://en.wiktionary.org/wiki/verity
Here is the code to reproduce the problem:
from wiktionaryparser import WiktionaryParser
parser = WiktionaryParser()
result = parser.fetch('verity')
The traceback points to line 221, in parse_related_words.
site-packages/wiktionaryparser.py", line 221, in parse_related_words
while not parent_tag.find_all('li'):
AttributeError: 'NoneType' object has no attribute 'find_all'
The text was updated successfully, but these errors were encountered: