Thin wrapper around subprocess
to use fluent syntax.
Just because I think it is nicer to write:
Runner('git')\
.arg('commit')\
.arg('-m', '"message"')\
.run(check=True)
Instead of:
args = ['git', 'commit', '-m', '"message"']
subprocess.run(args, check=True)
pip install pfluent