A collection of design patterns and idioms in Python.

Jonathan Reem 55aa903b7c Added list of current patterns. 12 年 前
__pycache__ 864f73f43c Some minor changes 12 年 前
3-tier.py 6b920156b9 Added a main() function. 12 年 前
README.md 55aa903b7c Added list of current patterns. 12 年 前
abstract_factory.py 533c8680de Fixed a number of pep8 violations. 12 年 前
adapter.py 06a7f83254 Removed old string formatting. 12 年 前
borg.py 533c8680de Fixed a number of pep8 violations. 12 年 前
bridge.py d671429259 Fixed PEP-8 discrepancy in Bridge pattern 12 年 前
builder.py 3003f6bbf6 Fixed string formatting. 12 年 前
chain.py 0e0f9c57c5 Split delegation from __init__ in Client. 12 年 前
command.py 77728fd5f7 Wrapped main behavior in a main() function. 12 年 前
composite.py 533c8680de Fixed a number of pep8 violations. 12 年 前
decorator.py 38637e914c Rejiggered the classes to actually use decorator syntax and commented an explanation on how the @ syntax works. Also wrapped the executing code in a main() function. 12 年 前
facade.py 533c8680de Fixed a number of pep8 violations. 12 年 前
factory_method.py 533c8680de Fixed a number of pep8 violations. 12 年 前
flyweight.py 3656aa0f90 Removed trailing spaces on numerous lines. 12 年 前
foo.txt 3511c20bf6 Added foo.txt for command.py script. 12 年 前
graph_search.py 533c8680de Fixed a number of pep8 violations. 12 年 前
iterator.py 06960de5e3 Minor pep8 correction of the docstring. 12 年 前
mediator.py 327e51c9c3 Removed redundant parentheses. 12 年 前
memento.py 533c8680de Fixed a number of pep8 violations. 12 年 前
mvc.py 88fd2544d6 added two more patterns, 3-tier and mvc 12 年 前
null.py 533c8680de Fixed a number of pep8 violations. 12 年 前
observer.py 533c8680de Fixed a number of pep8 violations. 12 年 前
pool.py 6b3735078f Renamed element 'type' to 'Type'. 12 年 前
prototype.py a444aab205 Fixed PEP-8 discrepancy in Prototype pattern 12 年 前
proxy.py 533c8680de Fixed a number of pep8 violations. 12 年 前
state.py 916b996ff1 Few minor changes. 12 年 前
strategy.py 40a7afc427 Minor pep8 correction of the docstring. 12 年 前
template.py 4007ac7d7c Minor pep8 correction of the docstring. 12 年 前
visitor.py 533c8680de Fixed a number of pep8 violations. 12 年 前

README.md

python-patterns

A collection of design patterns implemented (by other people) in python

Current Patterns:

  • 3-tier
  • composite
  • mvc
  • decorator
  • null
  • pycache
  • facade
  • observer
  • abstract_factory
  • factory_method
  • pool
  • adapter
  • flyweight
  • prototype
  • borg
  • proxy
  • bridge
  • graph_search
  • state
  • builder
  • iterator
  • strategy
  • chain
  • mediator
  • template
  • command
  • memento
  • visi