A collection of design patterns and idioms in Python.

Jeroen 4acb155fac Small PEP8 corrections 11 anos atrás
.gitignore 2476b4b5dd Remove __pycache__ and add __pycache__ to .gitignore 11 anos atrás
3-tier.py f61504c1bd Add output to bottom of scripts 11 anos atrás
README.md e27509abdb Update README.md 11 anos atrás
abstract_factory.py f61504c1bd Add output to bottom of scripts 11 anos atrás
adapter.py 1b4118c6e5 Replace the doctest with direct call to main() 11 anos atrás
append_output.sh ec8d735baa Don't repeat the ### OUTPUT ### line 11 anos atrás
borg.py f61504c1bd Add output to bottom of scripts 11 anos atrás
bridge.py f61504c1bd Add output to bottom of scripts 11 anos atrás
builder.py f61504c1bd Add output to bottom of scripts 11 anos atrás
catalog.py f61504c1bd Add output to bottom of scripts 11 anos atrás
chain.py f61504c1bd Add output to bottom of scripts 11 anos atrás
command.py f61504c1bd Add output to bottom of scripts 11 anos atrás
composite.py f61504c1bd Add output to bottom of scripts 11 anos atrás
decorator.py f61504c1bd Add output to bottom of scripts 11 anos atrás
facade.py f61504c1bd Add output to bottom of scripts 11 anos atrás
factory_method.py f61504c1bd Add output to bottom of scripts 11 anos atrás
flyweight.py f61504c1bd Add output to bottom of scripts 11 anos atrás
foo.txt 3511c20bf6 Added foo.txt for command.py script. 12 anos atrás
graph_search.py f61504c1bd Add output to bottom of scripts 11 anos atrás
iterator.py f61504c1bd Add output to bottom of scripts 11 anos atrás
mediator.py f61504c1bd Add output to bottom of scripts 11 anos atrás
memento.py f61504c1bd Add output to bottom of scripts 11 anos atrás
mvc.py f61504c1bd Add output to bottom of scripts 11 anos atrás
null.py f61504c1bd Add output to bottom of scripts 11 anos atrás
observer.py f61504c1bd Add output to bottom of scripts 11 anos atrás
pool.py f61504c1bd Add output to bottom of scripts 11 anos atrás
prototype.py f61504c1bd Add output to bottom of scripts 11 anos atrás
proxy.py f61504c1bd Add output to bottom of scripts 11 anos atrás
publish_subscribe.py 4acb155fac Small PEP8 corrections 11 anos atrás
state.py f61504c1bd Add output to bottom of scripts 11 anos atrás
strategy.py f61504c1bd Add output to bottom of scripts 11 anos atrás
template.py f61504c1bd Add output to bottom of scripts 11 anos atrás
visitor.py f61504c1bd Add output to bottom of scripts 11 anos atrás

README.md

python-patterns

A collection of design patterns implemented (by other people) in python.

When an implementation is added or modified, be sure to update this file and rerun append_output.sh to keep the output comments at the bottom up to date.

Current Patterns:

  • 3-tier
  • abstract_factory
  • adapter
  • borg
  • bridge
  • builder
  • catalog
  • chain
  • command
  • composite
  • decorator
  • facade
  • factory_method
  • flyweight
  • graph_search
  • iterator
  • mediator
  • memento
  • mvc
  • null
  • observer
  • pool
  • prototype
  • proxy
  • publish_subscribe
  • state
  • strategy
  • template
  • visitor