From 81bcc2b09478eb73d41b50968f97790d481193ef Mon Sep 17 00:00:00 2001 From: Peter Bittner Date: Fri, 1 Apr 2022 10:03:26 +0200 Subject: [PATCH] Add docopt-ng, the maintained fork of Docopt Docopt has been around for a few years with lots of PRs piling up and lacking maintenance in general. It was forked in 2019 and is now maintained by Jazzband. See https://github.com/docopt/docopt/issues/494 for more details. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 559adc4..3504e9d 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ - [Cement](https://github.com/datafolklabs/cement) : Cement is an advanced Application Framework for Python, with a primary focus on Command Line Interfaces (CLI). Its goal is to introduce a standard, and feature-full platform for both simple and complex command line applications as well as support rapid development needs without sacrificing quality. -- [Docopt](https://github.com/docopt/docopt) : 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. +- [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. - [Python-Fire](https://github.com/google/python-fire) : Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.