Source code for titania.data.data_core
from abc import ABC, abstractmethod
[docs]class TitaniaDataInterface(ABC):
"""
This is an abstract class that interfaces all data classes.
It requires only the difinition of :func:`~TitaniaDataInterface.fetch`,
which can return any kind of data.
"""