Metadata-Version: 2.1
Name: typarse
Version: 0.1
Summary: A simple type-hint-based argument parsing library
Home-page: https://github.com/redtachyon/typarse
Author: RedTachyon
Author-email: ariel.j.kwiatkowski@gmail.com
License: GNU GPLv3
Description: # Typarse
        
        This is a small project born out of my frustration with simple argument parsing in Python.
        
        Not only do I have to instantiate some object whose name I can never remember, then I get way too many 
        function parameters to get them right... It's a mess. And I don't even need half the features.
        
        So this is an attempt at streamlining this process while simultaneously promoting some better type safety, by using the
        magic of Python type hints!
        
        Really all the magic here is happening in the BaseParser class. You just need to subclass it, add a few typed parameters,
        perhaps with some extra information in dictionaries... and you're done! For examples, just look at, well, examples.
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Provides-Extra: tests
