scriptharness 0.2.0

Creator: bradpython12

Last updated:

0 purchases

TODO
Add to Cart

Description:

scriptharness 0.2.0

Scriptharness*************Scriptharness is a framework for writing scripts. There are threecore principles: full logging, flexible configuration, and modularactions. The goal of *full logging* is to be able to debug problemspurely through the log. The goal of *flexible configuration* is tomake each script useful in a variety of contexts and environments.The goals of *modular actions* are a) faster development feedbackloops and b) different workflows for different usage requirements.Full logging============Many scripts log. However, logging can happen sporadically, and it'sgenerally acceptable to run a number of actions silently (e.g.,"os.chdir()" will happily change directories with no indication in thelog). In *full logging*, the goal is to be able to debug bustagepurely through the log.At the outset, the user can add a generic logging wrapper to anymethod with minimal fuss. As scriptharness matures, there will bemore customized wrappers to use as drop-in replacements forpreviously-non-logging methods.Flexible configuration======================Many scripts use some sort of configuration, whether hardcoded, in afile, or through the command line. A family of scripts written by thesame author(s) may have similar configuration options and patterns,but often times they vary wildly from script to script.By offering a standard way of accepting configuration options, andthen exporting that config to a file for later debugging orreplication, scriptharness makes things a bit neater and cleaner andmore familiar between scripts.By either disallowing runtime configuration changes, or by explicitlylogging them, scriptharness removes some of the guesswork whendebugging bustage.Modular actions===============Scriptharness actions allow for:* faster development feedback loops. No need to rerun the entirety of a long-running script when trying to debug a single action inside that script.* different workflows for different usage requirements, such as running standalone versus running in cloud infrastructureThis is in the same spirit of other frameworks that allow for discretetargets, tasks, or actions: make, maven, ansible, and many more.Running unit tests==================Linux and OS X-------------- # By default, this will look for python 2.7 + 3.{3,4,5}. # You can run |tox -e ENV| to run a specific env, e.g. |tox -e py27| pip install tox tox # alternately, ./run_tests.shWindows------- # By default, this will look for python 2.7 + 3.4 # You can run |tox -c tox_win.ini -e ENV| to run a specific env, e.g. |tox -c tox_win.ini -e py27| pip install tox tox -c win.ini

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.