<div dir="ltr"><div>pip list only shows the name of package which auther wants which cant be imported <br></div>for import we have to search for internet in which package format auther has written<br><br><br>what i want to introduce is a new argument for pip<br>this is new output which will show the list of all available packages.<br>and if there is a subpackage it should be represented as branch tree<br>and if all the leafs should be modules<br><br>it is justlike pstree command in linux.<br>$pip moduletree name<br><div><br><br>name==version<br></div><div>packagename-----+----{subpackage1}-----+----{module1}<br></div><div>                         |                               +----{module2}<br></div><div>                         |                               +----{module3}<br></div><div>                         +----{subpackage2}------+---{module1}<br></div><div>                         +----{subpackage3}------+-----{module}<br></div><div>                         +-----mainmodule1<br></div><div>                         +-----mainmodule2<br></div><div><br>$pip moduletree <br></div><div># will give the above output for the  for each package in pip list<br></div><div>$pip moduletree packagename --classes<br></div>will output the availble class names in the leaf node</div>