A collection of design patterns and idioms in Python.

Sakis Kasampalis e15da30159 Merge pull request #44 from yelite/master 11 jaren geleden
.gitignore 2476b4b5dd Remove __pycache__ and add __pycache__ to .gitignore 11 jaren geleden
3-tier.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
README.md e27509abdb Update README.md 11 jaren geleden
abstract_factory.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
adapter.py 1b4118c6e5 Replace the doctest with direct call to main() 11 jaren geleden
append_output.sh ec8d735baa Don't repeat the ### OUTPUT ### line 11 jaren geleden
borg.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
bridge.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
builder.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
catalog.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
chain.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
command.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
composite.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
decorator.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
facade.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
factory_method.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
flyweight.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
foo.txt 3511c20bf6 Added foo.txt for command.py script. 12 jaren geleden
graph_search.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
iterator.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
mediator.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
memento.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
mvc.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
null.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
observer.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
pool.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
prototype.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
proxy.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
publish_subscribe.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
state.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
strategy.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
template.py f61504c1bd Add output to bottom of scripts 11 jaren geleden
visitor.py f61504c1bd Add output to bottom of scripts 11 jaren geleden

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