Pretty good primer. Detailed but without unnecessary flourish. Also, very easy to understand and a very good speaking rhythm and voice. Great mini-class!
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
Very useful video! I like how concisely you mention all that is needed to build quite complex cli tools without much extra blah, blah.
Pretty good primer. Detailed but without unnecessary flourish. Also, very easy to understand and a very good speaking rhythm and voice. Great mini-class!
This guy is so underrated! His tutorials are awesome and useful! Great work dude 👍🏻
thank you for the video! waiting for the next one about argparse
Oh thank you! This video helped me a LOT
argparse is one of my favorite arg parsing library in any language, including Go, Rust and C#.
💯 Would recommend.
This is just awesome, great work.
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
Suggestions for part 2: create a command line interface with beautiful userinterface and generate boilerplate code.
Really nice video! I like it!
So useful and informative thank you so much
nice teaching
Good , thx.
gr8 sir
great
Is there a part 2?
It's good if you do simple libraries such as argparse , regex , ...even random
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?
Early club!
How To Add Multiple Commands? &
How to Add Commands To Variable Path?