mingus.containers.suite

class mingus.containers.suite.Suite[source]
__add__(self, composition)[source]

Enable the ‘+’ operator for Compositions.

__getitem__(self, index)[source]

Enable the ‘[]’ notation.

__init__(self)[source]
__len__(self)[source]

Enable the len() function.

__setitem__(self, index, value)[source]

Enable the ‘[] =’ notation.

add_composition(self, composition)[source]

Add a composition to the suite.

Raise an UnexpectedObjectError when the supplied argument is not a Composition object.

author

Attribute of type: str ''

compositions

Attribute of type: list []

description

Attribute of type: str ''

email

Attribute of type: str ''

set_author(self, author, email=)[source]

Set the author of the suite.

set_title(self, title, subtitle=)[source]

Set the title and the subtitle of the suite.

subtitle

Attribute of type: str ''

title

Attribute of type: str 'Untitled'


Back to Index