Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs update in similar.rst #221

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/similar.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ supports Python3. Not every "yes" in this table would count as pro.
questionable practice); it does not derive the CLI arguments from the
function signature but entirely relies on additional decorators, while Argh
strives for the opposite.
* typer_ is a wrapper on top of `click`, which works with type hints instead
of decorators. This is very similar to argh's new 2024 design. Typer also
adds a lot of bells and whistles, and optional color support with `rich`,
so it is a full-featured package with several dependencies.

.. _argdeclare: http://code.activestate.com/recipes/576935-argdeclare-declarative-interface-to-argparse/
.. _argparse-cli: http://code.google.com/p/argparse-cli/
Expand All @@ -69,3 +73,4 @@ supports Python3. Not every "yes" in this table would count as pro.
.. _cement: http://builtoncement.com/2.0/
.. _autocommand: https://pypi.python.org/pypi/autocommand/
.. _click: https://click.palletsprojects.com
.. _typer: https://typer.tiangolo.com
Loading