Wie rufe ich den Exit-Code ab, wenn ich das Python- subprocess
Modul und die communicate()
Methode verwende?
Relevanter Code:
import subprocess as sp
data = sp.Popen(openRTSP + opts.split(), stdout=sp.PIPE).communicate()[0]
Soll ich das anders machen?