Skip to main content

generating musicxml

Project description

musicxml is a python library for creating musicxml files. It is largely based on xsd definitions of MusicXML 4.0.

musicxml is also a part of library: musicscore. Feel free to check out under: https://github.com/alexgorji/musicscore & https://musicscore.readthedocs.io

INSTALLATION

  1. Check the version of python on your computer: python --version. This library has been developed with python 3.9. Possibly you have to install this version (for example via Homebrew or whatever way you choose.)

  2. Make a new folder and create a virtual environment for your project and install musicxml via pip:

    • mkdir
    • cd
    • python3 -m venv venv
    • source venv/bin/activate
    • pip install --upgrade pip
    • pip install musicxml

The SOURCECODE can be found on Github: https://github.com/alexgorji/musicxml

Each musicxml element can be created as an instance of a class which behaves (hopefully exactly!) as the musicxml schema (version 4, see musicxml_4_0.xsd in musicxml.generate_classes) specifies, e.g.:

pitch = XMLPitch()

Children can be added with method add_child():

pitch.add_child(XMLStep('G'))

As a shortcut it is possible to add, remove or change child with a dot operator:

pitch.xml_step = 'G'

is equivalent to:

pitch.xml_step = XMLStep('G')

change:

pitch.xml_step = 'F'

or remove:

pitch.xml_step = None

Dot operator can also be used as a shortcut to get a child:

print(pitch.xml_step.value)

The value of an element (which be translated to text of xml element) can be set during or after creation:

octave = pitch.add_child(XMLOctave())
octave.value = 3

Attributes also can be added during or after creation:

font = XMLFont(font_family='Arial')
font.font_size = 17.2

A variety of errors are thrown during creating an object (for example if you try to add a child of a wrong type or to add a wrong attribute) . The method to_string() calls an intern final check before exporting the xml element to a string to be sure you didn't forget any required children and attributes.

An existing musicxml file can be parsed easily with parser's parse_musicxml(file_path) function.

Each element creates a rather complicated tree format container with xsd indicator objects (XSDSequence, XSDChoice, XSDGroup, XSDElement) which represent their counterparts in a xsd structure to validate and order its children (take a peek inside the file musicxml_4_0.xsd in musicxml.generate_classes to get a feeling for its complexity). If a child is going to be added to an element it tries to 'hook' this child inside a XSDElement leaf of this container tree which has the same name as the child. For elements which use a choice indicator (XSDChoice) it can happen, that the current chosen path throws an error since this particular path does not have a XSDElement leaf with child's name, or it could for example require another not existing child in the final check. It these cases the parent element tries to attach its children to another choice path and see if the problem can be solved. On this account although some thorough testings have been done, there is yet no guaranty that in some cases the library does not behave as it should. Please let me know if you discover a bug!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

musicxml-1.6.1.tar.gz (873.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

musicxml-1.6.1-py3-none-any.whl (978.1 kB view details)

Uploaded Python 3

File details

Details for the file musicxml-1.6.1.tar.gz.

File metadata

  • Download URL: musicxml-1.6.1.tar.gz
  • Upload date:
  • Size: 873.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.13.0 Darwin/23.6.0

File hashes

Hashes for musicxml-1.6.1.tar.gz
Algorithm Hash digest
SHA256 a90e5ef8512c40af9f65ab8d0627afa19ef4a26aac97052287a6f0b2f9db7ae9
MD5 9c96efcd51448be3c6a19674fe6569ad
BLAKE2b-256 bf89bff27f31165a2b1ebdbf87b519666302bff26bdffa47393363e923c058bb

See more details on using hashes here.

File details

Details for the file musicxml-1.6.1-py3-none-any.whl.

File metadata

  • Download URL: musicxml-1.6.1-py3-none-any.whl
  • Upload date:
  • Size: 978.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.13.0 Darwin/23.6.0

File hashes

Hashes for musicxml-1.6.1-py3-none-any.whl
Algorithm Hash digest
SHA256 43ad9607453a0e91585b6c18a45dd1ba9681e1317b5133e34b5195f18d513d5a
MD5 757e3ddddd004df3ec729b9f0be5b948
BLAKE2b-256 f270b0eb5a86e2ecc91456bb863880e47a3e539e3f515d4c9b4b3c884e5510db

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page