0
import re
import subprocess

sub = subprocess.Popen(['/home/karthik/Downloads/stanford-parser-2011-06-   08/lexparser.csh'], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr = subprocess.PIPE)

sub.stdin.write("i am a fan of ac milan which is the best club in the world")

relns = []

while(True):
    rel = sub.stdout.readline()
        m = re.search("Sentence skipped", rel)

    if m != None:
            print 'stop'
            sys.exit(0)

        if rel == '\n':
                break
        relns.append(rel) 

print relns

sub.terminate()

所以我想使用 stanford 解析器并使用 lexparser.csh 来解析这行文本。但是当我运行这段代码时,我得到了默认文本的输出。给出的实际文本没有被解析。那么我是否以正确的方式使用管道?而且我在很多示例中都看到过 - '-' 与命令一起使用。为什么要使用它?因为当我使用该脚本时,脚本只是停在 sub.stdout.readline()

4

1 回答 1

1

您可能需要flush()sub.stdin写完后打电话。

于 2011-06-15T12:52:54.127 回答