I am using the click
lib.
In my code , sometimes I want to print help msg , But the only way I know is :
python xxx --help
But I want to print the help msg in my code using a certain function , for example:
click.print_help_msg()
Is there a function like this ?
AttributeError: 'name' object has no attribute 'allow_extra_args'
– Senseless