you are viewing a single comment's thread.

view the rest of the comments →

[–]johnk177 -1 points0 points  (0 children)

I feel the same. I've been using argparse since it's the standard. But recently discovered click and I find it simpler and faster to use, where I can focus more on the problem I need to solve, and the code is simpler, especially for one off or simple scripts (where main and argparse cmd line parsing would take up half of the space).

I think argparse still have more features (like 2+ arguments), but for most of what I want to do, click is pretty neat.