A collection of design patterns and idioms in Python.

Jeroen 4acb155fac Small PEP8 corrections преди 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 4acb155fac Small PEP8 corrections преди 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