from flask_restful import Resource from hub_api.config import Config class IdfGenerator(Resource, Config): def __init__(self): super().__init__() def post(self): """ API call generate the IDF file for the input data """ raise NotImplementedError()