Metadata-Version: 1.0
Name: parseoncolon
Version: 0.08
Summary: Simple parser of a strings where would keys and values are separated by a colon(:)
Home-page: https://github.com/eanxgeek/parseoncolon
Author: Eric Sammons
Author-email: elsammons@gmail.com
License: GPL
Description: A simple parser that will separate a string of would be arguments in the form of key:value
        where key and value are strings separated by a colon.  This should work for any number of pairs.
        
        Example:
        
        $ example.py key1:value1 key2:value2 key3:this is value3
        
        Would result in a dictionary of:
        
        d { 'key1' : 'value1'
            'key2' : 'value2'
            'value3 : 'this is value3'
          }
Keywords: parse,strings,colon
Platform: linux
Platform: osx
Platform: win32
