私はPythonでシステムコールを行い、Pythonプログラムで操作できる文字列に出力を保存しようとしています。
#!/usr/bin/python
import subprocess
p2 = subprocess.Popen("ntpq -p")
私はここでいくつかの提案を含むいくつかのことを試しました:
しかし、運なしで。
Python 2.7またはPython 3の場合
Popen
オブジェクトを直接作成する代わりに、 subprocess.check_output()
関数 を使用して、コマンドの出力を文字列に格納できます。
from subprocess import check_output
out = check_output(["ntpq", "-p"])
Python 2.4-2.6の場合
communicate
メソッドを使用してください。
import subprocess
p = subprocess.Popen(["ntpq", "-p"], stdout=subprocess.PIPE)
out, err = p.communicate()
out
はあなたが望むものです。
その他の回答に関する重要な注意事項
コマンドをどのように渡したかに注意してください。 "ntpq -p"
の例は別の問題を引き起こします。 Popen
はシェルを起動しないので、コマンドとオプションのリスト["ntpq", "-p"]
を使用します。
これは私にとってstdoutをリダイレクトするのに役立ちました(stderrも同様に扱うことができます):
from subprocess import Popen, PIPE
pipe = Popen(path, stdout=PIPE)
text = pipe.communicate()[0]
それでも問題が解決しない場合は、問題を正確に特定してください。
pwd
がほんの一例であると仮定すると、これはあなたがそれをどのように行うことができるかです:
import subprocess
p = subprocess.Popen("pwd", stdout=subprocess.PIPE)
result = p.communicate()[0]
print result
サブプロセスのドキュメント / 他の例については/ /を参照してください そしてさらなる情報。
subprocess.Popen: http://docs.python.org/2/library/subprocess.html#subprocess.Popen
import subprocess
command = "ntpq -p" # the Shell command
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=None, Shell=True)
#Launch the Shell command:
output = process.communicate()
print output[0]
Popenコンストラクタで、ShellがTrueの場合、コマンドをシーケンスではなく文字列として渡す必要があります。そうでなければ、単にコマンドをリストに分割します。
command = ["ntpq", "-p"] # the Shell command
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=None)
標準エラーもPopen初期化に読み込む必要がある場合は、stderrをsubprocess.PIPEまたはサブプロセス.STDOUT:
import subprocess
command = "ntpq -p" # the Shell command
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, Shell=True)
#Launch the Shell command:
output, error = process.communicate()
これは私にとっては完璧に機能します。
import subprocess
try:
#prints results and merges stdout and std
result = subprocess.check_output("echo %USERNAME%", stderr=subprocess.STDOUT, Shell=True)
print result
#causes error and merges stdout and stderr
result = subprocess.check_output("copy testfds", stderr=subprocess.STDOUT, Shell=True)
except subprocess.CalledProcessError, ex: # error code <> 0
print "--------error------"
print ex.cmd
print ex.message
print ex.returncode
print ex.output # contains stdout and stderr together
Python 2.7+の慣用的な答えは subprocess.check_output()
を使うことです
また、サブプロセスを呼び出すときの引数の処理にも注意が必要です。
Argsがそれ自身の引数を持たない単なるコマンドである場合(またはShell=True
が設定されている場合)、それは文字列になります。そうでなければそれはリストでなければなりません。
たとえば... ls
コマンドを呼び出すには、これで問題ありません。
from subprocess import check_call
check_call('ls')
そうです:
from subprocess import check_call
check_call(['ls',])
ただし、シェルコマンドに引数を渡したい場合は、にすることはできません:
from subprocess import check_call
check_call('ls -al')
代わりに、あなたはそれをリストとして渡さなければなりません:
from subprocess import check_call
check_call(['ls', '-al'])
shlex.split()
関数は、サブプロセスを作成する前に文字列をシェルのような構文に分割するのに便利なことがあります。
from subprocess import check_call
import shlex
check_call(shlex.split('ls -al'))
これは私にとって完璧でした。戻りコード、stdout、およびstderrがTupleに入ります。
from subprocess import Popen, PIPE
def console(cmd):
p = Popen(cmd, Shell=True, stdout=PIPE)
out, err = p.communicate()
return (p.returncode, out, err)
例えば:
result = console('ls -l')
print 'returncode: %s' % result[0]
print 'output: %s' % result[1]
print 'error: %s' % result[2]
私はここに他の答えに基づいて小さな機能を書いた:
def pexec(*args):
return subprocess.Popen(args, stdout=subprocess.PIPE).communicate()[0].rstrip()
使用法:
changeset = pexec('hg','id','--id')
branch = pexec('hg','id','--branch')
revnum = pexec('hg','id','--num')
print('%s : %s (%s)' % (revnum, changeset, branch))
import os
list = os.popen('pwd').read()
この場合、リストには1つの要素しかありません。
import subprocess
output = str(subprocess.Popen("ntpq -p",Shell = True,stdout = subprocess.PIPE,
stderr = subprocess.STDOUT).communicate()[0])
これは1行のソリューションです
以下は、プロセスのstdoutとstderrを単一の変数にキャプチャします。 Python 2および3と互換性があります。
from subprocess import check_output, CalledProcessError, STDOUT
command = ["ls", "-l"]
try:
output = check_output(command, stderr=STDOUT).decode()
success = True
except CalledProcessError as e:
output = e.output.decode()
success = False
コマンドが配列ではなく文字列の場合、これに次の接頭辞を付けます。
import shlex
command = shlex.split(command)