From 8e089baf3fe30fed80e1c5cdde7c3046bb70ca5a Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 25 Jan 2022 18:38:26 -0800 Subject: [PATCH] remove info class from docs --- docgen.sh | 13 ++++++++----- docs/parsers/acpi.md | 10 ---------- docs/parsers/airport.md | 10 ---------- docs/parsers/airport_s.md | 10 ---------- docs/parsers/arp.md | 10 ---------- docs/parsers/blkid.md | 10 ---------- docs/parsers/cksum.md | 10 ---------- docs/parsers/crontab.md | 10 ---------- docs/parsers/crontab_u.md | 10 ---------- docs/parsers/csv.md | 10 ---------- docs/parsers/csv_s.md | 10 ---------- docs/parsers/date.md | 10 ---------- docs/parsers/df.md | 10 ---------- docs/parsers/dig.md | 10 ---------- docs/parsers/dir.md | 10 ---------- docs/parsers/dmidecode.md | 10 ---------- docs/parsers/dpkg_l.md | 10 ---------- docs/parsers/du.md | 10 ---------- docs/parsers/env.md | 10 ---------- docs/parsers/file.md | 10 ---------- docs/parsers/finger.md | 10 ---------- docs/parsers/free.md | 10 ---------- docs/parsers/fstab.md | 10 ---------- docs/parsers/group.md | 10 ---------- docs/parsers/gshadow.md | 10 ---------- docs/parsers/hash.md | 10 ---------- docs/parsers/hashsum.md | 10 ---------- docs/parsers/hciconfig.md | 10 ---------- docs/parsers/history.md | 10 ---------- docs/parsers/hosts.md | 10 ---------- docs/parsers/id.md | 10 ---------- docs/parsers/ifconfig.md | 10 ---------- docs/parsers/ini.md | 10 ---------- docs/parsers/iostat.md | 10 ---------- docs/parsers/iostat_s.md | 10 ---------- docs/parsers/iptables.md | 10 ---------- docs/parsers/iw_scan.md | 10 ---------- docs/parsers/jar_manifest.md | 10 ---------- docs/parsers/jobs.md | 10 ---------- docs/parsers/kv.md | 10 ---------- docs/parsers/last.md | 10 ---------- docs/parsers/ls.md | 10 ---------- docs/parsers/ls_s.md | 10 ---------- docs/parsers/lsblk.md | 10 ---------- docs/parsers/lsmod.md | 10 ---------- docs/parsers/lsof.md | 10 ---------- docs/parsers/lsusb.md | 10 ---------- docs/parsers/mount.md | 10 ---------- docs/parsers/netstat.md | 10 ---------- docs/parsers/ntpq.md | 10 ---------- docs/parsers/passwd.md | 10 ---------- docs/parsers/ping.md | 10 ---------- docs/parsers/ping_s.md | 10 ---------- docs/parsers/pip_list.md | 10 ---------- docs/parsers/pip_show.md | 10 ---------- docs/parsers/ps.md | 10 ---------- docs/parsers/route.md | 10 ---------- docs/parsers/rpm_qi.md | 10 ---------- docs/parsers/sfdisk.md | 10 ---------- docs/parsers/shadow.md | 10 ---------- docs/parsers/ss.md | 10 ---------- docs/parsers/stat.md | 10 ---------- docs/parsers/stat_s.md | 10 ---------- docs/parsers/sysctl.md | 10 ---------- docs/parsers/systemctl.md | 10 ---------- docs/parsers/systemctl_lj.md | 10 ---------- docs/parsers/systemctl_ls.md | 10 ---------- docs/parsers/systemctl_luf.md | 10 ---------- docs/parsers/systeminfo.md | 10 ---------- docs/parsers/time.md | 10 ---------- docs/parsers/timedatectl.md | 10 ---------- docs/parsers/tracepath.md | 10 ---------- docs/parsers/traceroute.md | 10 ---------- docs/parsers/ufw.md | 10 ---------- docs/parsers/ufw_appinfo.md | 10 ---------- docs/parsers/uname.md | 10 ---------- docs/parsers/upower.md | 10 ---------- docs/parsers/uptime.md | 10 ---------- docs/parsers/vmstat.md | 10 ---------- docs/parsers/vmstat_s.md | 10 ---------- docs/parsers/w.md | 10 ---------- docs/parsers/wc.md | 10 ---------- docs/parsers/who.md | 10 ---------- docs/parsers/xml.md | 10 ---------- docs/parsers/yaml.md | 10 ---------- docs/parsers/zipinfo.md | 10 ---------- 86 files changed, 8 insertions(+), 855 deletions(-) diff --git a/docgen.sh b/docgen.sh index 8ea5a4f1..e07d0500 100755 --- a/docgen.sh +++ b/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 diff --git a/docs/parsers/acpi.md b/docs/parsers/acpi.md index bd3fe853..05daa05b 100644 --- a/docs/parsers/acpi.md +++ b/docs/parsers/acpi.md @@ -232,16 +232,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/airport.md b/docs/parsers/airport.md index 32d805d7..c262f2b0 100644 --- a/docs/parsers/airport.md +++ b/docs/parsers/airport.md @@ -85,16 +85,6 @@ Examples: "channel": "48,80" } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/airport_s.md b/docs/parsers/airport_s.md index 4dddeeb5..6eb7951e 100644 --- a/docs/parsers/airport_s.md +++ b/docs/parsers/airport_s.md @@ -113,16 +113,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/arp.md b/docs/parsers/arp.md index 10c968dc..385d74b5 100644 --- a/docs/parsers/arp.md +++ b/docs/parsers/arp.md @@ -122,16 +122,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/blkid.md b/docs/parsers/blkid.md index b2147331..74ecda57 100644 --- a/docs/parsers/blkid.md +++ b/docs/parsers/blkid.md @@ -125,16 +125,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/cksum.md b/docs/parsers/cksum.md index 180d5b6c..f5b3710b 100644 --- a/docs/parsers/cksum.md +++ b/docs/parsers/cksum.md @@ -59,16 +59,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/crontab.md b/docs/parsers/crontab.md index 0b24a2ec..1baf654d 100644 --- a/docs/parsers/crontab.md +++ b/docs/parsers/crontab.md @@ -178,16 +178,6 @@ Examples: ] } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/crontab_u.md b/docs/parsers/crontab_u.md index ec286249..37e89575 100644 --- a/docs/parsers/crontab_u.md +++ b/docs/parsers/crontab_u.md @@ -175,16 +175,6 @@ Examples: ] } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/csv.md b/docs/parsers/csv.md index a7e44b0d..7aca68b0 100644 --- a/docs/parsers/csv.md +++ b/docs/parsers/csv.md @@ -82,16 +82,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/csv_s.md b/docs/parsers/csv_s.md index c6d89c19..10ac5910 100644 --- a/docs/parsers/csv_s.md +++ b/docs/parsers/csv_s.md @@ -68,16 +68,6 @@ Examples: {"Sell":"129","List":"132","Living":"13","Rooms":"6","Beds":"3"...} ... - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/date.md b/docs/parsers/date.md index 1d73d649..48aad4f7 100644 --- a/docs/parsers/date.md +++ b/docs/parsers/date.md @@ -82,16 +82,6 @@ Examples: "timezone_aware": true } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/df.md b/docs/parsers/df.md index af25753e..768b73a1 100644 --- a/docs/parsers/df.md +++ b/docs/parsers/df.md @@ -102,16 +102,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/dig.md b/docs/parsers/dig.md index b0e47027..d69a7a32 100644 --- a/docs/parsers/dig.md +++ b/docs/parsers/dig.md @@ -327,16 +327,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/dir.md b/docs/parsers/dir.md index 254c2854..54e9a84a 100644 --- a/docs/parsers/dir.md +++ b/docs/parsers/dir.md @@ -125,16 +125,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/dmidecode.md b/docs/parsers/dmidecode.md index 3396b660..edb3214e 100644 --- a/docs/parsers/dmidecode.md +++ b/docs/parsers/dmidecode.md @@ -130,16 +130,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/dpkg_l.md b/docs/parsers/dpkg_l.md index b465ec45..d88314d6 100644 --- a/docs/parsers/dpkg_l.md +++ b/docs/parsers/dpkg_l.md @@ -136,16 +136,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/du.md b/docs/parsers/du.md index 1dc282fd..681fa3bf 100644 --- a/docs/parsers/du.md +++ b/docs/parsers/du.md @@ -92,16 +92,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/env.md b/docs/parsers/env.md index e9d0434e..56ef9a0e 100644 --- a/docs/parsers/env.md +++ b/docs/parsers/env.md @@ -77,16 +77,6 @@ Examples: "_": "/usr/bin/env" } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/file.md b/docs/parsers/file.md index 5f1c7a44..c159c969 100644 --- a/docs/parsers/file.md +++ b/docs/parsers/file.md @@ -67,16 +67,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/finger.md b/docs/parsers/finger.md index 25c1f0ac..3e23542e 100644 --- a/docs/parsers/finger.md +++ b/docs/parsers/finger.md @@ -95,16 +95,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/free.md b/docs/parsers/free.md index 6fd877e0..a0659f08 100644 --- a/docs/parsers/free.md +++ b/docs/parsers/free.md @@ -77,16 +77,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/fstab.md b/docs/parsers/fstab.md index 4900e758..42a3c826 100644 --- a/docs/parsers/fstab.md +++ b/docs/parsers/fstab.md @@ -90,16 +90,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/group.md b/docs/parsers/group.md index afbdd357..6c6ebdf9 100644 --- a/docs/parsers/group.md +++ b/docs/parsers/group.md @@ -114,16 +114,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/gshadow.md b/docs/parsers/gshadow.md index 77dadde3..ed4d675e 100644 --- a/docs/parsers/gshadow.md +++ b/docs/parsers/gshadow.md @@ -82,16 +82,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/hash.md b/docs/parsers/hash.md index bba97fa5..e7120f09 100644 --- a/docs/parsers/hash.md +++ b/docs/parsers/hash.md @@ -42,16 +42,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/hashsum.md b/docs/parsers/hashsum.md index dcd2dc21..ef6e597f 100644 --- a/docs/parsers/hashsum.md +++ b/docs/parsers/hashsum.md @@ -73,16 +73,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/hciconfig.md b/docs/parsers/hciconfig.md index f68ed05e..f787b1ac 100644 --- a/docs/parsers/hciconfig.md +++ b/docs/parsers/hciconfig.md @@ -322,16 +322,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/history.md b/docs/parsers/history.md index b6ce7c27..7a27c543 100644 --- a/docs/parsers/history.md +++ b/docs/parsers/history.md @@ -68,16 +68,6 @@ Examples: ... } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/hosts.md b/docs/parsers/hosts.md index 8d4bb20f..05baa2cb 100644 --- a/docs/parsers/hosts.md +++ b/docs/parsers/hosts.md @@ -79,16 +79,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/id.md b/docs/parsers/id.md index 303f4c32..40c7214f 100644 --- a/docs/parsers/id.md +++ b/docs/parsers/id.md @@ -110,16 +110,6 @@ Examples: } } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/ifconfig.md b/docs/parsers/ifconfig.md index c5ac5e03..6419956e 100644 --- a/docs/parsers/ifconfig.md +++ b/docs/parsers/ifconfig.md @@ -191,16 +191,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - ## \_IfconfigParser Objects diff --git a/docs/parsers/ini.md b/docs/parsers/ini.md index 0132f96e..981f19df 100644 --- a/docs/parsers/ini.md +++ b/docs/parsers/ini.md @@ -71,16 +71,6 @@ Examples: } } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/iostat.md b/docs/parsers/iostat.md index 44da5bb0..ec41fca1 100644 --- a/docs/parsers/iostat.md +++ b/docs/parsers/iostat.md @@ -164,16 +164,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/iostat_s.md b/docs/parsers/iostat_s.md index 7f786bc5..4fa918b7 100644 --- a/docs/parsers/iostat_s.md +++ b/docs/parsers/iostat_s.md @@ -105,16 +105,6 @@ Examples: {"device":"sda","tps":"0.24","kb_read_s":"5.28","kb_wrtn_s":"1.10"...} ... - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/iptables.md b/docs/parsers/iptables.md index 67c06de3..b67aecda 100644 --- a/docs/parsers/iptables.md +++ b/docs/parsers/iptables.md @@ -168,16 +168,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/iw_scan.md b/docs/parsers/iw_scan.md index 4e33c240..fda6fc59 100644 --- a/docs/parsers/iw_scan.md +++ b/docs/parsers/iw_scan.md @@ -126,16 +126,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/jar_manifest.md b/docs/parsers/jar_manifest.md index 11158d88..89099f79 100644 --- a/docs/parsers/jar_manifest.md +++ b/docs/parsers/jar_manifest.md @@ -82,16 +82,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/jobs.md b/docs/parsers/jobs.md index 2218f6ed..d7cdb6b9 100644 --- a/docs/parsers/jobs.md +++ b/docs/parsers/jobs.md @@ -98,16 +98,6 @@ Example: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/kv.md b/docs/parsers/kv.md index 103cd555..8265f402 100644 --- a/docs/parsers/kv.md +++ b/docs/parsers/kv.md @@ -58,16 +58,6 @@ Examples: "occupation": "Engineer" } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/last.md b/docs/parsers/last.md index 9ef52d1a..0f6a04e0 100644 --- a/docs/parsers/last.md +++ b/docs/parsers/last.md @@ -109,16 +109,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/ls.md b/docs/parsers/ls.md index c4d5372c..5de0f3ec 100644 --- a/docs/parsers/ls.md +++ b/docs/parsers/ls.md @@ -121,16 +121,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/ls_s.md b/docs/parsers/ls_s.md index 55f4b7d8..07b32395 100644 --- a/docs/parsers/ls_s.md +++ b/docs/parsers/ls_s.md @@ -82,16 +82,6 @@ Examples: {"filename":"AssetCacheLocatorUtil","flags":"-rwxr-xr-x","links":"1...} ... - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/lsblk.md b/docs/parsers/lsblk.md index 79e255fa..50958f35 100644 --- a/docs/parsers/lsblk.md +++ b/docs/parsers/lsblk.md @@ -279,16 +279,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/lsmod.md b/docs/parsers/lsmod.md index 68c7347c..9d4183a4 100644 --- a/docs/parsers/lsmod.md +++ b/docs/parsers/lsmod.md @@ -130,16 +130,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/lsof.md b/docs/parsers/lsof.md index 6a91c727..8fc90d71 100644 --- a/docs/parsers/lsof.md +++ b/docs/parsers/lsof.md @@ -124,16 +124,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/lsusb.md b/docs/parsers/lsusb.md index cfdeafb0..23547f94 100644 --- a/docs/parsers/lsusb.md +++ b/docs/parsers/lsusb.md @@ -266,16 +266,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/mount.md b/docs/parsers/mount.md index 09d6ec7e..6d0c01e1 100644 --- a/docs/parsers/mount.md +++ b/docs/parsers/mount.md @@ -80,16 +80,6 @@ Example: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/netstat.md b/docs/parsers/netstat.md index ac6a519f..e2040fd3 100644 --- a/docs/parsers/netstat.md +++ b/docs/parsers/netstat.md @@ -360,16 +360,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/ntpq.md b/docs/parsers/ntpq.md index 87326a49..145eed9f 100644 --- a/docs/parsers/ntpq.md +++ b/docs/parsers/ntpq.md @@ -211,16 +211,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/passwd.md b/docs/parsers/passwd.md index 83d8bac7..9b1d1401 100644 --- a/docs/parsers/passwd.md +++ b/docs/parsers/passwd.md @@ -99,16 +99,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/ping.md b/docs/parsers/ping.md index 800c2aa1..02026ef6 100644 --- a/docs/parsers/ping.md +++ b/docs/parsers/ping.md @@ -167,16 +167,6 @@ Examples: ] } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/ping_s.md b/docs/parsers/ping_s.md index 9c23a729..f8bb2aac 100644 --- a/docs/parsers/ping_s.md +++ b/docs/parsers/ping_s.md @@ -88,16 +88,6 @@ Examples: {"type":"reply","destination_ip":"1.1.1.1","sent_bytes":"56","patte...} ... - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/pip_list.md b/docs/parsers/pip_list.md index c6f68e43..622bac4b 100644 --- a/docs/parsers/pip_list.md +++ b/docs/parsers/pip_list.md @@ -52,16 +52,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/pip_show.md b/docs/parsers/pip_show.md index 61269051..eb392c98 100644 --- a/docs/parsers/pip_show.md +++ b/docs/parsers/pip_show.md @@ -70,16 +70,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/ps.md b/docs/parsers/ps.md index 720af811..676410c7 100644 --- a/docs/parsers/ps.md +++ b/docs/parsers/ps.md @@ -211,16 +211,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/route.md b/docs/parsers/route.md index f76084f6..0c028027 100644 --- a/docs/parsers/route.md +++ b/docs/parsers/route.md @@ -113,16 +113,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/rpm_qi.md b/docs/parsers/rpm_qi.md index a4f9a034..814bc133 100644 --- a/docs/parsers/rpm_qi.md +++ b/docs/parsers/rpm_qi.md @@ -166,16 +166,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/sfdisk.md b/docs/parsers/sfdisk.md index 574abc89..09ded5f2 100644 --- a/docs/parsers/sfdisk.md +++ b/docs/parsers/sfdisk.md @@ -207,16 +207,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/shadow.md b/docs/parsers/shadow.md index 45e69a18..0e5e4acb 100644 --- a/docs/parsers/shadow.md +++ b/docs/parsers/shadow.md @@ -106,16 +106,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/ss.md b/docs/parsers/ss.md index 1fa90b36..6f7878a4 100644 --- a/docs/parsers/ss.md +++ b/docs/parsers/ss.md @@ -285,16 +285,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/stat.md b/docs/parsers/stat.md index 1d55d43f..ca11d9fc 100644 --- a/docs/parsers/stat.md +++ b/docs/parsers/stat.md @@ -175,16 +175,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/stat_s.md b/docs/parsers/stat_s.md index b910afa4..7d4b1681 100644 --- a/docs/parsers/stat_s.md +++ b/docs/parsers/stat_s.md @@ -86,16 +86,6 @@ Examples: $ stat | jc --stat-s -r {"file":"(stdin)","unix_device":"1027739696","inode":"1155","flag...} - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/sysctl.md b/docs/parsers/sysctl.md index 9fe2d15f..a7a2f2f1 100644 --- a/docs/parsers/sysctl.md +++ b/docs/parsers/sysctl.md @@ -62,16 +62,6 @@ Examples: ... } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/systemctl.md b/docs/parsers/systemctl.md index 30f1e9eb..4fdd0600 100644 --- a/docs/parsers/systemctl.md +++ b/docs/parsers/systemctl.md @@ -63,16 +63,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/systemctl_lj.md b/docs/parsers/systemctl_lj.md index de4ad1b7..07144bef 100644 --- a/docs/parsers/systemctl_lj.md +++ b/docs/parsers/systemctl_lj.md @@ -80,16 +80,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/systemctl_ls.md b/docs/parsers/systemctl_ls.md index 41e0c74e..10639596 100644 --- a/docs/parsers/systemctl_ls.md +++ b/docs/parsers/systemctl_ls.md @@ -56,16 +56,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/systemctl_luf.md b/docs/parsers/systemctl_luf.md index 99dedd49..ae77e85a 100644 --- a/docs/parsers/systemctl_luf.md +++ b/docs/parsers/systemctl_luf.md @@ -52,16 +52,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/systeminfo.md b/docs/parsers/systeminfo.md index e8d62b09..faee28bc 100644 --- a/docs/parsers/systeminfo.md +++ b/docs/parsers/systeminfo.md @@ -216,16 +216,6 @@ Examples: } } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/time.md b/docs/parsers/time.md index 8ed27227..e331b755 100644 --- a/docs/parsers/time.md +++ b/docs/parsers/time.md @@ -137,16 +137,6 @@ Examples: "exit_status": "0" } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/timedatectl.md b/docs/parsers/timedatectl.md index 9a85832e..14737d60 100644 --- a/docs/parsers/timedatectl.md +++ b/docs/parsers/timedatectl.md @@ -69,16 +69,6 @@ Examples: "dst_active": "yes" } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/tracepath.md b/docs/parsers/tracepath.md index 1fa61a47..560e2ef4 100644 --- a/docs/parsers/tracepath.md +++ b/docs/parsers/tracepath.md @@ -136,16 +136,6 @@ Examples: ] } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/traceroute.md b/docs/parsers/traceroute.md index c802f642..58142ebb 100644 --- a/docs/parsers/traceroute.md +++ b/docs/parsers/traceroute.md @@ -125,16 +125,6 @@ Examples: ] } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### \_\_version\_\_ diff --git a/docs/parsers/ufw.md b/docs/parsers/ufw.md index 8c2b43fb..f18a4138 100644 --- a/docs/parsers/ufw.md +++ b/docs/parsers/ufw.md @@ -205,16 +205,6 @@ Examples: ] } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/ufw_appinfo.md b/docs/parsers/ufw_appinfo.md index f72a19ce..ee534199 100644 --- a/docs/parsers/ufw_appinfo.md +++ b/docs/parsers/ufw_appinfo.md @@ -143,16 +143,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/uname.md b/docs/parsers/uname.md index eed40e3c..8f8a45c2 100644 --- a/docs/parsers/uname.md +++ b/docs/parsers/uname.md @@ -52,16 +52,6 @@ Example: "kernel_version": "#74-Ubuntu SMP Tue Sep 17 17:06:04 UTC 2019" } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/upower.md b/docs/parsers/upower.md index 33a20ad8..46a9f219 100644 --- a/docs/parsers/upower.md +++ b/docs/parsers/upower.md @@ -203,16 +203,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/uptime.md b/docs/parsers/uptime.md index 302d279a..054b6139 100644 --- a/docs/parsers/uptime.md +++ b/docs/parsers/uptime.md @@ -70,16 +70,6 @@ Example: "load_15m": "1.94" } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/vmstat.md b/docs/parsers/vmstat.md index 9e5edeed..0da217f5 100644 --- a/docs/parsers/vmstat.md +++ b/docs/parsers/vmstat.md @@ -131,16 +131,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/vmstat_s.md b/docs/parsers/vmstat_s.md index 13fe3d6d..7ddde404 100644 --- a/docs/parsers/vmstat_s.md +++ b/docs/parsers/vmstat_s.md @@ -105,16 +105,6 @@ Examples: {"runnable_procs":"2","uninterruptible_sleeping_procs":"0","virtua...} ... - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/w.md b/docs/parsers/w.md index d675faa5..1e7dfe3e 100644 --- a/docs/parsers/w.md +++ b/docs/parsers/w.md @@ -108,16 +108,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/wc.md b/docs/parsers/wc.md index 3a363b04..4454a2d4 100644 --- a/docs/parsers/wc.md +++ b/docs/parsers/wc.md @@ -59,16 +59,6 @@ Examples: ... ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/who.md b/docs/parsers/who.md index 1640a94a..2dd0cce9 100644 --- a/docs/parsers/who.md +++ b/docs/parsers/who.md @@ -140,16 +140,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/xml.md b/docs/parsers/xml.md index fbc76326..2f473c66 100644 --- a/docs/parsers/xml.md +++ b/docs/parsers/xml.md @@ -75,16 +75,6 @@ Examples: ... } - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/yaml.md b/docs/parsers/yaml.md index 5ab389c1..b9acb01e 100644 --- a/docs/parsers/yaml.md +++ b/docs/parsers/yaml.md @@ -89,16 +89,6 @@ Examples: } ] - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse diff --git a/docs/parsers/zipinfo.md b/docs/parsers/zipinfo.md index e8ad978b..cf655424 100644 --- a/docs/parsers/zipinfo.md +++ b/docs/parsers/zipinfo.md @@ -84,16 +84,6 @@ Examples: }, ... - - -## info Objects - -```python -class info() -``` - -Provides parser metadata (version, author, etc.) - #### parse