Skip to content

xonsh/slug

Folders and files

NameName
Last commit message
Last commit date

Latest commit

79be59e · May 16, 2024
Mar 31, 2017
Apr 28, 2017
Aug 1, 2017
Mar 1, 2017
Feb 5, 2017
Feb 8, 2017
Mar 12, 2017
Feb 28, 2017
Feb 5, 2017
May 16, 2024
Apr 4, 2017
Feb 7, 2017
Mar 12, 2017
Feb 7, 2017

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