Stars Forks

Argin

A very simple command line argument parser.

  • Description
  • Getting Started
  • Help
  • Authors
  • Versions
  • License
  • Description

    Argin is a very simple library with only 5 functions but its still able to do all the expected argument parsing

    Getting Started

    Usage

    Example

    ./program [file] [-format (name)] would look like this: ```rust use argin::Argin;

    let arg = Argin::new(); arg.addpositionalarg(); arg.add_value("-format"); let args = arg.parse();

    let file = args.pos_arg.get(0).unwrap(); let format = arg.values.get("-format").unwrap(); ```

    Functions

    new: pub fn new() -> Argin addflag: pub fn add_flag(&mut self, flag: &str) addvalue: pub fn add_value(&mut self, name: &str) addpositionalarg: pub fn add_positional_arg(&mut self) parse: pub fn parse(&self) -> Argin

    Help

    Its common to forget .parse() at the end

    Authors

    Contributors names and contact info

    Versions

    License

    Currently there is no license, this may change in the future