python-rtmidi


Namepython-rtmidi JSON
Version 1.5.8 PyPI version JSON
download
home_page
SummaryA Python binding for the RtMidi C++ library implemented using Cython.
upload_time2023-11-20 21:55:02
maintainer
docs_urlNone
author
requires_python>=3.8
licenseCopyright & License =================== python-rtmidi was written by Christopher Arndt, 2012 - 2023. The software is released unter the MIT License: Copyright (c) 2012 - 2023 Christopher Arndt Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. RtMidi is distributed under a modified MIT License: RtMidi: realtime MIDI i/o C++ classes Copyright (c) 2003-2019 Gary P. Scavone Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. Any person wishing to distribute modifications to the Software is asked to send the modifications to the original developer so that they can be incorporated into the canonical version. This is, however, not a binding provision of this license. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords midi multimedia music rtmidi
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Welcome to python-rtmidi!

A Python binding for the RtMidi C++ library implemented using Cython.

[![Latest version](https://shields.io/pypi/v/python-rtmidi)](https://pypi.org/project/python-rtmidi)
![Project status](https://shields.io/pypi/status/python-rtmidi)
[![MIT License](https://shields.io/pypi/l/python-rtmidi)](LICENSE.md)
![Python versions](https://shields.io/pypi/pyversions/python-rtmidi)
[![Distribution format](https://shields.io/pypi/format/python-rtmidi)](https://pypi.org/project/python-rtmidi/#files)
[![CI status](https://github.com/SpotlightKid/python-rtmidi/actions/workflows/push_to_master.yml/badge.svg)](https://github.com/SpotlightKid/python-rtmidi/actions)

# Overview

[RtMidi] is a set of C++ classes which provides a concise and simple,
cross-platform API (Application Programming Interface) for realtime MIDI
input / output across Linux (ALSA & JACK), macOS / OS X (CoreMIDI & JACK), and
Windows (MultiMedia System) operating systems.

[python-rtmidi] is a Python binding for RtMidi implemented using [Cython] and
provides a thin wrapper around the RtMidi C++ interface. The API is basically
the same as the C++ one but with the naming scheme of classes, methods and
parameters adapted to the Python PEP-8 conventions and requirements of the
Python package naming structure. **python-rtmidi** supports Python 3 (3.8+).

The [documentation] provides installation instructions, a history of changes
per release and an API reference.

See the file [LICENSE.md] about copyright and usage terms.

The source code repository and issue tracker are hosted on GitHub:

<https://github.com/SpotlightKid/python-rtmidi>.

## Usage example

Here's a quick example of how to use **python-rtmidi** to open the first
available MIDI output port and send a middle C note on MIDI channel 1:

```python
import time
import rtmidi

midiout = rtmidi.MidiOut()
available_ports = midiout.get_ports()

if available_ports:
    midiout.open_port(0)
else:
    midiout.open_virtual_port("My virtual output")

with midiout:
    note_on = [0x90, 60, 112] # channel 1, middle C, velocity 112
    note_off = [0x80, 60, 0]
    midiout.send_message(note_on)
    time.sleep(0.5)
    midiout.send_message(note_off)
    time.sleep(0.1)

del midiout
```

More usage examples can be found in the [examples] and [tests] directories of
the source repository.


[Cython]: http://cython.org/
[documentation]: https://spotlightkid.github.io/python-rtmidi/
[examples]: https://github.com/SpotlightKid/python-rtmidi/tree/master/examples
[LICENSE.md]: https://github.com/SpotlightKid/python-rtmidi/blob/master/LICENSE.md
[python-rtmidi]: https://github.com/SpotlightKid/python-rtmidi
[tests]: https://github.com/SpotlightKid/python-rtmidi/tree/master/tests
[RtMidi]: http://www.music.mcgill.ca/~gary/rtmidi/index.html

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "python-rtmidi",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "MIDI multimedia music rtmidi",
    "author": "",
    "author_email": "Christopher Arndt <info@chrisarndt.de>",
    "download_url": "https://files.pythonhosted.org/packages/dd/ee/0f91965dcc471714c69df21e5ca3d94dc81411b7dee2d31ff1184bea07c9/python_rtmidi-1.5.8.tar.gz",
    "platform": null,
    "description": "# Welcome to python-rtmidi!\n\nA Python binding for the RtMidi C++ library implemented using Cython.\n\n[![Latest version](https://shields.io/pypi/v/python-rtmidi)](https://pypi.org/project/python-rtmidi)\n![Project status](https://shields.io/pypi/status/python-rtmidi)\n[![MIT License](https://shields.io/pypi/l/python-rtmidi)](LICENSE.md)\n![Python versions](https://shields.io/pypi/pyversions/python-rtmidi)\n[![Distribution format](https://shields.io/pypi/format/python-rtmidi)](https://pypi.org/project/python-rtmidi/#files)\n[![CI status](https://github.com/SpotlightKid/python-rtmidi/actions/workflows/push_to_master.yml/badge.svg)](https://github.com/SpotlightKid/python-rtmidi/actions)\n\n# Overview\n\n[RtMidi] is a set of C++ classes which provides a concise and simple,\ncross-platform API (Application Programming Interface) for realtime MIDI\ninput / output across Linux (ALSA & JACK), macOS / OS X (CoreMIDI & JACK), and\nWindows (MultiMedia System) operating systems.\n\n[python-rtmidi] is a Python binding for RtMidi implemented using [Cython] and\nprovides a thin wrapper around the RtMidi C++ interface. The API is basically\nthe same as the C++ one but with the naming scheme of classes, methods and\nparameters adapted to the Python PEP-8 conventions and requirements of the\nPython package naming structure. **python-rtmidi** supports Python 3 (3.8+).\n\nThe [documentation] provides installation instructions, a history of changes\nper release and an API reference.\n\nSee the file [LICENSE.md] about copyright and usage terms.\n\nThe source code repository and issue tracker are hosted on GitHub:\n\n<https://github.com/SpotlightKid/python-rtmidi>.\n\n## Usage example\n\nHere's a quick example of how to use **python-rtmidi** to open the first\navailable MIDI output port and send a middle C note on MIDI channel 1:\n\n```python\nimport time\nimport rtmidi\n\nmidiout = rtmidi.MidiOut()\navailable_ports = midiout.get_ports()\n\nif available_ports:\n    midiout.open_port(0)\nelse:\n    midiout.open_virtual_port(\"My virtual output\")\n\nwith midiout:\n    note_on = [0x90, 60, 112] # channel 1, middle C, velocity 112\n    note_off = [0x80, 60, 0]\n    midiout.send_message(note_on)\n    time.sleep(0.5)\n    midiout.send_message(note_off)\n    time.sleep(0.1)\n\ndel midiout\n```\n\nMore usage examples can be found in the [examples] and [tests] directories of\nthe source repository.\n\n\n[Cython]: http://cython.org/\n[documentation]: https://spotlightkid.github.io/python-rtmidi/\n[examples]: https://github.com/SpotlightKid/python-rtmidi/tree/master/examples\n[LICENSE.md]: https://github.com/SpotlightKid/python-rtmidi/blob/master/LICENSE.md\n[python-rtmidi]: https://github.com/SpotlightKid/python-rtmidi\n[tests]: https://github.com/SpotlightKid/python-rtmidi/tree/master/tests\n[RtMidi]: http://www.music.mcgill.ca/~gary/rtmidi/index.html\n",
    "bugtrack_url": null,
    "license": "Copyright & License ===================  python-rtmidi was written by Christopher Arndt, 2012 - 2023.  The software is released unter the MIT License:  Copyright (c) 2012 - 2023 Christopher Arndt  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.   RtMidi is distributed under a modified MIT License:  RtMidi: realtime MIDI i/o C++ classes Copyright (c) 2003-2019 Gary P. Scavone  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  Any person wishing to distribute modifications to the Software is asked to send the modifications to the original developer so that they can be incorporated into the canonical version.  This is, however, not a binding provision of this license.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "A Python binding for the RtMidi C++ library implemented using Cython.",
    "version": "1.5.8",
    "project_urls": {
        "Bug tracker": "https://github.com/SpotlightKid/python-rtmidi/issues",
        "Documentation": "https://spotlightkid.github.io/python-rtmidi/",
        "Download": "https://pypi.python.org/pypi/python-rtmidi",
        "Homepage": "https://github.com/SpotlightKid/python-rtmidi",
        "Source": "https://gitlab.com/SpotlightKid/python-rtmidi/"
    },
    "split_keywords": [
        "midi",
        "multimedia",
        "music",
        "rtmidi"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "469c95c0a6a43bd24a17568e1e31008b1fab7e9a2e54c0ed7301e8d5cc9fa109",
                "md5": "1735ac8952ff2eb33554c9326fa9b52c",
                "sha256": "efc07413b30b0039c0d35abe25a81d740c7405124eb58eed141a8f24388e6fe0"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1735ac8952ff2eb33554c9326fa9b52c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 148826,
            "upload_time": "2023-11-20T21:54:20",
            "upload_time_iso_8601": "2023-11-20T21:54:20.658495Z",
            "url": "https://files.pythonhosted.org/packages/46/9c/95c0a6a43bd24a17568e1e31008b1fab7e9a2e54c0ed7301e8d5cc9fa109/python_rtmidi-1.5.8-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf9b8e452d6edc2c04e3407f542d3185c66ffc2d39c8811cf2b117653a0a4d63",
                "md5": "78fe9d99a7d59fd10720a6d2de3b9767",
                "sha256": "844bd12840c9d4e03dfc89b2cd57c55dcbf5ed7246504d69c6c661732249b19c"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "78fe9d99a7d59fd10720a6d2de3b9767",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 145363,
            "upload_time": "2023-11-20T21:54:23",
            "upload_time_iso_8601": "2023-11-20T21:54:23.023450Z",
            "url": "https://files.pythonhosted.org/packages/bf/9b/8e452d6edc2c04e3407f542d3185c66ffc2d39c8811cf2b117653a0a4d63/python_rtmidi-1.5.8-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b548aa1d4924f7aa238a192d69aa565b315af0037f684c9475e8b860c679a655",
                "md5": "96713055eaf25126dc661857fa8a2ea0",
                "sha256": "8bbaf7c7164471712a93ac60c8f9ed146b336a294a5103223bbaf8f10709a0bf"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "96713055eaf25126dc661857fa8a2ea0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 293253,
            "upload_time": "2023-11-20T21:54:24",
            "upload_time_iso_8601": "2023-11-20T21:54:24.899471Z",
            "url": "https://files.pythonhosted.org/packages/b5/48/aa1d4924f7aa238a192d69aa565b315af0037f684c9475e8b860c679a655/python_rtmidi-1.5.8-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf2432dc239047a56f44d8d8090d55010f85a38ed959ffe517c2e87a2aa34190",
                "md5": "070fc911bdcded17bc944b0dac2b3063",
                "sha256": "878ce085dfb65c0974810a7e919f73708cbb4c0430c7924b78f25aea1dd4ebee"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "070fc911bdcded17bc944b0dac2b3063",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 304051,
            "upload_time": "2023-11-20T21:54:26",
            "upload_time_iso_8601": "2023-11-20T21:54:26.820698Z",
            "url": "https://files.pythonhosted.org/packages/bf/24/32dc239047a56f44d8d8090d55010f85a38ed959ffe517c2e87a2aa34190/python_rtmidi-1.5.8-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b0ccf771eca1b64610e627ca1e67be8390ecdf5e0e1914efbdd9d50ac4c5986",
                "md5": "0452e16abf8e608b0170265071f63f8b",
                "sha256": "f2138005c6bd3d8b9af05df383679f6d0827d16056e68a941110732310dcb7dd"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0452e16abf8e608b0170265071f63f8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 132157,
            "upload_time": "2023-11-20T21:54:30",
            "upload_time_iso_8601": "2023-11-20T21:54:30.059710Z",
            "url": "https://files.pythonhosted.org/packages/9b/0c/cf771eca1b64610e627ca1e67be8390ecdf5e0e1914efbdd9d50ac4c5986/python_rtmidi-1.5.8-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b0c23be16b75c90946784b8d233e61db14cf0482def5396821a1ae0bdcd2739",
                "md5": "718b342465fb6619bb84ea61393f8747",
                "sha256": "30d117193dcad8af67c600c405f53eb096e4ff84849760be14c97270af334922"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "718b342465fb6619bb84ea61393f8747",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 150205,
            "upload_time": "2023-11-20T21:54:31",
            "upload_time_iso_8601": "2023-11-20T21:54:31.849193Z",
            "url": "https://files.pythonhosted.org/packages/4b/0c/23be16b75c90946784b8d233e61db14cf0482def5396821a1ae0bdcd2739/python_rtmidi-1.5.8-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b1237d41151b08a292719f05dbeae15475537f8aa291cda34c6634b35916dff",
                "md5": "54540a3942dfa9716eb7603689226362",
                "sha256": "4e234dca7f9d783dd3f1e9c9c5c2f295f02b7af3085301d6eed3b428cf49d327"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "54540a3942dfa9716eb7603689226362",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 146737,
            "upload_time": "2023-11-20T21:54:33",
            "upload_time_iso_8601": "2023-11-20T21:54:33.299333Z",
            "url": "https://files.pythonhosted.org/packages/4b/12/37d41151b08a292719f05dbeae15475537f8aa291cda34c6634b35916dff/python_rtmidi-1.5.8-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "535eb866491545135c699bfbed62f54b93c4d6587afc2bba6e2cbbe898570c32",
                "md5": "fad7cefb558682a0d94b80cc68a819af",
                "sha256": "271d625c489fffb39b3edc5aba67f7c8e29a04a0a0f056ce19e5a888a08b4c59"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fad7cefb558682a0d94b80cc68a819af",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 294847,
            "upload_time": "2023-11-20T21:54:35",
            "upload_time_iso_8601": "2023-11-20T21:54:35.017414Z",
            "url": "https://files.pythonhosted.org/packages/53/5e/b866491545135c699bfbed62f54b93c4d6587afc2bba6e2cbbe898570c32/python_rtmidi-1.5.8-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0791ddb4fb1bdb1a8b8bd62007ca4980344a53b7f29633a7bca1088eed964ce",
                "md5": "3a2d83bb191142883d8615bbf50d2d41",
                "sha256": "46bbf32c8a4bf6c8f0df1c02a68689d0757f13cb7a69f27ccbbed3d7b2365918"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3a2d83bb191142883d8615bbf50d2d41",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 305433,
            "upload_time": "2023-11-20T21:54:36",
            "upload_time_iso_8601": "2023-11-20T21:54:36.322680Z",
            "url": "https://files.pythonhosted.org/packages/a0/79/1ddb4fb1bdb1a8b8bd62007ca4980344a53b7f29633a7bca1088eed964ce/python_rtmidi-1.5.8-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13ff2c55797dbf020d462132d1bc5b34d596b400fa197e2a259b8dd2ea2e5954",
                "md5": "6d789753a409619154d6be475abb9b68",
                "sha256": "cfea32c91752fa7aecfe3d6827535c190ba0e646a9accd6604f4fc70cf4b780f"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6d789753a409619154d6be475abb9b68",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 132937,
            "upload_time": "2023-11-20T21:54:38",
            "upload_time_iso_8601": "2023-11-20T21:54:38.300886Z",
            "url": "https://files.pythonhosted.org/packages/13/ff/2c55797dbf020d462132d1bc5b34d596b400fa197e2a259b8dd2ea2e5954/python_rtmidi-1.5.8-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5127887b0378e0a907489a07bdeb808fa5ed349675245c6ee14d9f6d00304f96",
                "md5": "94cd289f950aad603d4f2fee8f7cced4",
                "sha256": "5443634597eb340cdec0734f76267a827c2d366f00a6f9195141c78828016ac2"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "94cd289f950aad603d4f2fee8f7cced4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 158861,
            "upload_time": "2023-11-20T21:54:39",
            "upload_time_iso_8601": "2023-11-20T21:54:39.549269Z",
            "url": "https://files.pythonhosted.org/packages/51/27/887b0378e0a907489a07bdeb808fa5ed349675245c6ee14d9f6d00304f96/python_rtmidi-1.5.8-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4dec57cecde253daab896ce53778520cd41eb062641862ebdb0ee6f97511b1d9",
                "md5": "b718e4df12f6640379285ce70c524c85",
                "sha256": "29d9c9d9f82ce679fecad7bb4cb79f3a24574ea84600e377194b4cc1baacec0e"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b718e4df12f6640379285ce70c524c85",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 153416,
            "upload_time": "2023-11-20T21:54:40",
            "upload_time_iso_8601": "2023-11-20T21:54:40.835268Z",
            "url": "https://files.pythonhosted.org/packages/4d/ec/57cecde253daab896ce53778520cd41eb062641862ebdb0ee6f97511b1d9/python_rtmidi-1.5.8-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f5bdc19c53d9d512b74dc2cca3725591cc612b9465645695a0696352a8c8b54",
                "md5": "20200c6879ffc1f2cdadaccce0c37413",
                "sha256": "25f5a5db7be98911c41ca5bebb262fcf9a7c89600b88fd3c207ceafd3101e721"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp312-cp312-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "20200c6879ffc1f2cdadaccce0c37413",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 305696,
            "upload_time": "2023-11-20T21:54:42",
            "upload_time_iso_8601": "2023-11-20T21:54:42.037906Z",
            "url": "https://files.pythonhosted.org/packages/6f/5b/dc19c53d9d512b74dc2cca3725591cc612b9465645695a0696352a8c8b54/python_rtmidi-1.5.8-cp312-cp312-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6925a60f56dfb2740e644e932233928947423cd2101895319b331f84527eb31",
                "md5": "d8f8c8d7410e776cb8febd2d8f8ecbe3",
                "sha256": "cec30924e305f55284594ccf35a71dee7216fd308dfa2dec1b3ed03e6f243803"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d8f8c8d7410e776cb8febd2d8f8ecbe3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 315579,
            "upload_time": "2023-11-20T21:54:43",
            "upload_time_iso_8601": "2023-11-20T21:54:43.339613Z",
            "url": "https://files.pythonhosted.org/packages/f6/92/5a60f56dfb2740e644e932233928947423cd2101895319b331f84527eb31/python_rtmidi-1.5.8-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93466af077d262f521ea2bf1ab60b8aad72f34fe6dd55af739176605369d449c",
                "md5": "84b427a0971c8668c8fa9cf7bc473121",
                "sha256": "052c89933cae4fca354012d8ca7248f4f9e1e3f062471409d48415a7f7d7e59e"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "84b427a0971c8668c8fa9cf7bc473121",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 129755,
            "upload_time": "2023-11-20T21:54:44",
            "upload_time_iso_8601": "2023-11-20T21:54:44.935207Z",
            "url": "https://files.pythonhosted.org/packages/93/46/6af077d262f521ea2bf1ab60b8aad72f34fe6dd55af739176605369d449c/python_rtmidi-1.5.8-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c61062735cb57ca237f78a60fb7ca097ead1d83f542fa2d172e06416cb7d0f2",
                "md5": "cc5e44d815b36bd8942d6f55673085bf",
                "sha256": "7bce7f17c71a71d8ef0bfeae3cb8a7652dd02f0d5067de882e1ee44eb38518db"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cc5e44d815b36bd8942d6f55673085bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 155385,
            "upload_time": "2023-11-20T21:54:46",
            "upload_time_iso_8601": "2023-11-20T21:54:46.132272Z",
            "url": "https://files.pythonhosted.org/packages/6c/61/062735cb57ca237f78a60fb7ca097ead1d83f542fa2d172e06416cb7d0f2/python_rtmidi-1.5.8-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ede81eda7f8f7ab5ee9f28a4d7b59ed2442d0545adb9ba210218bf31dcd1701",
                "md5": "1258493039203f324ad8c39a09e3e857",
                "sha256": "1d5da765184150fb946043d59be4039b36a8060ede025f109ef20492dbf99075"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1258493039203f324ad8c39a09e3e857",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 150166,
            "upload_time": "2023-11-20T21:54:47",
            "upload_time_iso_8601": "2023-11-20T21:54:47.260783Z",
            "url": "https://files.pythonhosted.org/packages/6e/de/81eda7f8f7ab5ee9f28a4d7b59ed2442d0545adb9ba210218bf31dcd1701/python_rtmidi-1.5.8-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea10fbf8ff2b69f07423fa775bcb688fd1021989dae388318d6906d6cfe060bb",
                "md5": "88de15ebca7c6d05dd266f9c87256a95",
                "sha256": "a5582983ad57ea7f0a7797ddc3e258efb00f8326113b6ddfa85b5165a4151806"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp38-cp38-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "88de15ebca7c6d05dd266f9c87256a95",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 307623,
            "upload_time": "2023-11-20T21:54:48",
            "upload_time_iso_8601": "2023-11-20T21:54:48.507689Z",
            "url": "https://files.pythonhosted.org/packages/ea/10/fbf8ff2b69f07423fa775bcb688fd1021989dae388318d6906d6cfe060bb/python_rtmidi-1.5.8-cp38-cp38-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7353d3222f330669f59df9592f926f8d7e9735107473898ccc8d348349ab84c",
                "md5": "c78f4e485e7cde0ebffebc870260c78a",
                "sha256": "c60dd180e5130fb87571e71aea30e2ef0512131aab45865a7d67063ed8e52ca4"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp38-cp38-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c78f4e485e7cde0ebffebc870260c78a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 321351,
            "upload_time": "2023-11-20T21:54:49",
            "upload_time_iso_8601": "2023-11-20T21:54:49.837262Z",
            "url": "https://files.pythonhosted.org/packages/d7/35/3d3222f330669f59df9592f926f8d7e9735107473898ccc8d348349ab84c/python_rtmidi-1.5.8-cp38-cp38-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a257e6b825e0bacec6ae38b25d82aeaf5796eafff782f2b3417b552ea90b8a1",
                "md5": "91acd6cc514a162429e753e84df9c10b",
                "sha256": "26149186367341bf5b0a3ac17b495f6a25950bd3da6b4f13d25ac0a9ce8208dd"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "91acd6cc514a162429e753e84df9c10b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 136393,
            "upload_time": "2023-11-20T21:54:51",
            "upload_time_iso_8601": "2023-11-20T21:54:51.751322Z",
            "url": "https://files.pythonhosted.org/packages/6a/25/7e6b825e0bacec6ae38b25d82aeaf5796eafff782f2b3417b552ea90b8a1/python_rtmidi-1.5.8-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "254b5ca7936f22974fce66f600a3b30e50bb17acb94dbadee0b15b310aaf7066",
                "md5": "9162692d5c3d3975886f69ddf97814db",
                "sha256": "82e61bc1b51aa91d9e615827056e80f78dbe364248eecd61698b233f7af903f6"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9162692d5c3d3975886f69ddf97814db",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 148907,
            "upload_time": "2023-11-20T21:54:52",
            "upload_time_iso_8601": "2023-11-20T21:54:52.996263Z",
            "url": "https://files.pythonhosted.org/packages/25/4b/5ca7936f22974fce66f600a3b30e50bb17acb94dbadee0b15b310aaf7066/python_rtmidi-1.5.8-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d2945cc82f68de966069d5884a0ae92f8f04c596f4045f0bf93955c3fe3c2a9",
                "md5": "07b1c7989e1e3defb49bbb4375f4ffd0",
                "sha256": "a706e9850e22acc57fa840c60fdc4541baafe462a05ff7631a6d9eb91c65e171"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "07b1c7989e1e3defb49bbb4375f4ffd0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 145350,
            "upload_time": "2023-11-20T21:54:54",
            "upload_time_iso_8601": "2023-11-20T21:54:54.429394Z",
            "url": "https://files.pythonhosted.org/packages/4d/29/45cc82f68de966069d5884a0ae92f8f04c596f4045f0bf93955c3fe3c2a9/python_rtmidi-1.5.8-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25890a844ce7f774784f08fe230cbd114dccff722122203efcc1a888876ba5d5",
                "md5": "4f8d10c2c11c7cf755de10ca7c9e80bb",
                "sha256": "5966172ed28add6ff2b76d389702931bfc7ff3cc741c0e4b0d1aaae269ab7a8e"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp39-cp39-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4f8d10c2c11c7cf755de10ca7c9e80bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 293238,
            "upload_time": "2023-11-20T21:54:55",
            "upload_time_iso_8601": "2023-11-20T21:54:55.642535Z",
            "url": "https://files.pythonhosted.org/packages/25/89/0a844ce7f774784f08fe230cbd114dccff722122203efcc1a888876ba5d5/python_rtmidi-1.5.8-cp39-cp39-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c70a9c719afb56538041c5b970dc3dea41447fec2850039d0d65f9661ea46f50",
                "md5": "28eb47481497b51f3fc7ef31544b3d3b",
                "sha256": "29661939f9b7bd1a4e29835f50f4790e741dacd21a5cb143297aefb51deefdec"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "28eb47481497b51f3fc7ef31544b3d3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 304027,
            "upload_time": "2023-11-20T21:54:58",
            "upload_time_iso_8601": "2023-11-20T21:54:58.251043Z",
            "url": "https://files.pythonhosted.org/packages/c7/0a/9c719afb56538041c5b970dc3dea41447fec2850039d0d65f9661ea46f50/python_rtmidi-1.5.8-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9ea2b775358c10f7ab13e4bbf07c488f9ea7e26728ac3337657b85116c1323d",
                "md5": "997b36e69e500af3e48e186b15b29d18",
                "sha256": "dd2bcbea822488fca6b8d9fc7e78a91da12914f3b88dc086f051cb65a643449f"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "997b36e69e500af3e48e186b15b29d18",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 132529,
            "upload_time": "2023-11-20T21:55:00",
            "upload_time_iso_8601": "2023-11-20T21:55:00.319469Z",
            "url": "https://files.pythonhosted.org/packages/c9/ea/2b775358c10f7ab13e4bbf07c488f9ea7e26728ac3337657b85116c1323d/python_rtmidi-1.5.8-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ddee0f91965dcc471714c69df21e5ca3d94dc81411b7dee2d31ff1184bea07c9",
                "md5": "1249c323511c769987cca5f56a09141f",
                "sha256": "7f9ade68b068ae09000ecb562ae9521da3a234361ad5449e83fc734544d004fa"
            },
            "downloads": -1,
            "filename": "python_rtmidi-1.5.8.tar.gz",
            "has_sig": false,
            "md5_digest": "1249c323511c769987cca5f56a09141f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 368130,
            "upload_time": "2023-11-20T21:55:02",
            "upload_time_iso_8601": "2023-11-20T21:55:02.192242Z",
            "url": "https://files.pythonhosted.org/packages/dd/ee/0f91965dcc471714c69df21e5ca3d94dc81411b7dee2d31ff1184bea07c9/python_rtmidi-1.5.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-20 21:55:02",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "SpotlightKid",
    "github_project": "python-rtmidi",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "python-rtmidi"
}
        
Elapsed time: 0.14223s