A collection of design patterns and idioms in Python.

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

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