Mercurial > hg > config
view python/example/ymldiff.py @ 897:ba2630ce851b
update default branch for git
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 01 Aug 2022 16:40:53 -0700 |
parents | 48ea50d346de |
children |
line wrap: on
line source
#!/usr/bin/env python # XXX/TODO: # I have no idea where this dependency comes from; on one hand, it sounds # awesome! On another hand, it should, at the very least, be documented import datadiff import optparse import sys import yaml def main(args=sys.argv[1:]): usage = '%prog [options] from.yml to.yml' parser = optparse.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()