api_v1.4/hub_api/energy_plus/idf_generator.py
Guille 72b90557ff Redefine api structure
Add future methods
Update documentation
2023-07-21 11:43:52 -04:00

15 lines
276 B
Python

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()