Tuesday, July 20, 2010

Design Patterns in Python

Alex Martelli (Google)












The Facade DP – provide a controlled subset of functionality to a client. Most Python libraries are facades. Layers on top of bigger packages.

An explanation of basic DPs.

There are other patterns...











This talk is about Pythonic Patterns

Singletons in Python … use a module instead of a class. They are inherently singletons, you can use it one time.

No comments:

Post a Comment