Decorators are one of the elegant features of the Python programming language. They are heavily used in modern libraries and frameworks to create elegant APIs.
This workshop introduces Python decorators starting from the functional programming concepts to writing practical decorators using lot of examples and exercises.
At the end of the workshop, you’ll be able to:
- understand how decorators work
- appreciate how decorators are applied in the libraries and frameworks that you use
- build beautiful abstractions using decorators
- improve code readability and reusability using techniques learnt
Pre-requisites
- Ability to write functions in Python
- Good knowledge of basic data types in Python (int, str, lists, tuples)
- Exposure to classes in Python
- Experience of using modules from Python standard library