Argparse Tutorial - Python 2023 (Creating Your First CLI)

Welcome to your first argparse tutorial! Here we will be exploring the basics and everything you need to know to get start with using argparse in Python to create some cool Command Line Interfaces (CLI).
▶ Become job-ready with Python:
www.indently.io
▶ Follow me on Instagram:
/ indentlyreels

Пікірлер: 21

  • @vanmutt8644
    @vanmutt864410 ай бұрын

    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

  • @codewithpranoy
    @codewithpranoy Жыл бұрын

    Suggestions for part 2: create a command line interface with beautiful userinterface and generate boilerplate code.

  • @HitBoxMaster
    @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!

  • @abdooowd
    @abdooowd Жыл бұрын

    This guy is so underrated! His tutorials are awesome and useful! Great work dude 👍🏻

  • @zluka7951
    @zluka7951 Жыл бұрын

    thank you for the video! waiting for the next one about argparse

  • @ottomarjo7395
    @ottomarjo739511 ай бұрын

    Oh thank you! This video helped me a LOT

  • @kabakiAntony
    @kabakiAntony Жыл бұрын

    This is just awesome, great work.

  • @blevenzon
    @blevenzon Жыл бұрын

    So useful and informative thank you so much

  • @grzegorzryznar5101
    @grzegorzryznar5101 Жыл бұрын

    Really nice video! I like it!

  • @nordgaren2358
    @nordgaren2358 Жыл бұрын

    argparse is one of my favorite arg parsing library in any language, including Go, Rust and C#. 💯 Would recommend.

  • @philtoa334
    @philtoa334 Жыл бұрын

    Good , thx.

  • @kaanyucel6294
    @kaanyucel6294 Жыл бұрын

    nice teaching

  • @mcdolla7965
    @mcdolla7965 Жыл бұрын

    gr8 sir

  • @kadriaymen9201
    @kadriaymen9201 Жыл бұрын

    It's good if you do simple libraries such as argparse , regex , ...even random

  • @Kornackifs
    @Kornackifs10 ай бұрын

    great

  • @mrQBS_
    @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?

  • @yunoletmehaveaname
    @yunoletmehaveaname2 ай бұрын

    Is there a part 2?

  • @murphygreen8484
    @murphygreen8484 Жыл бұрын

    Early club!

  • @sya0802
    @sya0802 Жыл бұрын

    How To Add Multiple Commands? & How to Add Commands To Variable Path?