Mercurial > hg > config
view python/ymldiff.py @ 220:192015ae3e4c
add ymldiff.py, requires datadiff and pyyaml to be installed
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 08 May 2012 08:26:55 -0700 |
parents | |
children | d213d21e371b |
line wrap: on
line source
#!/usr/bin/env python import datadiff imoprt optparse import sys import yaml def main(args=sys.argv[1:]): usage = '%prog [options] from.yml to.yml' parser = OptionParser(usage=usage) options, args = parser.parse_args() if len(args) != 2: parser.error("Please supply two .yml files") # compare the output output0 = yaml.load(file(args[0])) output1 = yaml.load(file(args[1])) diff = datadiff.diff(output0, output1, context=1, fromfile=args[0], tofile=args[1]) print diff if __name__ == '__main__': main()