Build a Python CLI with argparse

Publicado el: 08 febrero 2022
en el canal de: Alfredo Deza
869
19

The `argparse` module is part of the Python standard library and meant to help you build robust command line tools. Once you need flags, switches, values, or positional arguments, it is very difficult to achieve that without using a framework.

Follow the GitHub repo with sample code: https://github.com/alfredodeza/argpar...

In this case, `argparse` can help build all you need to handle inputs in the terminal. We'll see how a single file named `size.py` that calculates file sizes can make use of `argparse` to handle the input in the terminal. Then, we will cover how error handling is done automatically when the expectations from `argparse` aren't met. And finally, we'll go through some of the help menu options that construct the body of the help output.

→ Why would you want to use argparse?
Since `argparse` is part of the Python standard library, there is no need for you to define or install any external dependencies. You are ensuring that any Python installation in any system will work correctly out of the gate.
A very basic Python CLI tool without dependencies using the argparse module

→ Next steps
Now that you know how to enhance a Python script into a more powerful one with `argparse`, you can try out other frameworks like the Click framework or something much simpler by using the `sys` module. I have examples and guides for the sys.argv module (https://github.com/alfredodeza/basic-...) and for using the Click framework (https://github.com/alfredodeza/click-....

00:00 Introduction
00:26 Basic script using sys.argv
01:36 Import argparse and start converting
01:53 Create a function for argparse
03:06 How argparse parses args and maps them to the script
04:32 Use parsed arguments in your script
04:57 Update to use the main() function with argparse
05:26 Error reporting with argparse
05:58 Help menu for free


En esta página del sitio puede ver el video en línea Build a Python CLI with argparse de Duración hora minuto segunda en buena calidad , que subió el usuario Alfredo Deza 08 febrero 2022, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 869 veces y le gustó 19 a los espectadores. Disfruta viendo!