"It's Easier To Ask For Forgiveness Than Permission (Efap)"
One pythonic principle is "It's easier to ask for forgiveness than permission (EFAP)". Opposed to the approach to look before you leap, this principle states that you should first try an action and if it fails react appropriately. Python' strong exception handling supports this principle and helps to develop robust and fault tolerant programs.
Meta Classes
Meta classes are an advanced topic of Python programming. Applying meta calsses Complex tasks may be be solved in an elegant manner. The use of meta classes is demonstrated with examples.
Sıngelton
Singeltons are objects of which only one instance is supposed to exist. Python provides several ways to implement singeltons. These possibilities are shown using examples.
Null Objects
Null objects can be used instead of the type None to avoid tests for None. Implementation, usage as well as advantages and disadvantages are covered.
Proxy
Proxies stand for other objects. Setup and usage of proxies are covered.
Observer
The observer pattern allows several objects to have access to the same data. The principles of this pattern are shown with a comprehensive example.
Constructor
Parameters of constructors are often assigned to instance variables. This pattern can replace a many lines of manual assignment with only one line of code.