Professional CLI Applications with Click

preview_player
Показать описание
In this video, we learn how to build professional CLI applications using click in Python.

◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚 Programming Books & Merch 📚

🌐 Social Media & Contact 🌐

Рекомендации по теме
Комментарии
Автор

Beauty. I've been making my own application that does this as well as organize by projects and clients and wow this is going to speed things up considerably with the extra features like filtering.

admiralevan
Автор

I’ve been using argparse for simple apps, and docopt for more complex cases. This is an interesting, and possibly simpler, alternative. Thank you

Julie
Автор

Very cool package. Thanks for showing. You make an incredible job!

dohnot
Автор

This is what I was looking for. Thanks

Oleksii_Haivoronskyi
Автор

Thank you so much…, that i was lookin for…

arturocdb
Автор

This module seems good. BTW, I see some bugs inside delete_todo: it reads and deletes only from the default text file. It would be a good thing for the text file path to be set globally(ish) through another (new) function which will be like a sign-in. Anyway you got a like!

Victor_Marius
Автор

Thanks for the ‘how to’, it’s great! @NeuralNine Do you remember which PyCharm theme you’ve been using for this video?

vtech
Автор

Hey, why you switch from vim? Is it for python in particular? Just curious

darielsurf
Автор

Why you don't test your functions after you create them?

UrsuIrinel
Автор

I never knew this was the library that famous python programs were made

beronicous
Автор

But do we need always type the name of the python file? It is not possible to use the name of the function same we type commands like “rsync”, “mv”? Can’t we type only add_todo -n xxx ?

fvgoya
Автор

I was playing around with Click and trying to rewrite a CLI app for which I originally used Argparse. Somehow I couldn't figure out how to define an option that takes one or more arguments, like 'nargs="+"' in Argparse. I asked on several platforms and got the same answer, it's not possible by default. I still can't believe that Click doesn't offer such a common feature. For example, filename expansions performed by the shell, such as 'dir/**/*', cannot be handled by Click.

dzanful
Автор

used click to add a new custom command to my last flask app

simonlauer
Автор

Ok interesting why using click instead of tkinter ?
I dont understand why its good for?

tcgvsocg
Автор

When my telethon Crash Course, Voice chat feature

ShahJahan_NNN