У нас вы можете посмотреть бесплатно Build a Python CLI with argparse или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
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