A collection of design patterns and idioms in Python.

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

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