Argument Parsing with argparse in Python

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ม.ค. 2025

ความคิดเห็น • 16

  • @RameshBaburbabu
    @RameshBaburbabu ปีที่แล้ว +5

    🎯 Key Takeaways for quick navigation:
    00:00 🚀 Introduction to argparse in Python
    - Understanding the purpose of the video: learning how to build CLI applications and parse arguments using the argparse package in Python.
    - Overview of command line applications and their common structure, similar to tools like 'curl' or 'grep'.
    - Brief explanation of the plan to build a simple CLI tool named "Adder" that performs addition with various options.
    01:11 🧰 Setting up argparse and defining positional arguments
    - Importing the argparse package and creating an argument parser instance.
    - Demonstrating the addition of a positional argument ('greeting') with a description for user interaction.
    - Showing how to parse the provided arguments and print the results.
    04:21 🎯 Adding flags and options for flexibility
    - Introducing the concept of flags and options, with an example using a float type and multiple arguments.
    - Discussing the use of '*' for an unlimited number of arguments and demonstrating the sum of provided numbers.
    - Highlighting the ability to limit choices for an argument, using the 'verbosity' argument with integer type and predefined choices.
    08:55 📂 Advanced options: File flag and handling true/false flags
    - Briefly mentioning the possibility of adding a file flag and storing results in a file instead of printing.
    - Demonstrating the use of a boolean flag ('debug') with the 'store true' action for enabling debug mode.
    - Providing a simple example of using debug mode to measure and print the execution time of the program.
    10:56 🎬 Conclusion and Call to Action
    - Summarizing the key points covered in the video.
    - Encouraging viewers to like, comment, subscribe, and hit the notification bell.
    - Expressing gratitude for watching and signing off.

  • @PoeLemic
    @PoeLemic ปีที่แล้ว +2

    Wow, with this tutorial, it seems very simple to send in parameters to Python apps. This really helps me with learning python. I've been trying to build up my skills. This really helps.

  • @RazrBurn
    @RazrBurn ปีที่แล้ว +11

    Please increase the font size. This is so hard to read on mobile.

  • @paulthomas1052
    @paulthomas1052 ปีที่แล้ว

    Thanks for another great demo.

  • @endless_paradigm
    @endless_paradigm ปีที่แล้ว

    This is great for understanding. An alternative would be to use click package.

  • @daburrito5296
    @daburrito5296 ปีที่แล้ว

    Literally looking into this a couple of hours ago, it's crazy that you just so happened to drop a tutorial today. Thanks for everything you do!

  • @ankushbhagatofficial
    @ankushbhagatofficial ปีที่แล้ว

    What a great tutorial ❤❤

  • @מאירכהן-ח3צ
    @מאירכהן-ח3צ 7 หลายเดือนก่อน

    Amazing lessons thanks

  • @dmitrychuveev6610
    @dmitrychuveev6610 ปีที่แล้ว

    Thank you for this tutorial.

  • @pnachtwey
    @pnachtwey หลายเดือนก่อน

    There are choices, 0,1,2. Which is the default?

  • @llllllllllllllllllllllllll4345
    @llllllllllllllllllllllllll4345 ปีที่แล้ว

    thank you !!!

  • @learnenglishcomputer2644
    @learnenglishcomputer2644 11 หลายเดือนก่อน

    can you help me predict the next series of numbers if i give you the previous 30 numbers by using python and ML? please

  • @learnenglishcomputer2644
    @learnenglishcomputer2644 11 หลายเดือนก่อน

    can you help me predict the next series of numbers if i give you the previous 30 numbers i want each number in the series compared to from the next series by using python and ML deep L ? please

  • @zorrcc
    @zorrcc ปีที่แล้ว

    Great tutorial, I bet that you will gain more audience soon 😁

  • @leftblank5315
    @leftblank5315 ปีที่แล้ว +1

    Use click, hell lota easier

  • @asdjzcx2619
    @asdjzcx2619 ปีที่แล้ว +1

    It is better and more clear then using sys.argv