Metadata-Version: 2.1
Name: har2tree
Version: 1.3.2
Summary: HTTP Archive (HAR) to ETE Toolkit generator
Home-page: https://github.com/Lookyloo/har2tree
License: BSD-3-Clause
Author: Raphaël Vinot
Author-email: raphael.vinot@circl.lu
Requires-Python: >=3.7,<4.0
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Telecommunications Industry
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet
Classifier: Topic :: Security
Requires-Dist: beautifulsoup4 (>=4.9.3,<5.0.0)
Requires-Dist: ete3 (>=3.1.2,<4.0.0)
Requires-Dist: filetype (>=1.0.7,<2.0.0)
Requires-Dist: lxml (>=4.6.2,<5.0.0)
Requires-Dist: numpy (>=1.19.4,<2.0.0)
Requires-Dist: publicsuffix2 (>=2.20191221,<3.0)
Requires-Dist: six (>=1.15.0,<2.0.0)
Requires-Dist: w3lib (>=1.22.0,<2.0.0)
Project-URL: Repository, https://github.com/Lookyloo/har2tree
Description-Content-Type: text/markdown

[![Build Status](https://travis-ci.org/Lookyloo/har2tree.svg?branch=master)](https://travis-ci.org/Lookyloo/har2tree)
[![codecov](https://codecov.io/gh/Lookyloo/har2tree/branch/master/graph/badge.svg)](https://codecov.io/gh/Lookyloo/har2tree)

Har2Tree
========


This package generate a tree out of a HAR dump.


Installation
============

The core dependency is ETE Toolkit, which you can install following the guide
on the official website: http://etetoolkit.org/download/

Note: if you don't want to export the tree to an image using PyQt4, no need to do the
virtualenv magic.

Protip
======

If you like using virtualenv and have `pew` installed you can also do it this way:

```
sudo apt-get install python-qt4
pip install -r requirements.txt
pew toggleglobalsitepackages  # PyQt4 is not easily installable in a virtualenv
pip install -e .
```

