mitmproxy - har_extractor.py无法从harparser导入HAR

时间:2015-06-12 18:08:18

标签: python mitmproxy

我正在使用mitmproxy,我想使用此脚本将我的流转换为.har格式har_extractor.py(https://raw.githubusercontent.com/mitmproxy/mitmproxy/master/examples/har_extractor.py

我无法从此依赖关系https://github.com/JustusW/harparser导入HAR名称,我不想全局安装它,因为我在Python 2.7上运行Mac OS。

这条线永远不会起作用:来自harparser import HAR 我收到了一个追溯错误: ImportError:无法导入名称HAR

但我可以 - 导入harparser

1 个答案:

答案 0 :(得分:0)

Harparser于6月23日更新[1]。这解决了这个问题吗?

它确实包含HAR功能:

class _HAR(MutableMapping, object):
    """
    HAR implementation as per specification version 1.2 ()
    This class maps the specification contained in __map__ to dynamic subclasses stored in __classes__.
    It then exposes all of this by implementing MutableMapping, the generated subclasses being its keys.
    """ 

[1] https://pypi.python.org/pypi/harparser/