We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
A Part object contains a list of Measure objects. These objects are created from the list of Note objects that you feed the Part on instantiation.
Example:
list_of_notes = [Note(4,4,0) for x in range(10)] time_signature = [(4,4)] new_part = Part(list_of_notes, time_signature)