This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sqlite3 | |
from datetime import datetime, date | |
from typing import Tuple, Dict, List | |
import getpass | |
from mattermostdriver import Driver | |
import pathlib | |
import json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef LAZYINTERPOLATION_H | |
#define LAZYINTERPOLATION_H | |
#include <functional> | |
/** | |
* @brief This class manages data interpolation and saves results. | |
* During construction a vector containing data is passed. Interpolated | |
* data is saved in this class and another interpolation is avoided. | |
*/ |