]> AND Private Git Repository - predictops.git/commitdiff
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
cleaning main.py file
authorChristophe Guyeux <christophe.guyeux@univ-fcomte.fr>
Mon, 10 Feb 2020 13:27:44 +0000 (14:27 +0100)
committerChristophe Guyeux <christophe.guyeux@univ-fcomte.fr>
Mon, 10 Feb 2020 13:27:44 +0000 (14:27 +0100)
main.py

diff --git a/main.py b/main.py
index 3e31d16336be3e942be06424fc38c9ef114e3e4d..9ccb687252334a014f74a9d4bdf468977947ccca 100644 (file)
--- a/main.py
+++ b/main.py
@@ -1,11 +1,9 @@
 from lib.source import MeteoFrance
 
-from configparser import ConfigParser
-from logging.config import fileConfig
 from logging import getLogger
+from logging.config import fileConfig
 from pathlib import Path
 from shutil import rmtree
-from subprocess import Popen, PIPE
 
 
 fileConfig((Path.cwd() / 'config') / 'logging.cfg')
@@ -17,8 +15,7 @@ class Engine:
         logger.info("Predictops engine launched")
         if clean:
             self.clean()
-            print("Ne pas oublier d'exporter la BDD dans pgModeler")
-            print("Ni de copier l'archive dans la data")
+            print("To prevent from downloading again csv files, copy the archive in data rep")
 
     def clean(self):
         # Cleaning the data directory
@@ -29,24 +26,6 @@ class Engine:
         p = Path(Path.cwd() / 'data')
         p.mkdir()
 
-        # Cleaning the postgresql database
-        config = ConfigParser()
-        config.read((Path.cwd() / 'config') / 'main.cfg')
-
-        host   = config['postgresql']['host']
-        user   = config['postgresql']['user']
-        port   = config['postgresql']['port']
-        dbname = config['postgresql']['dbname']
-
-        logger.info("PostgreSQL database deletion")
-        command = ['dropdb', '-h', host, '-U', user, '-p', port, dbname]
-        process = Popen(command, stdout=PIPE, stderr=PIPE)
-        process.communicate()
-
-        logger.info("PostgreSQL database creation")
-        command = ['createdb', '-h', host, '-U', user, '-p', port, dbname]
-        process = Popen(command, stdout=PIPE, stderr=PIPE)
-        process.communicate()
 
     def add_meteofrance(self):
         self.meteofrance = MeteoFrance()