Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
from easyprocess import EasyProcess

print(
    '-- Run program, wait for it to complete, get stdout (command is string):')
s = EasyProcess('python -c "print 3"').call().stdout
print(s)

print('-- Run program, wait for it to complete, get stdout (command is list):')
s = EasyProcess(['python', '-c', 'print 3']).call().stdout
print(s)

print('-- Run program, wait for it to complete, get stderr:')
s = EasyProcess('python --version').call().stderr
print(s)

print('-- Run program, wait for it to complete, get return code:')
s = EasyProcess('python --version').call().return_code
print(s)

print('-- Run program, wait 1 second, stop it, get stdout:')
s = EasyProcess('ping localhost').start().sleep(1).stop().stdout
print(s)