Tests of the music21printing extension


In [1]:
%load_ext music21printing

In [2]:
from music21.tinyNotation import TinyNotationStream
stream = TinyNotationStream("c4 d8 f g16 a g f#", "3/4")
stream


Out[2]:

In [3]:
import music21
bwv295 = music21.corpus.parse('bach/bwv295')
for thisNote in bwv295.flat.notes:
  thisNote.addLyric(thisNote.pitch.german)
bwv295


Out[3]:

In [ ]: