A collection of design patterns and idioms in Python.

luoxing e59aabd10c change abstract_factory 11 năm trước cách đây
.gitignore 2476b4b5dd Remove __pycache__ and add __pycache__ to .gitignore 11 năm trước cách đây
3-tier.py 6211358b71 append_output.sh for 3-tier and null 11 năm trước cách đây
README.md 4b81a4a6e8 removing null, it is not considered pythonic 11 năm trước cách đây
abstract_factory.py e59aabd10c change abstract_factory 11 năm trước cách đây
adapter.py e59aabd10c change abstract_factory 11 năm trước cách đây
append_output.sh ba8afd7a72 added the state variable to borg and improved the README 11 năm trước cách đây
borg.py ba8afd7a72 added the state variable to borg and improved the README 11 năm trước cách đây
bridge.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE 11 năm trước cách đây
builder.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE 11 năm trước cách đây
catalog.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE 11 năm trước cách đây
chain.py e59aabd10c change abstract_factory 11 năm trước cách đây
command.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE 11 năm trước cách đây
composite.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE 11 năm trước cách đây
decorator.py 83009281ed added the output of decorator 11 năm trước cách đây
facade.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE 11 năm trước cách đây
factory_method.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE 11 năm trước cách đây
flyweight.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE 11 năm trước cách đây
graph_search.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 năm trước cách đây
iterator.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE 11 năm trước cách đây
mediator.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE 11 năm trước cách đây
memento.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE 11 năm trước cách đây
mvc.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE 11 năm trước cách đây
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 năm trước cách đây
pool.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE 11 năm trước cách đây
prototype.py ca9e299c73 better prototype example 11 năm trước cách đây
proxy.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE 11 năm trước cách đây
publish_subscribe.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 năm trước cách đây
state.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE 11 năm trước cách đây
strategy.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE 11 năm trước cách đây
template.py f61504c1bd Add output to bottom of scripts 11 năm trước cách đây
visitor.py 5d794ceecb Your code is too weak for PEP8. You lack DISCIPLINE 11 năm trước cách đây

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)
iterator structure repeated, identical calls as a generator
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