Skip to main content

Command runner for human beings.

Project description

CommandLib is a pythonic wrapper around subprocess that lets you pass around command objects in a way that creates more readable scripts. It lets you daisy-chain:

  • Arguments

  • Paths

  • Other environment variables

  • Runtime directory

  • Other runtime properties (run in shell, conceal stdout/stderr, ignore error codes, etc.)

It is somewhat inspired by amoffat’s sh, Kenneth Reitz’s requests, jaraco’s path.py and SQLAlchemy.

Example:

>>> from commandlib import Command, run
>>> ls = Command("ls")
>>> run(ls("-t").in_dir("/").with_shell())
sys  tmp  run  dev  proc  etc  boot  sbin  root  vmlinuz  initrd.img  bin  lib  opt  vmlinuz.old  initrd.img.old  media  home  cdrom  lost+found  var  srv  usr  mnt

Install

pip install commandlib

API

>>> from commandlib import Command, run
>>> py = Command("/usr/bin/python")
>>> py = py.with_env(PYTHONPATH="/home/user/pythondirectory")    # Run with *additional* variable PYTHONPATH (added to global environment when command is run)
>>> py = py.with_path("/home/user/bin")                          # Run with additional path (added to PATH environment variable when command is run)
>>> py = py.in_dir("/home/user/mydir")                           # Run in specified directory.
>>> py = py.with_shell()                                         # Run with shell
>>> py = py.only_errors()                                        # Suppress stderr
>>> py = py.silently()                                           # Suppress stdout and stderr

Why?

Commandlib is a library to make it easier to pass around command objects between different modules and classes and incrementally modify the command’s behavior in a readable way - adding environment variables, paths, etc.

  • call, check_call and Popen do not have the friendliest of APIs and code that uses them a lot can get ugly.

  • sh has rather too much magic (e.g. overriding import).

  • envoy and sarge are more focused on chaining commands rather than arguments.

Advanced API

Add trailing arguments:

>>> from commandlib import Command, run
>>> manage = Command(["/usr/bin/python", "manage.py"]).with_trailing_arguments("--settings", "local_settings.py").in_dir("projectdir")
>>> run(manage("runserver"))
[ Runs "/usr/bin/python manage.py runserver --settings local_settings.py" inside projectdir ]

Dynamically generate command bundles from directories with executables in them:

>>> from commandlib import Commands, Command, run
>>> postgres94 = Commands("/usr/lib/postgresql/9.4/bin/")
>>> run(postgres94.postgres)
[ Runs postgres ]
>>> run(postgres94.createdb)
[ Runs createdb ]

Use with path.py (or any other library where str(object) resolves to a string:

>>> from path import Path
>>> postgres94 = Commands(Path("/usr/lib/postgresql/9.4/bin/"))
>>> run(postgres94.postgres)

Hacking

If you want to hack, you can TDD with:

curl https://raw.githubusercontent.com/mitsuhiko/pipsi/master/get-pipsi.py | python
pipsi install hitch
cd tests
hitch init
hitch test . --settings tdd.settings

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

commandlib-0.1.1.tar.gz (4.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page