2021-12-21 12:14:20 -08:00
|
|
|
[Home](https://kellyjonbrazil.github.io/jc/)
|
|
|
|
|
|
|
|
# jc.parsers.zipinfo
|
|
|
|
jc - JSON CLI output utility `zipinfo` command output parser
|
|
|
|
|
|
|
|
Options supported:
|
|
|
|
- none
|
|
|
|
|
|
|
|
Note: The default listing format.
|
|
|
|
|
|
|
|
Usage (cli):
|
|
|
|
|
|
|
|
$ zipinfo <archive> | jc --zipinfo
|
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
$ jc zipinfo
|
|
|
|
|
|
|
|
Usage (module):
|
|
|
|
|
|
|
|
import jc.parsers.zipinfo
|
|
|
|
result = jc.parsers.zipinfo.parse(zipinfo_command_output)
|
|
|
|
|
|
|
|
Schema:
|
2021-12-21 13:42:24 -08:00
|
|
|
|
2021-12-21 12:14:20 -08:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"archive": string,
|
|
|
|
"size": integer,
|
|
|
|
"size_unit": string,
|
|
|
|
"number_entries": integer,
|
|
|
|
"number_files": integer,
|
|
|
|
"bytes_uncompressed": integer,
|
|
|
|
"bytes_compressed": integer,
|
|
|
|
"percent_compressed": float,
|
|
|
|
"files": [
|
|
|
|
{
|
|
|
|
"flags": string,
|
|
|
|
"zipversion": string,
|
|
|
|
"zipunder": string
|
|
|
|
"filesize": integer,
|
|
|
|
"type": string,
|
|
|
|
"method": string,
|
|
|
|
"date": string,
|
|
|
|
"time": string,
|
|
|
|
"filename": string
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ zipinfo log4j-core-2.16.0.jar | jc --zipinfo -p
|
|
|
|
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"archive": "log4j-core-2.16.0.jar",
|
|
|
|
"size": 1789565,
|
|
|
|
"size_unit": "bytes",
|
|
|
|
"number_entries": 1218,
|
|
|
|
"number_files": 1218,
|
|
|
|
"bytes_uncompressed": 3974141,
|
|
|
|
"bytes_compressed": 1515455,
|
|
|
|
"percent_compressed": 61.9,
|
|
|
|
"files": [
|
|
|
|
{
|
|
|
|
"flags": "-rw-r--r--",
|
|
|
|
"zipversion": "2.0",
|
|
|
|
"zipunder": "unx",
|
|
|
|
"filesize": 19810,
|
|
|
|
"type": "bl",
|
|
|
|
"method": "defN",
|
|
|
|
"date": "21-Dec-12",
|
|
|
|
"time": "23:35",
|
|
|
|
"filename": "META-INF/MANIFEST.MF"
|
|
|
|
},
|
|
|
|
...
|
|
|
|
|
|
|
|
|
|
|
|
## info
|
|
|
|
```python
|
|
|
|
info()
|
|
|
|
```
|
|
|
|
Provides parser metadata (version, author, etc.)
|
|
|
|
|
|
|
|
## parse
|
|
|
|
```python
|
|
|
|
parse(data, raw=False, quiet=False)
|
|
|
|
```
|
|
|
|
|
|
|
|
Main text parsing function
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
data: (string) text data to parse
|
|
|
|
raw: (boolean) output preprocessed JSON if True
|
|
|
|
quiet: (boolean) suppress warning messages if True
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
|
|
List of Dictionaries. Raw or processed structured data.
|
|
|
|
|
|
|
|
## Parser Information
|
|
|
|
Compatibility: linux, darwin
|
|
|
|
|
|
|
|
Version 0.01 by Matt J (https://github.com/listuser)
|