Mercurial > hg > config
view python/find_str_format.py @ 795:171d85c69553
not sure what this is for but it looks obsolete
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Fri, 28 Oct 2016 10:41:54 -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()