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

meyer1994/pfluent

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages