HEX
Server: Apache
System: Linux beluga.o2switch.net 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP Thu May 7 23:17:13 UTC 2026 x86_64
User: sc3naki1272 (1113)
PHP: 8.3.33
Disabled: NONE
Upload Files
File: //opt/alt/python27/lib/python2.7/site-packages/easyprocess/examples/cmd.py
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)