Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pandruszkow/har-read
HAR archive reader in Python, free of dependencies
https://github.com/pandruszkow/har-read
Last synced: 26 days ago
JSON representation
HAR archive reader in Python, free of dependencies
- Host: GitHub
- URL: https://github.com/pandruszkow/har-read
- Owner: pandruszkow
- License: gpl-3.0
- Created: 2024-11-04T19:34:27.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-11-04T19:49:11.000Z (3 months ago)
- Last Synced: 2024-11-04T20:34:59.622Z (3 months ago)
- Language: Python
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# har-read
[HAR archive](https://en.wikipedia.org/wiki/HAR_(file_format)) reader in Python, free of dependencies## Motivation
Other solutions had too many dependencies. This only requires built-in Python 3 modules like `json`, and can be deployed as a single file.## Usage
* List files: `har-read.py [-x] .har`Note: this is simply a listing of the inner filenames. The code doesn't do anything smart like resolving a relative path with respect to any domain name or prefix.
* Extract files: `har-read.py [-x] .har`
Note: a new directory called `har_extracted` will be created in the current working directory to contain the extracted files. This behaviour is not yet adjustable.
## Future improvements
- [ ] Adjustable output directory for extraction
- [ ] Verbosity toggle to change the level of detail when listing and extracting
- [ ] Add regression tests and a pipeline## Licence
GNU GPLv3