3 comments

[ 2.9 ms ] story [ 8.2 ms ] thread
How does it compare to that 'sh' module?
It has completely different syntax than sh. For sh a command would look like

from sh import ifconfig print(ifconfig("wlan0"))

For shellpy

p`ifconfig wlan

Seems pretty cool, I often use bash and python to script things but always feel like some things area way way easier in only one of them.