Metadata-Version: 2.1
Name: parse_args
Version: 1.0.0
Summary: Parse Command Line Arguments From String
Home-page: UNKNOWN
Author: Pixelsuft
License: MIT
Description: # Pixelsuft Parse Arguments
        Parse Command Line Arguments From String
        # Example
        ```
        from parse_args import get as get_args
        print(str(get_args('   test.exe /f /m --file "lol lol.txt" --test 1 2')))
        ```
        Output:<br />
        ['test.exe', '/f', '/m', '--file', 'lol lol.txt', '--test', '1', '2']
        
Keywords: parse_args
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.5
Description-Content-Type: text/markdown
