无法从“ html.parser”

时间:2019-01-12 20:41:50

标签: python namespaces

Exception has occurred: ImportError
cannot import name 'HTMLParseError' from 'html.parser' (/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/html/parser.py)
  File "/Users/asantoshkumar/Desktop/untitled folder/<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
  File "/Users/asantoshkumar/Desktop/untitled folder/<frozen importlib._bootstrap_external>", line 728, in exec_module
  File "/Users/asantoshkumar/Desktop/untitled folder/<frozen importlib._bootstrap>", line 677, in _load_unlocked
  File "/Users/asantoshkumar/Desktop/untitled folder/<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
  File "/Users/asantoshkumar/Desktop/untitled folder/<frozen importlib._bootstrap>", line 983, in _find_and_load
  File "/Users/asantoshkumar/Desktop/untitled folder/<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
  File "/Users/asantoshkumar/Desktop/untitled folder/<frozen importlib._bootstrap>", line 1043, in _handle_fromlist

运行下面的代码行时,我遇到了以上错误。我已经按照NSEpy文档安装了所有必需的文件。请帮忙。

代码:

from nsepy import get_history
from datetime import date
sbin = get_history(symbol="SBIN", start=date(2017,1,1), end=date(2019,1,11))
#data[['Close']].plot()
print(sbin)

我已经通过pip3 install命令安装了NSEpy和所有必需的模块。我正在使用Mac。

from nsepy import get_history
from datetime import date
sbin = get_history(symbol="SBIN", start=date(2017,1,1), end=date(2019,1,11))
#data[['Close']].plot() print(sbin)

2 个答案:

答案 0 :(得分:0)

我假设这是一个兼容性错误,其中模块本身存在问题。检查模块是否已更新,以及您是否正在运行解释器和模块的最新版本。您可能需要编辑模块本身,这非常耗时。祝你好运!

答案 1 :(得分:0)

我对这个库不熟悉,但是我的猜测是您的python路径配置不正确,导致模块无法正确导入或加载。