What does @ mean in Python?
@
Example: @login_required, etc.
@login_required
A decorator, also called pie syntax. It allows you to "decorate" a function with another function. You already had decoration with staticmethod() and classmethod(). The pie syntax makes it more easy to access and extend.