Source code for colour.utilities

#!/usr/bin/env python
# -*- coding: utf-8 -*-

from __future__ import absolute_import

from .common import batch, is_scipy_installed, is_string
from .data_structures import Lookup, Structure, CaseInsensitiveMapping
from .verbose import message_box, warning

__all__ = ['batch', 'is_scipy_installed', 'is_string']
__all__ += ['Lookup', 'Structure', 'CaseInsensitiveMapping']
__all__ += ['message_box', 'warning']