web-dev-qa-db-ja.com

Pythonのサブプロセスで出力をリダイレクトする方法は?

コマンドラインで行うこと:

cat file1 file2 file3 > myfile

私がPythonでやりたいこと:

import subprocess, shlex
my_cmd = 'cat file1 file2 file3 > myfile'
args = shlex.split(my_cmd)
subprocess.call(args) # spits the output in the window i call my python program
87

更新:os.systemはお勧めできませんが、Python 3。


つかいます os.system

os.system(my_cmd)

サブプロセスを本当に使用したい場合、解決策があります(ほとんどがサブプロセスのドキュメントから解除されています)。

p = subprocess.Popen(my_cmd, Shell=True)
os.waitpid(p.pid, 0)

OTOH、システムコールを完全に回避できます:

import shutil

with open('myfile', 'w') as outfile:
    for infile in ('file1', 'file2', 'file3'):
        shutil.copyfileobj(open(infile), outfile)
20
Marcelo Cantos

元の質問に答えるために、出力をリダイレクトするには、stdout引数の開いているファイルハンドルをsubprocess.callに渡すだけです。

# Use a list of args instead of a string
input_files = ['file1', 'file2', 'file3']
my_cmd = ['cat'] + input_files
with open('myfile', "w") as outfile:
    subprocess.call(my_cmd, stdout=outfile)

しかし、他の人が指摘しているように、この目的でcatのような外部コマンドを使用することはまったく無関係です。

233
Ryan Thompson

@PoltoSいくつかのファイルを結合して、結果のファイルを処理したい。猫を使うのが最も簡単な代替手段だと思いました。それを行うためのより良い/ Pythonの方法はありますか?

もちろん:

with open('myfile', 'w') as outfile:
    for infilename in ['file1', 'file2', 'file3']:
        with open(infilename) as infile:
            outfile.write(infile.read())

興味深いケースの1つは、同様のファイルを追加してファイルを更新することです。その後、プロセスで新しいファイルを作成する必要はありません。大きなファイルを追加する必要がある場合に特に便利です。 pythonから直接コマンドラインを使用する1つの可能性があります。

import subprocess32 as sub

with open("A.csv","a") as f:
    f.flush()
    sub.Popen(["cat","temp.csv"],stdout=f)
0
DJJ
size = 'ffprobe -v error -show_entries format=size -of default=noprint_wrappers=1:nokey=1 dump.mp4 > file'
proc = subprocess.Popen(shlex.split(size), Shell=True)
time.sleep(1)
proc.terminate() #proc.kill() modify it by a suggestion
size = ""
with open('file', 'r') as infile:
    for line in infile.readlines():
        size += line.strip()

print(size)
os.remove('file')

subprocessを使用する場合、プロセスを強制終了する必要があります。これは一例です。プロセスを強制終了しない場合、fileは空になり、何も読み取れません。 Windowsで実行できます。Unixで実行できることを確認できません。

0
wyx