Just wanted to note something I forgot to mention in the video: if you want to set a help message for any arguments or options, you can pass `help="message"`! Wasn't worth re-recording the whole thing for, but thought I'd mention it (:
@awesomegamer3111 ай бұрын
This is a great video, thank you. I think I will definitely use this over argparse
@RuslanKovtun Жыл бұрын
I had terrible time with click's context: invoking subcommands. Click promises to handle arguments validation but doesn't do so for subcommand invocation with leads to reimplementation of entire validation logic and question "why would you use click in this case?". Since than I'm using argparse every single time, because you should type just a bit more but it is way more maintainable code.
@eduferreyraok2 ай бұрын
Now i know how to create a command line utility jaja
@auroragb Жыл бұрын
Really missing comparison to the built in argparse library and why use click over argparse
@willemvdk4886 Жыл бұрын
Seems like a great library! Very handy. I don't like the decorator stacking, though. It tickles my OCD, probably. One decorator is fine, two is pushing it, three or more is just foul.
@birdbeakbeardneck3617 Жыл бұрын
wow, i wasted many hours, thx for the tool👌👌
@Carberra Жыл бұрын
Yeah I tried to do some crazy stuff with argparse once and just using click is so much easier lmao