A collection of design patterns and idioms in Python.

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

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