Skip to content
This repository has been archived by the owner on Jan 4, 2023. It is now read-only.

Latest commit

 

History

History
37 lines (25 loc) · 765 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 765 Bytes

Pfluent

Build Status standard-readme compliant

Thin wrapper around subprocess to use fluent syntax.

Table of Contents

About

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)

Install

pip install pfluent