AttributeError: module 'feedparser' has no attribute 'FeedParserDict'
AttributeError: module 'feedparser' has no attribute 'FeedParserDict'
我正尝试在 Python 中 import feedparser
,并希望从库 feedparser 中调用 FeedParserDict,即 feedparser.FeedParserDict
。但它会导致以下错误:
"AttributeError: module 'feedparser' has no attribute 'FeedParserDict'."
是否意味着 "FeedParserDict" 不在库 feedparser (version 5.2.1). I find that "FeedParserDict" is present in previous version of feedparser (i.e., version 3.3) 中。我该如何处理这个错误?
我 pip install feedparser==5.2.1
并且 "FeedParserDict" 出现在其中
import feedparser
print(feedparser.__version__)
print(feedparser.FeedParserDict)
输出:
5.2.1
<class 'feedparser.FeedParserDict'>
我正尝试在 Python 中 import feedparser
,并希望从库 feedparser 中调用 FeedParserDict,即 feedparser.FeedParserDict
。但它会导致以下错误:
"AttributeError: module 'feedparser' has no attribute 'FeedParserDict'."
是否意味着 "FeedParserDict" 不在库 feedparser (version 5.2.1). I find that "FeedParserDict" is present in previous version of feedparser (i.e., version 3.3) 中。我该如何处理这个错误?
我 pip install feedparser==5.2.1
并且 "FeedParserDict" 出现在其中
import feedparser
print(feedparser.__version__)
print(feedparser.FeedParserDict)
输出:
5.2.1
<class 'feedparser.FeedParserDict'>