Source code for bob.io.audio

# import Libraries of other lib packages
import bob.io.base

from ._library import *
from . import version
from .version import module as __version__

[docs]def get_config(): """Returns a string containing the configuration information. """ import bob.extension return bob.extension.get_config(__name__, version.externals)
# gets sphinx autodoc done right - don't remove it __all__ = [_ for _ in dir() if not _.startswith('_')]