]> AND Private Git Repository - predictops.git/blob - predictops/source/sentinelles.py
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Refactoring, fin du lever/coucher de soleil, et début de sentinelles
[predictops.git] / predictops / source / sentinelles.py
1 from configparser import ConfigParser
2 from logging import getLogger
3 from logging.config import fileConfig
4 from pathlib import Path
5
6
7 fileConfig((Path.cwd() / 'config') / 'logging.cfg')
8 logger = getLogger()
9
10
11 class Sentinelles:
12     def __init__(self, config_file):
13         '''
14         Constructor of the MeteoFrance source of feature.
15         '''
16         self._config = ConfigParser()
17         self._config.read(config_file)