Thanks to @hb2pencil for the WMIC command! Here's how you can pipe the output without a file:
import subprocess
cmd = 'WMIC PROCESS get Caption,Commandline,Processid'
proc = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE)
for line in proc.stdout:
print line
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…