view phe/metadata/__init__.py @ 0:834a312c0114 draft

Uploaded
author ulfschaefer
date Thu, 10 Dec 2015 09:22:39 -0500
parents
children
line wrap: on
line source

"""Metadata related information."""

import abc

class PHEMetaData(object):
    """Abstract class to provide interface for meta-data creation."""

    __metaclass__ = abc.ABCMeta

    def __init__(self):
        pass

    @abc.abstractmethod
    def get_meta(self):
        """Get the metadata."""
        raise NotImplementedError("get meta has not been implemented yet.")