EasyMIDI.MusicTheory

class EasyMIDI.MusicTheory

MusicTheory contains some helpful music theory data, like the major and minor scales based on the circle of fifths.

__init__()

Methods

__init__()
getMajorScales() Get the scales for major keys.
getMinorScales() Get the scales for minor keys.
getMajorScales()

Get the scales for major keys.

Returns:A dict of major scales (ex. ‘C’ : [‘C’, ‘D’, ‘E’, ...]).
Return type:dict
getMinorScales()

Get the scales for minor keys.

Returns:A dict of minor scales (ex. ‘C’ : [‘C’, ‘D’, ‘E’, ...]).
Return type:dict
majorScales

Builds the scales for major keys.

minorScales

Builds the scales for minor keys.