Convert python callables into MEL procedures
Functions
| getMelArgs | given a python function, return ( ( argName, melType ), { argName : default }, { argName : description } ) | ||
| getMelType | return the name of the closest MEL type equivalent for the given python object. | ||
| isIterable | Returns True if an object is iterable and not a string or ProxyUnicode type, otherwise returns False. | ||
| isMapping | Returns True if an object is a mapping (dictionary) type, otherwise returns False. | ||
| isValidMelType | 
 | ||
| py2melCmd | Create a MEL command from a python function or class. | ||
| py2melProc | This is a work in progress. | 
Classes
| MatrixN | A generic size MatrixN class, basically a 2 dimensional Array. | 
| VectorN | A generic size VectorN class derived from Array, basically a 1 dimensional Array. | 
| WrapperCommand | |
| defaultdict | defaultdict(default_factory) –> dict with default factory |