1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-19 00:17:51 +02:00

initial add of pip list parser

This commit is contained in:
Kelly Brazil
2019-12-16 18:36:13 -08:00
parent facf0b399c
commit 86ebe2cf9c
6 changed files with 205 additions and 1 deletions

View File

@ -26,6 +26,7 @@ import jc.parsers.lsmod
import jc.parsers.lsof
import jc.parsers.mount
import jc.parsers.netstat
import jc.parsers.pip_list
import jc.parsers.ps
import jc.parsers.route
import jc.parsers.ss
@ -58,6 +59,7 @@ parser_map = {
'--lsof': jc.parsers.lsof,
'--mount': jc.parsers.mount,
'--netstat': jc.parsers.netstat,
'--pip-list': jc.parsers.pip_list,
'--ps': jc.parsers.ps,
'--route': jc.parsers.route,
'--ss': jc.parsers.ss,