A collection of design patterns and idioms in Python.

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

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