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

Uploaded
author ulfschaefer
date Thu, 10 Dec 2015 09:22:39 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:834a312c0114
1 """Metadata related information."""
2
3 import abc
4
5 class PHEMetaData(object):
6 """Abstract class to provide interface for meta-data creation."""
7
8 __metaclass__ = abc.ABCMeta
9
10 def __init__(self):
11 pass
12
13 @abc.abstractmethod
14 def get_meta(self):
15 """Get the metadata."""
16 raise NotImplementedError("get meta has not been implemented yet.")