The easiest way to use the command line with Python. Command Line Object Mapper. A library for building POSIX command line arguments, commands, and parameters. Very useful for Fabric tasks.
Project description
Clom is a Python Command Line Object Mapper. It’s intended to make generating generating commands and escaping arguments easier for command line interaction. It’s particularly useful when used with Fabric or subprocess.
Installation
Install with pip or easy_install.
pip install clom
Usage Examples
Import:
>>> from clom import clom
Build a command:
>>> clom.echo("Don't test me") "echo 'Don'\\''t test me'"
Augment with arguments:
>>> clom.ls.with_opts('-a', '-t', l=True).with_args('~/') 'ls -a -t -l '~/'' >>> clom.curl('http://dev.host', X='POST', data='message=hello') 'curl -X POST --data message=hello http://dev.host'
Use sub commands:
>>> clom.git.checkout('mybranch') 'git checkout mybranch'
Execute with ease:
>>> clom.ls.shell.all() ['clom', 'clom.egg-info', 'docs', 'tests'] >>> clom.git.status.shell('.').first() '# On branch master'
Iterate over results:
>>> for path in clom.ls.shell(): ... print path ... clom clom.egg-info docs tests
Handle errors:
>>> clom.vagrant.up.shell() Traceback (most recent call last): File "<console>", line 1, in <module> File "/Users/mthornton/Dropbox/Projects/python-clom/src/clom/shell.py", line 164, in __call__ raise CommandError(status, stdout, stderr, 'Error while executing "%s" (%s):\n%s' % (cmd, status, stderr or stdout)) CommandError: Error while executing "vagrant up" (3): No Vagrant environment detected. Run `vagrant init` to set one up.
Group commands:
>>> from clom import AND, OR >>> OR(clom.vagrant.up, clom.echo('Vagrant up failed')) '( vagrant up || echo 'Vagrant up failed' )' >>> OR(clom.vagrant.up, clom.echo('Vagrant up failed')).shell() <clom.shell.CommandResult object at 0x10c4a85d0> >>> print OR(clom.vagrant.up, clom.echo('Vagrant up failed')).shell() No Vagrant environment detected. Run `vagrant init` to set one up. Vagrant up failed
Re-use commands:
>>> vbox = clom.VBoxManage >>> vbox.list.runningvms 'VBoxManage list runningvms' >>> vbox.list.runningvms.shell.all() [''] >>> vbox.list.vms.shell.all() ['"Windows Base" {949ec0af-92d0-4140-8a6c-36301ca6f695}']
Background tasks:
>>> clom.VBoxHeadless.with_opts(startvm="Windows Base").background() 'nohup VBoxHeadless --startvm 'Windows Base' &> /dev/null &' >>> clom.VBoxHeadless.with_opts(startvm="Windows Base").background().shell() <CommandResult return_code=0, stdout=0 bytes, stderr=0 bytes> >>> vbox.list.runningvms.shell.all() ['"Windows Base" {949ec0af-92d0-4140-8a6c-36301ca6f695}']
Works great with fabric:
>>> from fabric.api import run, local >>> local(clom.ls) [localhost] local: ls clom clom.egg-info docs nohup.out tests ''
Can even create fab commands:
>>> clom.fab.test('doctest', 'unit').deploy('dev') 'fab test:doctest,unit deploy:dev' >>> clom.fab.with_opts('-a', hosts='dev.host').deploy.with_args('dev','test') 'fab -a --hosts dev.host deploy:dev,test'
See more examples and the API in the Clom Documentation
Running Tests
Test are run using pytest:
pip install pytest
python tests/runtests.py -v --doctest-modules
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file clom-0.7.5.tar.gz
.
File metadata
- Download URL: clom-0.7.5.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20560ecfe3226d5447922509cd360c73c22c66c1a0fa967cee6d266ab4250888 |
|
MD5 | 15e557fc0b870e5c8713a2f53e76d7a8 |
|
BLAKE2b-256 | f21d6e91287523a6812fa133f4edd4326b4f83fac91f317baae09bb70f1913ad |