I always use fabric
for this things like:
from fabric.operations import local
result = local('ls', capture=True)
print "Content:/n%s" % (result, )
But this seem to be a good tool: sh
(Python subprocess interface).
Look at an example:
from sh import vgdisplay
print vgdisplay()
print vgdisplay('-v')
print vgdisplay(v=True)