I want to modify the format of argparse help. Is there a way to do this? This is how it looks like:
-s [SERVER], --server [SERVER]
Expects address of server
But I want to change it something like this:
-s, --server <SERVER> Expects address of server
line_2 of help
Is it possible without overriding the whole help manually? or Is there any other pythonic way of doing this?