Декоратор
https://refactoring.guru/ru/design-patterns/decorator
Декоратор. Также известен как: Wrapper, Обёртка, Decorator.
Python Decorators: How to Use it and Why?
https://www.programiz.com/python-programming/decorator
Python Decorators. A decorator takes in a function, adds some functionality and returns it. In this tutorial, you will learn how you can create a decorator and why you should use it.
Decorator pattern - Wikipedia
https://en.wikipedia.org/wiki/Decorator_pattern
In object-oriented programming, the decorator pattern is a design pattern that allows behavior to be added to an individual object, dynamically, without affecting the behavior of other objects from the same class.
In this tutorial, learn how to implement decorators in Python.
https://www.datacamp.com/community/tutorials/decorators-python
Decorators are usually called before the definition of a function you want to decorate. In this tutorial, we'll show the reader how they can use decorators in their Python functions.
decorator/documentation.md at master · micheles/decorator · GitHub
https://github.com/micheles/decorator/blob/master/docs/documentation.md
Contribute to micheles/decorator development by creating an account on GitHub.
JavaScript Decorators: What They Are and When to Use... - SitePoint
https://www.sitepoint.com/javascript-decorators-what-they-are/
Decorators have become popular thanks to their use in Angular 2+. In Angular, decorators are available thanks to TypeScript, but in JavaScript they're currently a stage 2 proposal, meaning they...
7. Decorators — Python Tips 0.1 documentation
https://book.pythontips.com/en/latest/decorators.html
7. Decorators¶. Decorators are a significant part of Python. In simple words: they are functions which modify the functionality of other functions. They help to make our code shorter and more Pythonic.
Advanced Uses of Python Decorators | Codementor
https://www.codementor.io/@sheena/advanced-use-python-decorators-class-function-du107nxsv
This tutorial aims to introduce more interesting uses of Python decorators, specifically how decorators can be used on classes and how to pass extra parameters to your decorator functions.