{"id":22687296,"url":"https://github.com/dead-beef/har-extractor","last_synced_at":"2025-10-15T01:28:33.566Z","repository":{"id":57436770,"uuid":"91099113","full_name":"dead-beef/har-extractor","owner":"dead-beef","description":"HTTP Archive extractor","archived":false,"fork":false,"pushed_at":"2023-03-15T01:39:23.000Z","size":28,"stargazers_count":22,"open_issues_count":0,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-13T16:31:16.088Z","etag":null,"topics":["archive-parser","http-archive","python-script","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dead-beef.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-05-12T14:22:50.000Z","updated_at":"2025-06-08T21:00:05.000Z","dependencies_parsed_at":"2025-04-12T20:42:59.139Z","dependency_job_id":"82c42cdc-b0d4-4b89-8e8d-fc3f9d440fb2","html_url":"https://github.com/dead-beef/har-extractor","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/dead-beef/har-extractor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dead-beef%2Fhar-extractor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dead-beef%2Fhar-extractor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dead-beef%2Fhar-extractor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dead-beef%2Fhar-extractor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dead-beef","download_url":"https://codeload.github.com/dead-beef/har-extractor/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dead-beef%2Fhar-extractor/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266645150,"owners_count":23961658,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-23T02:00:09.312Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["archive-parser","http-archive","python-script","python3"],"created_at":"2024-12-09T23:17:51.959Z","updated_at":"2025-10-15T01:28:33.480Z","avatar_url":"https://github.com/dead-beef.png","language":"Python","readme":"har-extractor\n=============\n\n.. image:: https://img.shields.io/pypi/v/har-extractor.svg\n   :target: https://pypi.python.org/pypi/har-extractor\n.. image:: https://img.shields.io/pypi/status/har-extractor.svg\n   :target: https://pypi.python.org/pypi/har-extractor\n.. image:: https://img.shields.io/pypi/format/har-extractor.svg\n   :target: https://pypi.python.org/pypi/har-extractor\n.. image:: https://img.shields.io/librariesio/github/dead-beef/har-extractor.svg\n   :target: https://libraries.io/pypi/har-extractor\n.. image:: https://img.shields.io/pypi/pyversions/har-extractor.svg\n   :target: https://python.org\n.. image:: https://img.shields.io/pypi/l/har-extractor.svg\n   :target: https://github.com/dead-beef/har-extractor/blob/master/LICENSE\n\nOverview\n--------\n\nExtractor for\n`HAR \u003chttps://dvcs.w3.org/hg/webperf/raw-file/tip/specs/HAR/Overview.html\u003e`__,\nHTTP Archive format.\n\nRequirements\n------------\n\n-  `Python 3 \u003chttps://www.python.org/\u003e`__\n\nOptional\n~~~~~~~~\n\n-  `YAJL 2 \u003chttps://lloyd.github.io/yajl/\u003e`__\n-  `CFFI \u003chttps://pypi.python.org/pypi/cffi\u003e`__\n\nInstallation\n------------\n\n.. code:: bash\n\n    pip install har-extractor\n\nUsage\n-----\n\n::\n\n    usage: har-extractor [-h] [-V] [-l] [-o DIRECTORY] [-v] [-nv] [-i] [-ni]\n                         [-s] [-ns] [-d] [-nd]\n                         FILE\n\n    positional arguments:\n      FILE                  HAR file\n\n    optional arguments:\n      -h, --help            show this help message and exit\n      -V, --version         show program's version number and exit\n      -l, --list            list the contents of input file\n      -o DIRECTORY, --output DIRECTORY\n                            set output directory (default: ./\u003cfilename\u003e.d)\n      -v, --verbose         turn on verbose output (default)\n      -nv, --no-verbose     turn off verbose output\n      -i, --iterative       use iterative json parser\n      -ni, --no-iterative   do not use iterative json parser (default)\n      -s, --strict          exit and delete extracted data after first error\n      -ns, --no-strict      ignore errors (default)\n      -d, --directories     create url directories (default)\n      -nd, --no-directories\n                            do not create url directories\n\nDevelopment\n-----------\n\nInstallation\n~~~~~~~~~~~~\n\n.. code:: bash\n\n    git clone https://github.com/dead-beef/har-extractor\n    cd har-extractor\n    pip install -e .[dev]\n\nBuilding\n~~~~~~~~\n\n.. code:: bash\n\n    ./build.sh\n\nTesting\n~~~~~~~\n\n.. code:: bash\n\n    ./test\n\nLicenses\n--------\n\n-  `har-extractor \u003chttps://github.com/dead-beef/har-extractor/blob/master/LICENSE\u003e`__\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdead-beef%2Fhar-extractor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdead-beef%2Fhar-extractor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdead-beef%2Fhar-extractor/lists"}