shithub: aubio

ref: 04ceeab0124ab3e08530e0ebbf93179c3ba7d31d
dir: /tests/python/localaubio.py/

View raw version

# add ${src}/python and ${src}/python/aubio/.libs to python path
# so the script is runnable from a compiled source tree.

try:
  from aubio.aubiowrapper import * 
except ImportError:
  try: 
    import os
    import sys
    cur_dir = os.path.dirname(sys.argv[0])
    sys.path.append(os.path.join(cur_dir,'..','..','python'))
    sys.path.append(os.path.join(cur_dir,'..','..','python','aubio','.libs'))
    from aubio.aubiowrapper import * 
  except ImportError:
    raise
else:
  raise ImportError, \
    """
    The aubio module could be imported BEFORE adding the source directory to
    your path. Make sure you NO other version of the python aubio module is
    installed on your system.
    """