sargparse 0.2.1

A sane argument parsing library for Rust
Documentation
# SArgparse

SArgparse is a sane argument parsing library for Rust. It has the same API as python's argparse library which makes it quite relatable for people coming from a python environment.

## Why did I create this?

I know there are similar libraries that do the same thing, but I felt that their API was contorted and truly ugly, I wanted to make sure that people don't have to spend too much time figuring out how to use a basic arugment parser and so I took python's API and copied it in this library. 

## Add this to your project

This crate is published to <a href="https://crates.io/">crates.io</a>, and can be added to your project by simply adding this line to you `Cargo.toml` file:

```
sargparse = "0.2.0"
```

## Documentation

Refer to the <a href="https://github.com/frankhart2018/sargparse/blob/master/docs.md">documentation markdown</a> to get started.

## License

SArgparse is licensed under the <a href="https://github.com/frankhart2018/sargparse/blob/master/LICENSE">MIT license</a>.