Metadata-Version: 2.1
Name: har_toolkit
Version: 0.3.0
Summary: A module to work with HAR (HTTP Archive) files.
Author-email: Mason Weaver <mason@swingproxy.com>
License: GNU General Public License v3 (GPLv3)
Project-URL: Homepage, https://github.com/Otach/Har-Toolkit.git
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Har-Toolkit

A module to easily work with HAR (HTTP Archive) files.

## Installation
```
pip install --upgrade har-toolkit
```

## Usage
To use this module in your code:
```
import har_toolkit
```

To read and parse a HAR file:
```
import har_toolkit
har = har_toolkit.read_har_file("<path/to/har_file>")
```
This will return a Har object with the contents of the file parsed according to [this W3C document](https://w3c.github.io/web-performance/specs/HAR/Overview.html)

The different sections of the format can be accessed by calling that section attribute on the parent class. Example: `har.browser` or `har.entries`

