A collection of design patterns and idioms in Python.

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

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