musicxml


Namemusicxml JSON
Version 1.4.2 PyPI version JSON
download
home_pagehttps://github.com/alexgorji/musicxml.git
Summarygenerating musicxml
upload_time2024-11-21 14:38:45
maintainerNone
docs_urlNone
authorAlex Gorji
requires_python<3.13,>=3.9
licenseMIT
keywords music musicxml xml
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            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://github.com/alexgorji/musicscore) & [https://musicscore.readthedocs.io](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 <project>
    * cd <project>
    * 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(<xmlelement>):

```
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!

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/alexgorji/musicxml.git",
    "name": "musicxml",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.13,>=3.9",
    "maintainer_email": null,
    "keywords": "music, musicxml, xml",
    "author": "Alex Gorji",
    "author_email": "aligorji@hotmail.com",
    "download_url": "https://files.pythonhosted.org/packages/ba/0a/826228ea6bf965c3eed7a49b9971074d14d3657b40f26c0927603625dbf6/musicxml-1.4.2.tar.gz",
    "platform": null,
    "description": "musicxml is a python library for creating musicxml files. It is largely based on xsd definitions of MusicXML 4.0.\n\nmusicxml is also a part of library: musicscore. Feel free to check out under: [https://github.com/alexgorji/musicscore](https://github.com/alexgorji/musicscore) & [https://musicscore.readthedocs.io](https://musicscore.readthedocs.io)\n\nINSTALLATION\n\n1. Check the version of python on your computer: `python --version`. This library has been developed with python 3.9. Possibly you have to\n   install this version (for example via Homebrew or whatever way you choose.)\n\n2. Make a new folder and create a virtual environment for your project and install musicxml via pip:\n    * mkdir <project>\n    * cd <project>\n    * python3 -m venv venv\n    * source venv/bin/activate\n    * pip install --upgrade pip\n    * pip install musicxml\n\nThe SOURCECODE can be found on Github: https://github.com/alexgorji/musicxml\n\nEach musicxml element can be created as an instance of a class which behaves (hopefully exactly!) as the musicxml schema\n(version 4, see musicxml_4_0.xsd in musicxml.generate_classes) specifies, e.g.:\n\n```\npitch = XMLPitch()\n```\n\nChildren can be added with method add_child(<xmlelement>):\n\n```\npitch.add_child(XMLStep('G'))\n```\n\nAs a shortcut it is possible to add, remove or change child with a dot operator:\n\n```\npitch.xml_step = 'G'\n```\n\nis equivalent to:\n\n```\npitch.xml_step = XMLStep('G')\n```\n\nchange:\n\n```\npitch.xml_step = 'F'\n```\n\nor remove:\n\n```\npitch.xml_step = None\n```\n\nDot operator can also be used as a shortcut to get a child:\n\n```\nprint(pitch.xml_step.value)\n```\n\nThe value of an element (which be translated to text of xml element) can be set during or after creation:\n\n```\noctave = pitch.add_child(XMLOctave())\noctave.value = 3\n```\n\nAttributes also can be added during or after creation:\n\n```\nfont = XMLFont(font_family='Arial')\nfont.font_size = 17.2\n```\n\nA 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)\n. 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\nchildren and attributes.\n\nAn existing musicxml file can be parsed easily with parser's parse_musicxml(file_path) function.\n\nEach element creates a rather complicated tree format container with xsd indicator objects (XSDSequence, XSDChoice, XSDGroup, XSDElement)\nwhich represent their counterparts in a xsd structure to validate and order its children (take a peek inside the file musicxml_4_0.xsd in\nmusicxml.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\ninside a XSDElement leaf of this container tree which has the same name as the child. For elements which use a choice indicator (XSDChoice)\nit 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\nit could for example require another not existing child in the final check. It these cases the parent element tries to attach its children\nto 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\nguaranty that in some cases the library does not behave as it should. Please let me know if you discover a bug!\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "generating musicxml",
    "version": "1.4.2",
    "project_urls": {
        "Homepage": "https://github.com/alexgorji/musicxml.git",
        "Repository": "https://github.com/alexgorji/musicxml.git"
    },
    "split_keywords": [
        "music",
        " musicxml",
        " xml"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1853e25ada0768a3de3e0d36cab1b4bc17db03b1faa006b020afae0514bf7e2",
                "md5": "bedb140a7ec0de3ad0b04285b338e64d",
                "sha256": "fbb0153146d0ecebcaab8b029c6ac72d28aca98109227b0829a7fc19b38cf647"
            },
            "downloads": -1,
            "filename": "musicxml-1.4.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bedb140a7ec0de3ad0b04285b338e64d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.9",
            "size": 974474,
            "upload_time": "2024-11-21T14:38:38",
            "upload_time_iso_8601": "2024-11-21T14:38:38.826213Z",
            "url": "https://files.pythonhosted.org/packages/d1/85/3e25ada0768a3de3e0d36cab1b4bc17db03b1faa006b020afae0514bf7e2/musicxml-1.4.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba0a826228ea6bf965c3eed7a49b9971074d14d3657b40f26c0927603625dbf6",
                "md5": "8146819be452a06825a328799acf610b",
                "sha256": "73e626d65eb9de5fc5cb340cf5cfd3f95354b5c371ccf662acde3e6792075fbd"
            },
            "downloads": -1,
            "filename": "musicxml-1.4.2.tar.gz",
            "has_sig": false,
            "md5_digest": "8146819be452a06825a328799acf610b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.13,>=3.9",
            "size": 869863,
            "upload_time": "2024-11-21T14:38:45",
            "upload_time_iso_8601": "2024-11-21T14:38:45.302259Z",
            "url": "https://files.pythonhosted.org/packages/ba/0a/826228ea6bf965c3eed7a49b9971074d14d3657b40f26c0927603625dbf6/musicxml-1.4.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-21 14:38:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "alexgorji",
    "github_project": "musicxml",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "musicxml"
}
        
Elapsed time: 0.49964s