Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jamsh

Small shell utilities for Python for personal use.

from jamsh import run

run(["make"], extra_env={"VERBOSE": "1"})

result = run(["python", "-c", "print('hi')"], capture=True)
assert result.stdout == "hi\n"
from jamsh import run_many_live

results = run_many_live(
    [
        ["python", "-c", "print('one')"],
        ["python", "-c", "print('two')"],
    ],
    max_parallel=2,
)
python -m jamsh.demo

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages