Mercurial > hg > config
view python/find_str_format.py @ 729:fc4749433229
https://gist.github.com/adyliu/4494223
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 10 Dec 2014 10:08:31 -0800 |
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()