Argparse Tutorial - Python 2023 (Creating Your First CLI)

Поділитися
Вставка
  • Опубліковано 20 гру 2024

КОМЕНТАРІ • 22

  • @AICodingAdventures
    @AICodingAdventures 2 місяці тому

    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
    @HitBoxMaster Рік тому +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!

  • @vanmutt8644
    @vanmutt8644 Рік тому +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

  • @abdooowd
    @abdooowd Рік тому +2

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

  • @ottomarjo7395
    @ottomarjo7395 Рік тому

    Oh thank you! This video helped me a LOT

  • @zluka7951
    @zluka7951 Рік тому

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

  • @grzegorzryznar5101
    @grzegorzryznar5101 Рік тому

    Really nice video! I like it!

  • @kabakiAntony
    @kabakiAntony Рік тому

    This is just awesome, great work.

  • @nordgaren2358
    @nordgaren2358 Рік тому

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

  • @blevenzon
    @blevenzon Рік тому

    So useful and informative thank you so much

  • @kaanyucel6294
    @kaanyucel6294 Рік тому

    nice teaching

  • @philtoa334
    @philtoa334 Рік тому

    Good , thx.

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

  • @dolla_shrey
    @dolla_shrey Рік тому

    gr8 sir

  • @yunoletmehaveaname
    @yunoletmehaveaname 9 місяців тому

    Is there a part 2?

  • @codewithpranoy
    @codewithpranoy Рік тому +9

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

  • @Kornackifs
    @Kornackifs Рік тому

    great

  • @aymen_x_kdr
    @aymen_x_kdr Рік тому

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

  • @murphygreen8484
    @murphygreen8484 Рік тому +1

    Early club!

  • @sya0802
    @sya0802 Рік тому

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