mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-10-08 23:22:21 +02:00
remove info class from docs
This commit is contained in:
13
docgen.sh
13
docgen.sh
@@ -2,18 +2,21 @@
|
||||
# Generate docs.md
|
||||
# requires pydoc-markdown 2.1.0.post1
|
||||
|
||||
# old config
|
||||
# '{"processors":[{"type":"filter"},{"type":"pydocmd"}]}'
|
||||
|
||||
cd jc
|
||||
echo Building docs for: package
|
||||
pydoc-markdown -m jc '{"processors": [{"type":"filter"},{"type":"pydocmd"}]}' > ../docs/readme.md
|
||||
pydoc-markdown -m jc '{"processors":[{"type":"filter","expression":"not name ==\"info\" and default()"},{"type":"pydocmd"}]}' > ../docs/readme.md
|
||||
|
||||
echo Building docs for: lib
|
||||
pydoc-markdown -m jc.lib '{"processors": [{"type":"filter"},{"type":"pydocmd"}]}' > ../docs/lib.md
|
||||
pydoc-markdown -m jc.lib '{"processors":[{"type":"filter","expression":"not name ==\"info\" and default()"},{"type":"pydocmd"}]}' > ../docs/lib.md
|
||||
|
||||
echo Building docs for: utils
|
||||
pydoc-markdown -m jc.utils '{"processors": [{"type":"filter"},{"type":"pydocmd"}]}' > ../docs/utils.md
|
||||
pydoc-markdown -m jc.utils '{"processors":[{"type":"filter","expression":"not name ==\"info\" and default()"},{"type":"pydocmd"}]}' > ../docs/utils.md
|
||||
|
||||
echo Building docs for: universal parser
|
||||
pydoc-markdown -m jc.parsers.universal '{"processors": [{"type":"filter"},{"type":"pydocmd"}]}' > ../docs/parsers/universal.md
|
||||
pydoc-markdown -m jc.parsers.universal '{"processors":[{"type":"filter","expression":"not name ==\"info\" and default()"},{"type":"pydocmd"}]}' > ../docs/parsers/universal.md
|
||||
|
||||
# a bit of inception here... jc is being used to help
|
||||
# automate the generation of its own documentation. :)
|
||||
@@ -36,7 +39,7 @@ do
|
||||
|
||||
echo "Building docs for: ${parser_name}"
|
||||
echo "[Home](https://kellyjonbrazil.github.io/jc/)" > ../docs/parsers/"${parser_name}".md
|
||||
pydoc-markdown -m jc.parsers."${parser_name}" '{"processors": [{"type":"filter"},{"type":"pydocmd"}]}' >> ../docs/parsers/"${parser_name}".md
|
||||
pydoc-markdown -m jc.parsers."${parser_name}" '{"processors":[{"type":"filter","expression":"not name ==\"info\" and default()"},{"type":"pydocmd"}]}' >> ../docs/parsers/"${parser_name}".md
|
||||
echo "## Parser Information" >> ../docs/parsers/"${parser_name}".md
|
||||
echo "Compatibility: ${compatible}" >> ../docs/parsers/"${parser_name}".md
|
||||
echo >> ../docs/parsers/"${parser_name}".md
|
||||
|
@@ -232,16 +232,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.acpi.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.acpi.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -85,16 +85,6 @@ Examples:
|
||||
"channel": "48,80"
|
||||
}
|
||||
|
||||
<a id="jc.parsers.airport.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.airport.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -113,16 +113,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.airport_s.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.airport_s.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -122,16 +122,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.arp.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.arp.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -125,16 +125,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.blkid.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.blkid.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -59,16 +59,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.cksum.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.cksum.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -178,16 +178,6 @@ Examples:
|
||||
]
|
||||
}
|
||||
|
||||
<a id="jc.parsers.crontab.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.crontab.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -175,16 +175,6 @@ Examples:
|
||||
]
|
||||
}
|
||||
|
||||
<a id="jc.parsers.crontab_u.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.crontab_u.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -82,16 +82,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.csv.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.csv.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -68,16 +68,6 @@ Examples:
|
||||
{"Sell":"129","List":"132","Living":"13","Rooms":"6","Beds":"3"...}
|
||||
...
|
||||
|
||||
<a id="jc.parsers.csv_s.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.csv_s.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -82,16 +82,6 @@ Examples:
|
||||
"timezone_aware": true
|
||||
}
|
||||
|
||||
<a id="jc.parsers.date.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.date.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -102,16 +102,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.df.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.df.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -327,16 +327,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.dig.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.dig.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -125,16 +125,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.dir.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.dir.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -130,16 +130,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.dmidecode.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.dmidecode.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -136,16 +136,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.dpkg_l.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.dpkg_l.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -92,16 +92,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.du.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.du.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -77,16 +77,6 @@ Examples:
|
||||
"_": "/usr/bin/env"
|
||||
}
|
||||
|
||||
<a id="jc.parsers.env.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.env.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -67,16 +67,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.file.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.file.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -95,16 +95,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.finger.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.finger.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -77,16 +77,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.free.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.free.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -90,16 +90,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.fstab.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.fstab.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -114,16 +114,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.group.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.group.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -82,16 +82,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.gshadow.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.gshadow.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -42,16 +42,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.hash.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.hash.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -73,16 +73,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.hashsum.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.hashsum.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -322,16 +322,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.hciconfig.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.hciconfig.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -68,16 +68,6 @@ Examples:
|
||||
...
|
||||
}
|
||||
|
||||
<a id="jc.parsers.history.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.history.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -79,16 +79,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.hosts.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.hosts.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -110,16 +110,6 @@ Examples:
|
||||
}
|
||||
}
|
||||
|
||||
<a id="jc.parsers.id.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.id.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -191,16 +191,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.ifconfig.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.ifconfig._IfconfigParser"></a>
|
||||
|
||||
## \_IfconfigParser Objects
|
||||
|
@@ -71,16 +71,6 @@ Examples:
|
||||
}
|
||||
}
|
||||
|
||||
<a id="jc.parsers.ini.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.ini.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -164,16 +164,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.iostat.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.iostat.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -105,16 +105,6 @@ Examples:
|
||||
{"device":"sda","tps":"0.24","kb_read_s":"5.28","kb_wrtn_s":"1.10"...}
|
||||
...
|
||||
|
||||
<a id="jc.parsers.iostat_s.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.iostat_s.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -168,16 +168,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.iptables.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.iptables.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -126,16 +126,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.iw_scan.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.iw_scan.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -82,16 +82,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.jar_manifest.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.jar_manifest.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -98,16 +98,6 @@ Example:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.jobs.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.jobs.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -58,16 +58,6 @@ Examples:
|
||||
"occupation": "Engineer"
|
||||
}
|
||||
|
||||
<a id="jc.parsers.kv.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.kv.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -109,16 +109,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.last.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.last.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -121,16 +121,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.ls.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.ls.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -82,16 +82,6 @@ Examples:
|
||||
{"filename":"AssetCacheLocatorUtil","flags":"-rwxr-xr-x","links":"1...}
|
||||
...
|
||||
|
||||
<a id="jc.parsers.ls_s.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.ls_s.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -279,16 +279,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.lsblk.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.lsblk.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -130,16 +130,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.lsmod.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.lsmod.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -124,16 +124,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.lsof.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.lsof.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -266,16 +266,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.lsusb.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.lsusb.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -80,16 +80,6 @@ Example:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.mount.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.mount.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -360,16 +360,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.netstat.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.netstat.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -211,16 +211,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.ntpq.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.ntpq.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -99,16 +99,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.passwd.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.passwd.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -167,16 +167,6 @@ Examples:
|
||||
]
|
||||
}
|
||||
|
||||
<a id="jc.parsers.ping.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.ping.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -88,16 +88,6 @@ Examples:
|
||||
{"type":"reply","destination_ip":"1.1.1.1","sent_bytes":"56","patte...}
|
||||
...
|
||||
|
||||
<a id="jc.parsers.ping_s.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.ping_s.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -52,16 +52,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.pip_list.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.pip_list.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -70,16 +70,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.pip_show.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.pip_show.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -211,16 +211,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.ps.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.ps.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -113,16 +113,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.route.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.route.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -166,16 +166,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.rpm_qi.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.rpm_qi.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -207,16 +207,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.sfdisk.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.sfdisk.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -106,16 +106,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.shadow.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.shadow.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -285,16 +285,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.ss.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.ss.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -175,16 +175,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.stat.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.stat.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -86,16 +86,6 @@ Examples:
|
||||
$ stat | jc --stat-s -r
|
||||
{"file":"(stdin)","unix_device":"1027739696","inode":"1155","flag...}
|
||||
|
||||
<a id="jc.parsers.stat_s.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.stat_s.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -62,16 +62,6 @@ Examples:
|
||||
...
|
||||
}
|
||||
|
||||
<a id="jc.parsers.sysctl.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.sysctl.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -63,16 +63,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.systemctl.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.systemctl.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -80,16 +80,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.systemctl_lj.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.systemctl_lj.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -56,16 +56,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.systemctl_ls.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.systemctl_ls.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -52,16 +52,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.systemctl_luf.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.systemctl_luf.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -216,16 +216,6 @@ Examples:
|
||||
}
|
||||
}
|
||||
|
||||
<a id="jc.parsers.systeminfo.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.systeminfo.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -137,16 +137,6 @@ Examples:
|
||||
"exit_status": "0"
|
||||
}
|
||||
|
||||
<a id="jc.parsers.time.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.time.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -69,16 +69,6 @@ Examples:
|
||||
"dst_active": "yes"
|
||||
}
|
||||
|
||||
<a id="jc.parsers.timedatectl.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.timedatectl.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -136,16 +136,6 @@ Examples:
|
||||
]
|
||||
}
|
||||
|
||||
<a id="jc.parsers.tracepath.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.tracepath.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -125,16 +125,6 @@ Examples:
|
||||
]
|
||||
}
|
||||
|
||||
<a id="jc.parsers.traceroute.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.traceroute.__version__"></a>
|
||||
|
||||
#### \_\_version\_\_
|
||||
|
@@ -205,16 +205,6 @@ Examples:
|
||||
]
|
||||
}
|
||||
|
||||
<a id="jc.parsers.ufw.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.ufw.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -143,16 +143,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.ufw_appinfo.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.ufw_appinfo.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -52,16 +52,6 @@ Example:
|
||||
"kernel_version": "#74-Ubuntu SMP Tue Sep 17 17:06:04 UTC 2019"
|
||||
}
|
||||
|
||||
<a id="jc.parsers.uname.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.uname.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -203,16 +203,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.upower.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.upower.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -70,16 +70,6 @@ Example:
|
||||
"load_15m": "1.94"
|
||||
}
|
||||
|
||||
<a id="jc.parsers.uptime.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.uptime.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -131,16 +131,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.vmstat.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.vmstat.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -105,16 +105,6 @@ Examples:
|
||||
{"runnable_procs":"2","uninterruptible_sleeping_procs":"0","virtua...}
|
||||
...
|
||||
|
||||
<a id="jc.parsers.vmstat_s.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.vmstat_s.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -108,16 +108,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.w.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.w.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -59,16 +59,6 @@ Examples:
|
||||
...
|
||||
]
|
||||
|
||||
<a id="jc.parsers.wc.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.wc.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -140,16 +140,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.who.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.who.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -75,16 +75,6 @@ Examples:
|
||||
...
|
||||
}
|
||||
|
||||
<a id="jc.parsers.xml.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.xml.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -89,16 +89,6 @@ Examples:
|
||||
}
|
||||
]
|
||||
|
||||
<a id="jc.parsers.yaml.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.yaml.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
@@ -84,16 +84,6 @@ Examples:
|
||||
},
|
||||
...
|
||||
|
||||
<a id="jc.parsers.zipinfo.info"></a>
|
||||
|
||||
## info Objects
|
||||
|
||||
```python
|
||||
class info()
|
||||
```
|
||||
|
||||
Provides parser metadata (version, author, etc.)
|
||||
|
||||
<a id="jc.parsers.zipinfo.parse"></a>
|
||||
|
||||
#### parse
|
||||
|
Reference in New Issue
Block a user