Metadata-Version: 1.1
Name: parseoncolon
Version: 0.05
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
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
