我正在尝试使用can.BLFReader模块导入blf文件。
buf python显示'AttributeError‘。
这就是代码。
import can
filename = "test.blf"
can_log = can.BLFReader(filename)
for msg in logging:
print(msg)
AttributeError:模块“can”没有属性“”BLFReader“”
并且文件名不是'can‘
原因何在?
发布于 2020-11-02 10:41:00
这似乎是一个问题的python3版本,如果你运行你可以看到在附件中的图像
对于python,它将会工作。
https://stackoverflow.com/questions/64638787
复制相似问题