Source code for colour.io

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

from __future__ import absolute_import

from .tabular import (
    read_spectral_data_from_csv_file,
    read_spds_from_csv_file,
    write_spds_to_csv_file)

__all__ = ['read_spectral_data_from_csv_file',
           'read_spds_from_csv_file',
           'write_spds_to_csv_file']