From b21d1353ab1fd4065fcfc298d50fe2f55524f91f Mon Sep 17 00:00:00 2001 From: 5j9 <5j9@users.noreply.github.com> Date: Mon, 10 Jun 2024 07:28:37 +0330 Subject: [PATCH] add Cyclopts --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c4bcc43..dc305f2 100644 --- a/README.md +++ b/README.md @@ -259,6 +259,8 @@ etc. - [Clize](https://github.com/epsy/clize) : An argument parser for Python. You can use Clize as an alternative to argparse if you want an even easier way to create command-line interfaces. +- [Cyclopts](https://github.com/BrianPugh/cyclopts) : Intuitive, easy CLIs based on python type hints. + - [Docopt](https://github.com/docopt/docopt) / [Docopt-NG](https://github.com/jazzband/docopt-ng) : Pythonic command line arguments parser, that will make you smile. docopt parses command-line arguments based on a help message. Don't write parser code: a good help message already has all the necessary information in it. - [jsonargparse](https://jsonargparse.readthedocs.io/) : Implement minimal boilerplate CLIs derived from type hints and parse from command line, config files and environment variables.