Python Command Pattern
The command pattern bundles functionality into an object which can be passed around. This way the object can be executed when needed as a well defined command. In a sense a ‘macro‘ is an implementation of the command pattern: it abstracts more complex functionality into a single command or series of commands. This post shows… Read More »