A collection of design patterns and idioms in Python.

Sakis Kasampalis e0d0472fe9 Merge pull request #79 from lord63-forks/patch-2 преди 10 години
.gitignore 2476b4b5dd Remove __pycache__ and add __pycache__ to .gitignore преди 11 години
3-tier.py c7f8f13454 Update 3-tier.py преди 10 години
README.md 322653e469 fix filename преди 11 години
abstract_factory.py 602888a74d Pep8 check for abstract_factory.py преди 10 години
adapter.py c773edaab5 Pep8 check for adapter.py преди 10 години
append_output.sh ba8afd7a72 added the state variable to borg and improved the README преди 11 години
borg.py ba8afd7a72 added the state variable to borg and improved the README преди 11 години
bridge.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE преди 11 години
builder.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE преди 11 години
catalog.py 12e2701d1c catalog: fix typo and use appropriate exception преди 10 години
chain.py e59aabd10c change abstract_factory преди 11 години
chaining_method.py f4395ad2a6 prefer python3 over 2 преди 11 години
command.py 1496222855 remove some meanless line преди 11 години
composite.py c10a94e5db Revert "edit the publish_subscribe.py" преди 11 години
decorator.py 2efc2204a0 PEP8 changes преди 11 години
facade.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE преди 11 години
factory_method.py b4b91f4441 Update factory_method.py преди 10 години
flyweight.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE преди 11 години
graph_search.py 6eb5e6283d fix mistake usage of self param in recursive func and [] as default param преди 11 години
iterator.py c10a94e5db Revert "edit the publish_subscribe.py" преди 11 години
mediator.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE преди 11 години
memento.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE преди 11 години
mvc.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE преди 11 години
observer.py 1878a5310b Minor pep8 changes. Most salient is that membership test should be 'x not in y' whereas 'not x in y' was being used. преди 11 години
pool.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE преди 11 години
prototype.py 2efc2204a0 PEP8 changes преди 11 години
proxy.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE преди 11 години
publish_subscribe.py c10a94e5db Revert "edit the publish_subscribe.py" преди 11 години
state.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE преди 11 години
strategy.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE преди 11 години
template.py f61504c1bd Add output to bottom of scripts преди 11 години
visitor.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE преди 11 години

README.md

python-patterns

A collection of design patterns and idioms in Python.

When an implementation is added or modified, be sure to update this file and rerun append_output.sh (eg. ./append_output.sh borg.py) to keep the output comments at the bottom up to date.

Current Patterns:

Pattern Description
3-tier data<->business logic<->presentation separation (strict relationships)
abstract_factory use a generic function with specific factories
adapter adapt one interface to another using a whitelist
borg a singleton with shared-state among instances
bridge a client-provider middleman to soften interface changes
builder call many little discrete methods rather than having a huge number of constructor parameters
catalog general methods will call different specialized methods based on construction parameter
chain apply a chain of successive handlers to try and process the data
command bundle a command and arguments to call later
composite encapsulate and provide access to a number of different objects
decorator wrap functionality with other functionality in order to affect outputs
facade use one class as an API to a number of others
factory_method delegate a specialized function/method to create instances
flyweight transparently reuse existing instances of objects with similar/identical state
graph_search (graphing algorithms, not design patterns)
mediator an object that knows how to connect other objects and act as a proxy
memento generate an opaque token that can be used to go back to a previous state
mvc model<->view<->controller (non-strict relationships)
observer provide a callback for notification of events/changes to data
pool preinstantiate and maintain a group of instances of the same type
prototype use a factory and clones of a prototype for new instances (if instantiation is expensive)
proxy an object funnels operations to something else
publish_subscribe a source syndicates events/data to 0+ registered listeners
state logic is org'd into a discrete number of potential states and the next state that can be transitioned to
strategy selectable operations over the same data
template an object imposes a structure but takes pluggable components
visitor invoke a callback for all items of a collection
chaining_method continue callback next object method