when you are calling your cli as a module which has a __main__.py entrypoint your help output shows like this:
Usage: __main__.py [Arguments] [Options]
which is not very descriptive. An alternative is preferred.
I don't know how click/typer/argparse manage this, but it could serve as inspiration.
when you are calling your cli as a module which has a
__main__.pyentrypoint your help output shows like this:which is not very descriptive. An alternative is preferred.
I don't know how click/typer/argparse manage this, but it could serve as inspiration.