本文主要是介绍coursera-dl 报错 AttributeError (‘HTMLParser’ object has no attribute ‘unescape’),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
参考:https://www.organizingcreativity.com/2021/01/downloading-coursera-materials/
1.找到utils.py位置
*/site-packages/coursera/utils.py
2.注释掉from six.moves import html_parser
如:# from six.moves import html_parser
3.在注释掉的下方添加
import sys
if sys.version_info[0] >= 3:import html
else:from six.moves import html_parserhtml
这篇关于coursera-dl 报错 AttributeError (‘HTMLParser’ object has no attribute ‘unescape’)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!