Metadata-Version: 1.0
Name: simplecoremidi
Version: 0.2.1
Summary: Simple OS X CoreMIDI interface
Home-page: https://github.com/sixohsix/simplecoremidi
Author: Mike Verdone
Author-email: mike.verdone+simplecoremidi@gmail.com
License: Copyright (C) 2012 Mike Verdone

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.

Description: Simple CoreMIDI for Python
        ==========================
        
        Simple CoreMIDI for Python is the simplest way of using MIDI in Python
        on Mac OS X. Period.
        
        
        Installation
        ------------
        
            pip install simplecoremidi
        
        
        Usage
        -----
        
        To send midi out from your application::
        
            from simplecoremidi import send_midi
            send_midi((0x90, 0x3c, 0x40))
        
        This sends a MIDI Note On signal. To receive it you'll have to
        configure your DAW or software to receive from the "simple core midi
        source" MIDI source.
        
        To receive midi from another application::
        
            from simplecoremidi import recv_midi
            data = recv_midi()
        
        This returns all the midi data sent to the "simple core midi
        destination" MIDI destination since your last call. Put it inside a
        loop and poll it.
        
        Look at the example in the simplecoremidi/examples directory.
        
        
        Notes
        -----
        
        - It only works on Macs. It will never work on Windows or Linux.
        - It is not configurable.
        
Keywords: osx,CoreMIDI,MIDI,Mac OS X
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Environment :: MacOS X
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Multimedia :: Sound/Audio :: MIDI
Classifier: License :: OSI Approved :: MIT License
