pymusicxml.score_components.MusicXMLContainer

class pymusicxml.score_components.MusicXMLContainer(contents: Sequence[MusicXMLComponent], allowed_types: Sequence[Type])[source]

Bases: MutableSequence

Base class for all musical objects that contain other musical objects, such as Part, Measure, and Tuplet.

Parameters:
  • contents – Musical objects to be contained within this object

  • allowed_types – Allowable types for objects contained within this object

Variables:
  • contents – Musical objects contained within this object

  • allowed_types – Allowable types for objects contained within this object

Methods

insert(i, o)

Insert the given object before the given index.

Inherited Methods

append(value)

S.append(value) -- append value to the end of the sequence

clear()

count(value)

extend(values)

S.extend(iterable) -- extend sequence by appending elements from the iterable

index(value, [start, [stop]])

Raises ValueError if the value is not present.

pop([index])

Raise IndexError if list is empty or index is out of range.

remove(value)

S.remove(value) -- remove first occurrence of value.

reverse()

S.reverse() -- reverse IN PLACE

insert(i, o) None[source]

Insert the given object before the given index.

Parameters:
  • i – Index at which to insert

  • o – Object to insert

append(value)

S.append(value) – append value to the end of the sequence

clear() None -- remove all items from S
count(value) integer -- return number of occurrences of value
extend(values)

S.extend(iterable) – extend sequence by appending elements from the iterable

index(value[, start[, stop]]) integer -- return first index of value.

Raises ValueError if the value is not present.

Supporting start and stop arguments is optional, but recommended.

pop([index]) item -- remove and return item at index (default last).

Raise IndexError if list is empty or index is out of range.

remove(value)

S.remove(value) – remove first occurrence of value. Raise ValueError if the value is not present.

reverse()

S.reverse() – reverse IN PLACE