A collection of design patterns and idioms in Python.

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

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