1

私は mitmproxy を使用しており、このスクリプト har_extractor.py ( https://raw.githubusercontent.com/mitmproxy/mitmproxy/master/examples/har_extractor.py )を使用してフローを .har 形式に変換したいと考えています。

この依存関係https://github.com/JustusW/harparserから HAR 名をインポートできません。Python 2.7 の Mac OS で実行しているため、グローバルにインストールしたくありません。

この行は機能しません: from harparser import HAR トレースバック エラーが発生します: ImportError: cannot import name HAR

ただし、harparserをインポートできます

4

1 に答える 1

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/

于 2015-07-27T20:57:36.357 に答える