view python/example/find_str_format.py @ 806:5364185dcb9b

i dont use this anywhere yet; lets assume that i wont until i actually will be able to develop on it
author Jeff Hammel <k0scist@gmail.com>
date Fri, 28 Oct 2016 17:07:24 -0700
parents 8275fa887f2b
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()