Just to recap: * Every value in Python is an object. * Functions and classes are objects. * Function definitions and class definitions are best thought of as special kinds of assignment statements, not as declarations; there are no declarations as such in Python. Decorators work with classes as well, not just functions. Also worth adding: * Every object is an instance of a class. Note this also applies to classes, since they are objects.
Python Fonctions and Classes are C classes... Python is an alphabet soup of C classes and objets and slowly interpreted🍝 spaghetti codes but somehow compréhensive
Every object is an instance of a class, even classes since they are objects. According to this statement, classes are objects, instances of a class which is itself an object, instance of a class which is also itself an object, instance of a class... You see where I'm going. What's the highest point? There must be a class that isn't an instance of a higher-order class, or it'll repeat infinitely.
I've read about decorators a dozen times. In books, tutorials, documentation of frameworks, etc. This is honestly the first time I actually understand the concept. Best explenation ever. Thanks Tim!
When I saw function decorators first time I thoght that it's the easiest theme that I've ever seen, but then I understood how useful and complicated they are. And now, I can say that this tutorial gave me the concept of decorators.
This is what education used to be like, even the most complex topics, found in the books I own about physics etc. published in the 1950's and before. Start with small chunks of the preliminary concepts. Then put them together slowly, simply and clearly, demonstrating along the way. Then build and finally explain a complex idea. Well done Tim and thank you!
I tried to understand Decorators from watching different videos. But trust me I used to be very confused after finishing the video. But, You made me understand Decorators very easily...Thank you.
this is the first video I watched on the topic and understood it straight away, I think I was lucky as the other comments say they've read lots of documents and watched other videos without understanding it, but seriously dude your explanation and the way you speak makes it easy to follow along
I watched this video a year ago, created some decorator functions as snippets that I can use later. Now after a year I needed them so I used the snippets but honestly I forgot how they actually work but saved a link to your video. Watched this again and after 15 mins I understand everythingI need. I really appreciate your work Tim, I honestly think that there is absoutely nothing I could add or remove from your content like they go concisely from zero to a decent level of understanding in really short time.
This is by far the most explanatory video for decorators I have seen on RUclips. It does not have the view count to match up to how helpful and insightful this video is.
Been trying to understand decorators, args, and kwargs for years. No clue how you were able to make this work so quickly and easily but I REALLY appreciate you!
Great explanation. I really appreciated that you gave a few concrete examples where decorators are useful instead of cutting off after explaining the functionality.
What an explanation, being a technical lead and doing automation in python for years..I would say my fundamentals are stronger now after going through this video..amazing work :)
I like the way the video starts with passing function as argument and print function address, very detailed and well explained for a beginner in Python like me. Thank you very much
thank you so much because after i spend hours of watching tutorials and reading websites i found your video and from the first time i watched your video this consept flew into my mind
Let me add a remark here. Decorators are truly awesome because they allow modifying the function(s) on the go without rewriting them. However, what if you have a loop where the function is called, and the decorator is set to print out value every time. You will end up with a hundred printed results? To save yourself from it, do a little trick: inside the wrapper, before the return statement, declare wrapper.original = func. If you just call the function, it will come out decorated. If you need the original function, call func.original(), and the wrapper will return it untouched.
Very grateful for your explanation. Decorators always confused me but through your detailed explanation and three very well described examples, I am more confident about decorators, thank you.
This company has a shady history. They hijacked an autocomplete plug-in n defaulted users to upload their code to their servers in the backend. I ended up uninstalled autocomplete python n moved away from atom altogether. I bet they r pulling a similar trick here. So thanks but no thanks, I’m happy with Jedi n if I ever need an intelligent autocomplete tool I’ll build my own.
The minute I started Kite I knew I'd better switch it off. Not a very good thing when you forget syntax (still learning). Decorators are so confusing - trying hard to understand this stuff, watching this video every evening ;) (best video on decorators on yt, me too dumb to catch it)
Maybe it's just me, but the presenter using variables 'f, f1, f2' makes things visually look like a blur and took me quite a while to even grasp what he was doing. I had to use more distinct words to make things easier such as ... first_function, second_function, pass_any_function def first_function(): print('from inside FIRST ') def second_function(pass_any_function): print('inside SECOND ######') pass_any_function() pass_any_function() pass_any_function() print('inside SECOND =========') first_function() print('inside SECOND =========') second_function(first_function) def third_function(): print('inside THIRD @@@@') first_function() first_function() first_function() third_function()
IKR, almost all of the tutorials I watch use similar names ex. Tire, Tires. They need to be more creative with those instead of adding to the confusion.
Bro, Ive never seen a video tutorial where every second was clean and very precise such as yours!! Not to mention u updated my knowledghe on functions and decorators on to a whole new lelvel. The examples are not only great but usefull for anybody, also great tricks for our codes.. Love you bro GREAT JOB!!!!
Explained and described on a deeper level that i would think we all want to grasp to truly understand how the codes are working. Great vid. This is my first finding of your vids, now ill be looking for the rest of your stuff. Greatly appreciate anyone who adds quality contributions to education.
This is sooo goood. I was watching a udemy course on Python and couldnt understand the concept of decorators after multiple replays 😂 I am glad i watched this video. Thank You So Much:)
Very clear, precise and thorough presentation on decorators. Possibly the clearest I’ve seen online or in written form. I don’t think the concept of a decorator is a particularly intuitive one, even though Python bills itself, and usually is an intuitive programming language.. Seems to me that the Python team manufactured a construct that allows one to modify the behavior of a function without modifying the function itself. I’m still not sure that a decorator gives us something we couldn’t just as easily accomplished with just a few additional lines of code. However, still an excellent presentation. Thanks!
This is the best explanation of decorators I have seen, thank you. Kite is an interesting idea & I will try it out, but the 'Pro' version is far too expensive.
Never thought an explanation like "when we call f, we actually use the variable f set to f1 with the parameter f" could be so clear. Thank you, that was a really nice lesson
Dear all, thank for the amazing video. Really well explained. I would like to ask you a specificity regarding decorator functions. In some use cases I have come across, I noticed that the __init__ method (of some user defined classes) is used as a decorator. Nevertheless, I couldn't figure out why or under which circumstance one should use it. Would you be so kind as to shed some light on this regard? Sincerely,
Loved the examples at the end. I'm trying to figure out some best practices and cool use cases for decorators and it's really hard to find good information on when to use decorators and potential anti-patterns.
Awesome video! At 5:38, you would expect f1(f)() to just be equal to wrapper itself (without memory of the origin f passed into f1). The fact that f is remembered as an argument is a really important nuance called closure. That probably would have taken up more than the 15 minutes though
This is really great, the only thing I'm not quite understanding is, how to use the function itself as well. in the timing example, what if I just want the normal function as well - do I have to copy and paste the entire function definition and change the name?
Regarding the 'weird behaviour' and the example of f1(f)() @6:15, if this was the goal without the funny brackets syntax, why wouldn't you redefine the definition of f1, such that it returns a called wrapper function, i.e. wrapper() instead of wrapper? That certainly eliminates the need to write f1(f)(). If someone could clarify... Besides that, very nice explanation.
Don't know if you are still interested, but here's the reason I found. The reason is arguments passed to a function. Let's say you want to pass f(2,3), If you call wrapper() then you have to provide those arguments as well but if you write wrapper(*args) it'll give error as arguments aren't passed inside the function f1. That's the reason we use that syntax so that we can pass arguments later.
Just to recap:
* Every value in Python is an object.
* Functions and classes are objects.
* Function definitions and class definitions are best thought of as special kinds of assignment statements, not as declarations; there are no declarations as such in Python.
Decorators work with classes as well, not just functions. Also worth adding:
* Every object is an instance of a class.
Note this also applies to classes, since they are objects.
Python Fonctions and Classes are C classes... Python is an alphabet soup of C classes and objets and slowly interpreted🍝 spaghetti codes but somehow compréhensive
use yield
It's just a function pointer lmao. You sound really naïve when you call everything an object
@@Artaxerxes. what's a function pointer
Every object is an instance of a class, even classes since they are objects.
According to this statement, classes are objects, instances of a class which is itself an object, instance of a class which is also itself an object, instance of a class...
You see where I'm going.
What's the highest point? There must be a class that isn't an instance of a higher-order class, or it'll repeat infinitely.
I've read about decorators a dozen times. In books, tutorials, documentation of frameworks, etc. This is honestly the first time I actually understand the concept. Best explenation ever. Thanks Tim!
Same here...
++ amazing explanation
Same here.
exactly, same to me.
the best ad for kites. have been seeing the ad everywhere but never wanted it. now i'm liking it
I looked so many videos, all of them were confusing. But this one just the perfect content I wanted. Thanks for this awesome video
So glad you found it helpful! Hope you are able to benefit from our other tutorials as well :)
@@KiteHQ Yeah i bought a python course still here watching your videos.
Agree!
Same here! So well explained.
When I saw function decorators first time I thoght that it's the easiest theme that I've ever seen, but then I understood how useful and complicated they are. And now, I can say that this tutorial gave me the concept of decorators.
This is what education used to be like, even the most complex topics, found in the books I own about physics etc. published in the 1950's and before. Start with small chunks of the preliminary concepts. Then put them together slowly, simply and clearly, demonstrating along the way. Then build and finally explain a complex idea. Well done Tim and thank you!
Wow this Kite AI thingy is really advanced, it does a darn good impersonation of that Tim fellow.
So the man voice in this video is generated by AI with impersonating Tim??
Tim explains things so well. If he made an advanced python course i would literally "shut up and take my money".
I tried to understand Decorators from watching different videos. But trust me I used to be very confused after finishing the video. But, You made me understand Decorators very easily...Thank you.
Hands down the best explanation of Python decorators in the whole YT!
this is the first video I watched on the topic and understood it straight away, I think I was lucky as the other comments say they've read lots of documents and watched other videos without understanding it, but seriously dude your explanation and the way you speak makes it easy to follow along
I watched this video a year ago, created some decorator functions as snippets that I can use later. Now after a year I needed them so I used the snippets but honestly I forgot how they actually work but saved a link to your video. Watched this again and after 15 mins I understand everythingI need. I really appreciate your work Tim, I honestly think that there is absoutely nothing I could add or remove from your content like they go concisely from zero to a decent level of understanding in really short time.
This is by far the most explanatory video for decorators I have seen on RUclips. It does not have the view count to match up to how helpful and insightful this video is.
true but have you been able to apply it in a project?
I see so many videos.but not clear how the function works .This is life changing.Krishna bless u sir
The best explanation of decorators I've seen so far on youtube!
Been trying to understand decorators, args, and kwargs for years. No clue how you were able to make this work so quickly and easily but I REALLY appreciate you!
Great explanation. I really appreciated that you gave a few concrete examples where decorators are useful instead of cutting off after explaining the functionality.
hey, it's tech with tim!!
my first reaction at reading your comment was like, "duhh yes it is", then I read the channel name and was like WHAT??...
Kite sponsors his videos
I have seen lots of videos about Decorators. But Honestly It's the only video which helps me to understand the topic
Best part of the video. Tim: ‘if you’ve understood this, you’re definitely well on your way to becoming an expert in python.’
That was the worst part for me. I didn't understand
I love how to the point this video is to the point. No fluff, you just start explaining. Reminds me of Miziziziz tutorials.
There's literally a minute of intro+ad
Nope Mizziziziz doesn't put a minute of intro and ad at the beggining of his videos.
@@MiguelAngel-fw4sk you're right
Absolutely the best , most concise tutorial on decorators - thank you!
What an explanation, being a technical lead and doing automation in python for years..I would say my fundamentals are stronger now after going through this video..amazing work :)
This is by far the clearest and most intuitive explanation of the concept of decorators I've seen. Thanks for sharing
I've had problems with decorators for a long time. This video finally solved it. Thanks ;)
That log decorator is so powerful omg. Thank you for this amazing explanation
Watched many videos on decorators but this is where my search ended.Excellent explanation!
I still have some work to do with Decorators, but largely thanks to You I finally think
I've got it.
I like the way the video starts with passing function as argument and print function address, very detailed and well explained for a beginner in Python like me. Thank you very much
this has to be the best explanation to decorators that I have seen. Amazing.
I only had to pause at the start and look at your code for a few seconds to figure out where I was messing up. Thanks!
thank you so much because after i spend hours of watching tutorials and reading websites i found your video and from the first time i watched your video this consept flew into my mind
This is what I wanted to see, someone who can explain Decorators in a easy and logic way..
Thank you
This is the best explanation I found over internet
Let me add a remark here.
Decorators are truly awesome because they allow modifying the function(s) on the go without rewriting them. However, what if you have a loop where the function is called, and the decorator is set to print out value every time. You will end up with a hundred printed results?
To save yourself from it, do a little trick:
inside the wrapper, before the return statement, declare wrapper.original = func.
If you just call the function, it will come out decorated. If you need the original function, call func.original(), and the wrapper will return it untouched.
thanks. Nice trick
Very grateful for your explanation. Decorators always confused me but through your detailed explanation and three very well described examples, I am more confident about decorators, thank you.
You actually deserve Nobel prize... Explanation to details
you are the only one explained the decorator clearly!!!
hey, it's Tech With Tim :O
I was legit surprised
probably this guy copied tech with tim content....
This company has a shady history. They hijacked an autocomplete plug-in n defaulted users to upload their code to their servers in the backend. I ended up uninstalled autocomplete python n moved away from atom altogether. I bet they r pulling a similar trick here. So thanks but no thanks, I’m happy with Jedi n if I ever need an intelligent autocomplete tool I’ll build my own.
@@denysivanov3364 "this guy" is a kind-of well known code-completion company. Can be used as a plugin for VSCode.
@@jhonshephard921 I doubt that plugin copied Tech with Tim video =)
I thought the voice sounded familiar.
I really loved the way you explained about the decorators. 😊
Nicely done. This is the first time I really paid attention to decorators
thanks for the perfect quality. Content, Voice, Speed, ...Just everything perfect
So glad to hear that!
Tech With Tim on RUclips is explaining this!
I've never seen that before. I knew functions were objects but I never thought to use them like that. Very well explained.
AMAZING!!! You also explained so well why *args and **kwargs are so useful and important, thank you so much!
Visualization really helps here. The f1(f) was what sparked my brain there
Thank you for this easy to follow tutorial. For me it just clicked when you showed us the examples.
this the best explanation about python decorator ever
was confused earlier before watching it but you covered it in the best way... really loved your video
Finally I understood the meaning of Decorators, thank you Kite :-) :-)
Explanation of how to use it and inner working, business as usual. The explanation of when and why to use it, brilliant!
You are awesome. Took me so many videos to get to this video. Now I finally understand Decorators. You make it so easy ! Thank you so much !
As of yet the best and readable explanation of the decorators in the net. Keep going, Tim, you do it best.
The minute I started Kite I knew I'd better switch it off. Not a very good thing when you forget syntax (still learning). Decorators are so confusing - trying hard to understand this stuff, watching this video every evening ;) (best video on decorators on yt, me too dumb to catch it)
Maybe it's just me, but the presenter using variables 'f, f1, f2' makes things visually look like a blur and took me quite a while to even grasp what he was doing. I had to use more distinct words to make things easier such as ... first_function, second_function, pass_any_function
def first_function():
print('from inside FIRST ')
def second_function(pass_any_function):
print('inside SECOND ######')
pass_any_function()
pass_any_function()
pass_any_function()
print('inside SECOND =========')
first_function()
print('inside SECOND =========')
second_function(first_function)
def third_function():
print('inside THIRD @@@@')
first_function()
first_function()
first_function()
third_function()
IKR, almost all of the tutorials I watch use similar names ex. Tire, Tires. They need to be more creative with those instead of adding to the confusion.
Bro, Ive never seen a video tutorial where every second was clean and very precise such as yours!! Not to mention u updated my knowledghe on functions and decorators on to a whole new lelvel.
The examples are not only great but usefull for anybody, also great tricks for our codes..
Love you bro GREAT JOB!!!!
Go check out the maker of this videos own channel for more by him @ TechWithTim
Explained and described on a deeper level that i would think we all want to grasp to truly understand how the codes are working. Great vid. This is my first finding of your vids, now ill be looking for the rest of your stuff. Greatly appreciate anyone who adds quality contributions to education.
Thank you for all the examples. I was struggling with this but now its more clear.
Finally a clear explanation of decorators! Many Thanks! :))
This is sooo goood. I was watching a udemy course on Python and couldnt understand the concept of decorators after multiple replays 😂 I am glad i watched this video.
Thank You So Much:)
Thank you so much! I was struggling to understand this concept by reading resources online.
You made me begin using Kite. Thanks!
Bravo! This was REALLY well done. You nailed it.
Was looking for interior design tips for my new snake and ended up here.
Perfect explanation. Looked at other articles and videos before but still had the confusion. This video taught the concept very clear.
Best decorator video I've seen so far. Thanks!
Very concise with good examples. Thanks for the brown bag!
Best video to understand Decorators. Really awesome explanation.
Very clear, precise and thorough presentation on decorators. Possibly the clearest I’ve seen online or in written form.
I don’t think the concept of a decorator is a particularly intuitive one, even though Python bills itself, and usually is an intuitive programming language.. Seems to me that the Python team manufactured a construct that allows one to modify the behavior of a function without modifying the function itself.
I’m still not sure that a decorator gives us something we couldn’t just as easily accomplished with just a few additional lines of code.
However, still an excellent presentation. Thanks!
This is a really good decorator tutorial, understood it perfectly and helped me understand other concepts. Thank you!
This is the best explanation of decorators I have seen, thank you. Kite is an interesting idea & I will try it out, but the 'Pro' version is far too expensive.
很实用,面试时候对装饰器我解释的总是不太好,看了你的视频,思路清晰了。
Never thought an explanation like "when we call f, we actually use the variable f set to f1 with the parameter f" could be so clear. Thank you, that was a really nice lesson
Thanks for your video, Now I got confidence on decorator never before. really appreciate well explained
Loved it. Quick, easy and accurate!
perfectly explained, simple, easy and awesome, thank you!
Clean, Clear and Precise. Thanks
I'm not a programmer, but I could predict the issues, that means you did a good job explaining.
best lecture on decorators👍👍👍👍👍
Dude, you really know how break concepts down so that idiots like me can understand them. Amazing video
took me a full day to grasp this, thanks.
Dear all, thank for the amazing video. Really well explained.
I would like to ask you a specificity regarding decorator functions. In some use cases I have come across, I noticed that the __init__ method (of some user defined classes) is used as a decorator. Nevertheless, I couldn't figure out why or under which circumstance one should use it.
Would you be so kind as to shed some light on this regard?
Sincerely,
Loved the examples at the end. I'm trying to figure out some best practices and cool use cases for decorators and it's really hard to find good information on when to use decorators and potential anti-patterns.
Excellent explanation of the topic with good pace, clarity, and concise.
superb explanation. topic was kinda confusing but not anymore :)
7:51 No, f1 only gets executed once, when f is defined, not every time it is called. Every time you call the result, it is the wrapper that is called.
I noticed that too, this should definitely be fixed
We're already 2 months later though...
This videos was so helpful to me. I have watched lots of videos before I got to this detailed explanation. Thank you so much!
thank you man, this video helped a lot to understand the decorators
Thanks, helped me get python decorators, at beginner level
thanks. I love your examples, the ones that show how decorators might be used in real world situations. Very helpful
Awesome video! At 5:38, you would expect f1(f)() to just be equal to wrapper itself (without memory of the origin f passed into f1). The fact that f is remembered as an argument is a really important nuance called closure. That probably would have taken up more than the 15 minutes though
This is really great, the only thing I'm not quite understanding is, how to use the function itself as well. in the timing example, what if I just want the normal function as well - do I have to copy and paste the entire function definition and change the name?
So clear. One of the best explanation on Python decorator 👍
I am grateful thank to you I can understand and use decorators in Python!
Great explanation of what I've thought was a convoluted subject.
I thank the world for having this video. God bless you
Great and useful, Tim! Appreciated.
"You're definitely well on your way to becoming an expert in Python" - ngl, I nearly shed a tear.
Mind Blowing and perfect explanation. Thank you so much
great job. I makes me feel I actually understood everything 😀
Regarding the 'weird behaviour' and the example of f1(f)() @6:15, if this was the goal without the funny brackets syntax, why wouldn't you redefine the definition of f1, such that it returns a called wrapper function, i.e. wrapper() instead of wrapper? That certainly eliminates the need to write f1(f)(). If someone could clarify...
Besides that, very nice explanation.
Don't know if you are still interested, but here's the reason I found. The reason is arguments passed to a function. Let's say you want to pass f(2,3), If you call wrapper() then you have to provide those arguments as well but if you write wrapper(*args) it'll give error as arguments aren't passed inside the function f1. That's the reason we use that syntax so that we can pass arguments later.