Skip to content

akesseler/Plexdata.ArgumentParser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Plexdata Argument Parser

The Plexdata Argument Parser is a library that allows users to easily parse the command line arguments given to a program. The main feature of this library is that users only need to define their own class representing all possible command line arguments. Thereafter, each of the properties is tagged by an attribute which describes the kind of the expected command line argument.

At runtime an instance of this pre-defined class is consigned to the Plexdata Argument Parser together with the actual command line arguments. After the parsing procedure, the class contains the values that have been assigned by command line.

Another feature of the Plexdata Argument Parser is the possibility of an automated generation of the help text. For this purpose the pre-defined class is tagged by a suitable set of attributes that include all information needed to create the help text.

For an introduction see the Docs under https://akesseler.github.io/Plexdata.ArgumentParser/.