本文介绍了错误“没有名为‘__builtin__’的模块";导入warc时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在python 3中使用warc
包?
How to use warc
package in python 3 ?
我安装了 warc
没有问题.但是当我调用 import warc
时出现错误:
I installed warc
with no problem. But when I call import warc
I am getting the error:
发生异常:ModuleNotFoundError No module named'内置'
推荐答案
__builin__ 模块是 Python 2 的名称.如果你想要一个可以读取 warcs 的与 python3 兼容的包,我建议你使用 'warcio'.
The module __builin__ is a python 2 name. If you want a python3-compatible package that reads warcs, I suggest 'warcio'.
这篇关于错误“没有名为‘__builtin__’的模块";导入warc时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!