Design Patterns in Python (Free Book)
dpip.testingperspective.com
Design Patterns in Python (Free Book)
1–10 of 20 posts
Re: Design Patterns in Python (Free Book)
#2I'd like to see more patterns with decorators, list comprehension, map/filter chain and yield.
Re: Design Patterns in Python (Free Book)
#3Do we really need factory pattern in Python? I mean with all those dynamic calling methods? I'd like to see more patterns with decorators, list comprehension, map/filter chain and yield.
Re: Design Patterns in Python (Free Book)
#4Do we really need factory pattern in Python? I mean with all those dynamic calling methods? I'd like to see more patterns with decorators, list comprehension, map/filter chain and yield.
Absolutely. I have not seen a factory pattern in use in ages. I think the last time was before http://dirtsimple.org/2004/12/python-is-not-java.html was around.
(As a bonus, they're quite poorly documented too. Yay!)
Re: Design Patterns in Python (Free Book)
#5Re: Design Patterns in Python (Free Book)
#6Two examples, what i consider (very simple) Python patterns (without fancy names though):
if __name__ == "__main__":
...
def MyDecorator(func):
def wrapper(...):
def my_func(*args, **vargs):
...
return my_func
return wrapperRe: Design Patterns in Python (Free Book)
#7Somehow, i'm not sure if i like the word "pattern". Patterns are something which can be used generally and repeatedly. I think that's sort of scary. For example: I've learned factory usage while doing twisted and it came naturally how and why this was used. But somehow i feel that with all those books and courses about "design patterns" new programers are missing out how to find a solution. It's like "here are your t…
Re: Design Patterns in Python (Free Book)
#8Somehow, i'm not sure if i like the word "pattern". Patterns are something which can be used generally and repeatedly. I think that's sort of scary. For example: I've learned factory usage while doing twisted and it came naturally how and why this was used. But somehow i feel that with all those books and courses about "design patterns" new programers are missing out how to find a solution. It's like "here are your t…
Design patterns are useful because they improve.. design. I mean application and code design. They model a recognizable structure. You are right: they have been sold as the ace of all trades in CS books and courses and they are not. That lead to the ' factories of factories of metafactories ' situation. Experience and intelligence are the real 'ace of all trades'. On the other side chaos is not good for anyone. Inste…
I didn't read books on design patterns, but the book from the link structures around what design patterns there are and how they got applied to a problem. It'd be nicer to first have a problem and show why and how a particular pattern is better than, say, a bunch of monolithic lines of code.. So that you can say "oh and by the way, the way we solved that problem falls into the category of factory patterns".
Re: Design Patterns in Python (Free Book)
#9Python is drastically different from C#/Java/C++, and a direct port of classical patterns won't make much sense. It will work, but it will the equivalent of Fortran programmers writing Frotran in Python.
If anyone is interested, this talk by Alex Martelli is a good starting point:
http://www.youtube.com/watch?v=0vJJlVBVTFg
I think Bruce Eckel was writing a book on "Design Patterns" in Python, but that's not completed. However, there is a book using Ruby, which shows the classical approach for implementing design patters, then shows how it is done in Ruby:Re: Design Patterns in Python (Free Book)
#10Do we really need factory pattern in Python? I mean with all those dynamic calling methods? I'd like to see more patterns with decorators, list comprehension, map/filter chain and yield.
Yes.
from PIL import Image
im = Image.open("bride.jpg")
Image.open here is a factory, and im will be an object of a different class, depending on the filename you pass to it(jpeg, gif, png).That is just one example, but you get the idea.