https://github.com/inv2004/argparse_nim_examples
https://github.com/inv2004/argparse_nim_examples
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/inv2004/argparse_nim_examples
- Owner: inv2004
- Created: 2025-02-02T21:53:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-02T22:35:00.000Z (over 1 year ago)
- Last Synced: 2025-02-02T23:23:21.359Z (over 1 year ago)
- Language: Nim
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```
https://github.com/docopt/docopt.nim 2y # you have to use parseInt($args[""]) and parse each param individually. not multilevel
https://github.com/onelivesleft/simple_parseopt 4y # did not find how to parse enum commands. not multilevel
https://github.com/squattingmonk/blarg 3y # it is like std parseopt
https://github.com/amnr/getopty 1y # it is like std parseopt
https://github.com/Xe/argument_parser/ 10y # not multilevel. Everything needs a lot of manual code
https://github.com/fenekku/commandeer 8y # looks ok, but cannot run it
https://github.com/c-blake/cligen 1w # did not find a way to pass arg without `-` prefix
https://github.com/iffy/nim-argparse 5m # multilevel is good. no types. Mixing optional args with commands is not supported
https://github.com/madprops/nap 8m # did not find commands support
https://bitbucket.org/maxgrenderjones/therapist 1y # *everything looks good
https://github.com/casey-SK/commandant 4y # *easy creation, but all values are global. int just calls parseInt. does not suppose sub-subcommand
https://github.com/HTGenomeAnalysisUnit/nim-simpleargs 3y # cannot compile. not types
https://github.com/AinTEAsports/nclap 2w # no types, not clear how to work with arguments
```