dongtaochan0777 2017-01-01 12:09
浏览 330
已采纳

在Golang中运行外部python,捕获连续的exec.Command Stdout

So my go script will call an external python like this

cmd = exec.Command("python","game.py")
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
go func(){
    err := cmd.Run()
    if err != nil{
    panic(err)
    }
}()

It runs my python script concurrently which is awesome. But now the problem is, my python script will run infinitely and it will print out some information from time to time. I want to "catch" these Stdout and print them out on my golang terminal. How do I do it concurrently (without waiting my python script to exit)?

  • 写回答

1条回答 默认 最新

  • dt1888 2017-01-01 12:29
    关注

    Use cmd.Start() and cmd.Wait() instead of cmd.Run().

    https://golang.org/pkg/os/exec/#Cmd.Run

    Run starts the specified command and waits for it to complete.

    Start starts the specified command but does not wait for it to complete.

    Wait waits for the command to exit. It must have been started by Start.

    And if you want to capture stdout/stderr concurrently, use cmd.StdoutPipe() / cmd.StderrPipe() and read it by bufio.NewScanner()

    package main
    
    import (
        "bufio"
        "fmt"
        "io"
        "os/exec"
    )
    
    func main() {
        cmd := exec.Command("python", "game.py")
        stdout, err := cmd.StdoutPipe()
        if err != nil {
            panic(err)
        }
        stderr, err := cmd.StderrPipe()
        if err != nil {
            panic(err)
        }
        err = cmd.Start()
        if err != nil {
            panic(err)
        }
    
        go copyOutput(stdout)
        go copyOutput(stderr)
        cmd.Wait()
    }
    
    func copyOutput(r io.Reader) {
        scanner := bufio.NewScanner(r)
        for scanner.Scan() {
            fmt.Println(scanner.Text())
        }
    }
    

    The following is a sample python code for reproducing real-time output. The stdout may be buffered in Python. Explicit flush may be required.

    import time
    import sys
    
    while True:
        print "Hello"
        sys.stdout.flush()
        time.sleep(1)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 smptlib使用465端口发送邮件失败
  • ¥200 总是报错,能帮助用python实现程序实现高斯正反算吗?有偿
  • ¥15 对于squad数据集的基于bert模型的微调
  • ¥15 为什么我运行这个网络会出现以下报错?CRNN神经网络
  • ¥20 steam下载游戏占用内存
  • ¥15 CST保存项目时失败
  • ¥15 树莓派5怎么用camera module 3啊
  • ¥20 java在应用程序里获取不到扬声器设备
  • ¥15 echarts动画效果的问题,请帮我添加一个动画。不要机器人回答。
  • ¥15 Attention is all you need 的代码运行