Skip to content

xonsh/slug

Repository files navigation

slug

Join the chat at https://gitter.im/xonsh/xonsh https://travis-ci.org/xonsh/slug.svg?branch=master https://ci.appveyor.com/api/projects/status/github/xonsh/slug?svg=true Code Health

The underlying process management library for xonsh.

Example

with ProcessGroup() as pg:
  pipe = Pipe()
  spam = pg.add(Process(['spam'], stdout=pipe.side_in))
  eggs = pg.add(Process(['eggs'], stdin=pipe.side_out))
pg.start()
pg.join()

See also