iotools.parse_lilypond_input_string

abjad.tools.iotools.parse_lilypond_input_string.parse_lilypond_input_string(note_entry_string)[source]

New in version 2.0.

Parse LilyPond note_entry_string:

abjad> note_entry_string = "g'2 a'2 g'4. fs'8 e'4 d'4"
abjad> iotools.parse_lilypond_input_string(note_entry_string)
{g'2, a'2, g'4., fs'8, e'4, d'4}

Return container of note, rest and chord instances.

Handle simple beaming, slurs and articulations.

Do not parse tuplets, measures or other complex LilyPond input.

This Page