MCPcopy Create free account
hub / github.com/PyWavelets/pywt / pipe

Method pipe

util/authors.py:196–200  ·  view source on GitHub ↗
(self, command, *a, **kw)

Source from the content-addressed store, hash-verified

194 raise RuntimeError(f"{self.executable} failed")
195
196 def pipe(self, command, *a, **kw):
197 stdin = kw.pop('stdin', None)
198 p = self._call(command, a, {"stdin": stdin, "stdout": subprocess.PIPE},
199 call=False, **kw)
200 return p.stdout
201
202 def read(self, command, *a, **kw):
203 p = self._call(command, a, {"stdout": subprocess.PIPE},

Callers 1

mainFunction · 0.80

Calls 1

_callMethod · 0.95

Tested by

no test coverage detected