Mercurial > hg > config
view python/find_str_format.py @ 783:d564f7ad8294
this now works again, and without docker-machine; ephermal testing for now, ephemeral testing forever
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 24 Aug 2016 14:39:51 -0700 |
parents | 03b66f90916f |
children |
line wrap: on
line source
#!/usr/bin/env python # -*- coding: utf-8 -*- """ find str format options """ import argparse import os import subprocess import sys __all__ = ['main'] def find_keys(string): retval = set() while True: try: string.format(**{i:'' for i in retval}) return retval except KeyError as e: retval.add(e.message) def main(args=sys.argv[1:]): string = ' '.join(args) keys = find_keys(string) print ('\n'.join(sorted(keys))) if __name__ == '__main__': main()