A collection of design patterns and idioms in Python.

Sakis Kasampalis e15da30159 Merge pull request #44 from yelite/master пре 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 f61504c1bd Add output to bottom of scripts пре 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 f61504c1bd Add output to bottom of scripts пре 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