Argparse Tutorial - Python 2023 (Creating Your First CLI)

Sdílet
Vložit
  • čas přidán 13. 09. 2024
  • 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

Komentáře • 21

  • @HitBoxMaster
    @HitBoxMaster Před rokem +3

    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 Před rokem +2

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

  • @vanmutt8644
    @vanmutt8644 Před rokem +2

    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

  • @ottomarjo7395
    @ottomarjo7395 Před rokem

    Oh thank you! This video helped me a LOT

  • @zluka7951
    @zluka7951 Před rokem

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

  • @nordgaren2358
    @nordgaren2358 Před rokem

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

  • @codewithpranoy
    @codewithpranoy Před rokem +9

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

  • @kabakiAntony
    @kabakiAntony Před rokem

    This is just awesome, great work.

  • @blevenzon
    @blevenzon Před rokem

    So useful and informative thank you so much

  • @grzegorzryznar5101
    @grzegorzryznar5101 Před rokem

    Really nice video! I like it!

  • @kaanyucel6294
    @kaanyucel6294 Před rokem

    nice teaching

  • @philtoa334
    @philtoa334 Před rokem

    Good , thx.

  • @yunoletmehaveaname
    @yunoletmehaveaname Před 6 měsíci

    Is there a part 2?

  • @mcdolla7965
    @mcdolla7965 Před rokem

    gr8 sir

  • @murphygreen8484
    @murphygreen8484 Před rokem +1

    Early club!

  • @Kornackifs
    @Kornackifs Před rokem

    great

  • @kadriaymen9201
    @kadriaymen9201 Před rokem

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

  • @mrQBS_
    @mrQBS_ Před rokem

    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?

  • @sya0802
    @sya0802 Před rokem

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