Python Click Master Class

preview_player
Показать описание
Click is a powerful Python package for designing command-line interface (CLI) applications.
Рекомендации по теме
Комментарии
Автор

Helpful video, thanks Jasper! Regards from India

pratyushraizada
Автор

This was helpful seeing the groups actually coded out. It wasn't very well-documented. Appreciated!

RyanJohnson
Автор

Excellent Explanation, please seed more informations like that in the World

yassersayed
Автор

The args and options help for a nested command only gets displayed by --help if the parent commands have their args filled. That is a shortcoming of the module.

ElizaberthUndEugen
Автор

how clear course!Solved a problem that had been puzzling me for a long time!

hoox
Автор

Thanks! You had an excellent presentation. You need more subs, brotha.

childplease
Автор

to double up, just use function-chaining. Put your logic in a separate utility function. This way, you can add it to as many groups as you want; each gets its own function, but they all just call your utility function. Less code reuse.

nathantoulbert
Автор

Great video dude!! Also, can you please link the wallpaper!!!??? It looks sick!!!

adityakiran
Автор

Thank you for the video. It was a great and simple intro!

zokesackih
Автор

good work bro, ,, enjoyed it and learned from it a lot

mushinart
Автор

Can you elaborate on how options are used. eg: rm -rf [dir-name] how would you implement -rf?

Azaadia
Автор

Good video, thx! But also funny as you are explaining a cmdline/parameterization module for Python while demonstrating/running it in a shell that offers all this by default: PowerShell. Of course, I know Python is more general purpose and has somewhat prettier/stricter code, but PS is actually very similar in code/learning while also having some great unique features besides the object pipeline, like: smart-aliasing, abstract syntax tree and extensible type system.

matrixview