12

我有一个带有以下代码的python脚本:

print("Hello Deno")

我想使用 Deno 从 test.ts 运行这个 python 脚本(test.py)。到目前为止,这是 test.ts 中的代码:

const cmd = Deno.run({cmd: ["python3", "test.py"]});

如何获取 Deno 中 python 脚本的输出?

4

1 回答 1

16

Deno.run返回 的实例Deno.Process。为了得到输出使用.output(). stdout/stderr如果您想阅读内容,请不要忘记传递选项。

// --allow-run
const cmd = Deno.run({
  cmd: ["python3", "test.py"], 
  stdout: "piped",
  stderr: "piped"
});

const output = await cmd.output() // "piped" must be set
const outStr = new TextDecoder().decode(output);

const error = await p.stderrOutput();
const errorStr = new TextDecoder().decode(error);

cmd.close(); // Don't forget to close it

console.log(outStr, errorStr);

如果您不传递stdout属性,您将直接获得输出到stdout

 const p = Deno.run({
      cmd: ["python3", "test.py"]
 });

 await p.status();
 // output to stdout "Hello Deno"
 // calling p.output() will result in an Error
 p.close()

您还可以将输出发送到文件

// --allow-run --allow-read --allow-write
const filepath = "/tmp/output";
const file = await Deno.open(filepath, {
      create: true,
      write: true
 });

const p = Deno.run({
      cmd: ["python3", "test.py"],
      stdout: file.rid,
      stderr: file.rid // you can use different file for stderr
});

await p.status();
p.close();
file.close();

const fileContents = await Deno.readFile(filepath);
const text = new TextDecoder().decode(fileContents);

console.log(text)

为了检查您需要使用的进程的状态代码.status()

const status = await cmd.status()
// { success: true, code: 0, signal: undefined }
// { success: false, code: number, signal: number }

如果您需要向其中写入数据,stdin可以这样做:

const p = Deno.run({
    cmd: ["python", "-c", "import sys; assert 'foo' == sys.stdin.read();"],
    stdin: "piped",
  });


// send other value for different status code
const msg = new TextEncoder().encode("foo"); 
const n = await p.stdin.write(msg);

p.stdin.close()

const status = await p.status();

p.close()
console.log(status)

您需要使用:--allow-run标志​​运行 Deno 才能使用Deno.run

于 2020-05-10T11:02:42.003 回答