comparison phe/metadata/__init__.py @ 10:c2f8e7580133 draft

Uploaded
author ulfschaefer
date Mon, 21 Dec 2015 10:50:17 -0500
parents 834a312c0114
children
comparison
equal deleted inserted replaced
9:2e3115b4df74 10:c2f8e7580133
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.")