python-midi
python-midi copied to clipboard
Python2 Errors
When running "mididump.py /Users/apple/Desktop/magenta/python-midi" command
I am getting this error:
script_code = compile(script_text, script_filename, 'exec')
File "/Users/apple/anaconda3/envs/magenta/lib/python3.6/site-packages/midi-0.2.3-py3.6.egg/EGG-INFO/scripts/mididump.py", line 9
print "Usage: {0}
How can I solve this problem? Since this file belongs to my Anaconda environment , I cannot make any 2to3 conversion for this Py file.
Did you figure it out?
I have the same issue and I'm just making a python file with this setup.py compatible with python3. Will let you know how it goes.
#!/usr/bin/env python
import os
from setuptools import setup, Extension
import setuptools.command.install
__base__ = {
'name':'midi',
'version':'v0.2.3',
'description':'Python MIDI API',
'author':'giles hall',
'author_email':'[email protected]',
'package_dir':{'midi':'src'},
'py_modules':['midi.containers', 'midi.__init__', 'midi.events', 'midi.util', 'midi.fileio', 'midi.constants'],
'ext_modules':[],
'ext_package':'',
'scripts':['scripts/mididump.py', 'scripts/mididumphw.py', 'scripts/midiplay.py'],
}
# this kludge ensures we run the build_ext first before anything else
# otherwise, we will be missing generated files during the copy
class Install_Command_build_ext_first(setuptools.command.install.install):
def run(self):
self.run_command("build_ext")
return setuptools.command.install.install.run(self)
def setup_alsa(ns):
# scan for alsa include directory
dirs = ["/usr/include", "/usr/local/include"]
testfile = "alsa/asoundlib.h"
alsadir = None
for _dir in dirs:
tfn = os.path.join(_dir, testfile)
if os.path.exists(tfn):
alsadir = _dir
break
if not alsadir:
print("Warning: could not find asoundlib.h, not including ALSA sequencer support!")
return
srclist = ["src/sequencer_alsa/sequencer_alsa.i"]
include_arg = "-I%s" % alsadir
extns = {
'libraries': ['asound'],
'swig_opts': [include_arg],
#'extra_compile_args':['-DSWIGRUNTIME_DEBUG']
}
ext = Extension('_sequencer_alsa', srclist, **extns)
ns['ext_modules'].append(ext)
ns['package_dir']['midi.sequencer'] = 'src/sequencer_alsa'
ns['py_modules'].append('midi.sequencer.__init__')
ns['py_modules'].append('midi.sequencer.sequencer')
ns['py_modules'].append('midi.sequencer.sequencer_alsa')
ns['ext_package'] = 'midi.sequencer'
ns['cmdclass'] = {'install': Install_Command_build_ext_first}
def configure_platform():
from sys import platform
ns = __base__.copy()
# currently, only the ALSA sequencer is supported
if platform.startswith('linux'):
setup_alsa(ns)
pass
else:
print("No sequencer available for '%s' platform." % platform)
return ns
if __name__ == "__main__":
setup(**configure_platform())