Very useful video! I like how concisely you mention all that is needed to build quite complex cli tools without much extra blah, blah.
@HitBoxMaster Жыл бұрын
Pretty good primer. Detailed but without unnecessary flourish. Also, very easy to understand and a very good speaking rhythm and voice. Great mini-class!
@abdooowd2 жыл бұрын
This guy is so underrated! His tutorials are awesome and useful! Great work dude 👍🏻
@vanmutt8644 Жыл бұрын
Think what is being referred to as positional argument are the options or flags. parser.add_argument('filename') # positional argument parser.add_argument('-c', '--count') # option that takes a value parser.add_argument('-v', '--verbose', action='store_true') # on/off flag
@zluka79512 жыл бұрын
thank you for the video! waiting for the next one about argparse
@ottomarjo7395 Жыл бұрын
Oh thank you! This video helped me a LOT
@kabakiAntony Жыл бұрын
This is just awesome, great work.
@grzegorzryznar51012 жыл бұрын
Really nice video! I like it!
@codewithpranoy2 жыл бұрын
Suggestions for part 2: create a command line interface with beautiful userinterface and generate boilerplate code.
@nordgaren23582 жыл бұрын
argparse is one of my favorite arg parsing library in any language, including Go, Rust and C#. 💯 Would recommend.
@blevenzon2 жыл бұрын
So useful and informative thank you so much
@kaanyucel6294 Жыл бұрын
nice teaching
@dolla_shrey2 жыл бұрын
gr8 sir
@mrQBS_ Жыл бұрын
if I want to do some more than one operation on CLI and link it for example with bnb-chain system, how can I do it?
@philtoa3342 жыл бұрын
Good , thx.
@murphygreen84842 жыл бұрын
Early club!
@yunoletmehaveaname10 ай бұрын
Is there a part 2?
@aymen_x_kdr2 жыл бұрын
It's good if you do simple libraries such as argparse , regex , ...even random
@Kornackifs Жыл бұрын
great
@sya08022 жыл бұрын
How To Add Multiple Commands? & How to Add Commands To Variable Path?