X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=src%2Fpyutils%2Fargparse_utils.py;h=d1e28ba80b2ae758a7a9bfd41ba91fcadfada26a;hb=a2cb839d6932060ea00ad9b9d7c198ab310affe4;hp=f142d7e4a4adeb42c7e6f2d82031fc99ed732232;hpb=682fab38c65f3df70597b044c9b76c5dd81bf9d4;p=pyutils.git diff --git a/src/pyutils/argparse_utils.py b/src/pyutils/argparse_utils.py index f142d7e..d1e28ba 100644 --- a/src/pyutils/argparse_utils.py +++ b/src/pyutils/argparse_utils.py @@ -3,10 +3,15 @@ # © Copyright 2021-2022, Scott Gasch """These are helpers for commandline argument parsing meant to work -with Python's :mod:`argparse` module from the standard library. It -contains validators for new argument types (such as free-form dates, -durations, IP addresses, etc...) and an action that creates a pair of -flags: one to disable a feature and another to enable it. +with Python's :mod:`argparse` module from the standard library (See: +https://docs.python.org/3/library/argparse.html). It contains +validators for new argument types (such as free-form dates, durations, +IP addresses, etc...) and an action that creates a pair of flags: one +to disable a feature and another to enable it. + +See also :py:class:`pyutils.config.OptionalRawFormatter` which is +automatically enabled if you use :py:mod:`config` module. + """ import argparse