A collection of design patterns and idioms in Python.

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

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