""" ******************************************************************************** * CNIRevelator * * * * Desc: Application launcher & updater * * * * Copyright © 2018-2019 Adrien Bourmault (neox95) * * * * This file is part of CNIRevelator. * * * * CNIRevelator is free software: you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation, either version 3 of the License, or * * any later version. * * * * CNIRevelator is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY*without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with CNIRevelator. If not, see . * ******************************************************************************** """ from CNI_GLOBALVAR import * try: os.remove('error.log') os.remove('conf.ig') except: print("pass log deletion") pass if not os.path.exists(CST_FOLDER): try: os.makedirs(CST_FOLDER) except IOError: print("pass IO ERROR") pass print("debug") import logging from logging import FileHandler logger = logging.getLogger() logger.setLevel(logging.INFO) formatter = logging.Formatter('%(asctime)s :: %(levelname)s :: %(message)s') error_handler = FileHandler((CST_FOLDER + '\\error.log'), mode='w', encoding='utf-8', delay=True) info_handler = FileHandler((CST_FOLDER + '\\cnirevelator.log'), mode='w', encoding='utf-8') error_handler.setLevel(logging.ERROR) logger.addHandler(error_handler) info_handler.setLevel(logging.DEBUG) info_handler.setFormatter(formatter) logger.addHandler(info_handler) from CNI_classes import * from CNI_Update import * def main(logger): logger.error('') logger.info('main() : **** Creating App_main() ****') main_w = App_main(logger) main_w.montext('* ' + CST_NAME + ' ' + CST_VER + ' ' + CST_TYPE + ' Revision ' + CST_REV + ' *\n') import CNI_pytesseract as pytesseract try: os.environ['PATH'] = CST_FOLDER + 'Tesseract-OCR4\\' os.environ['TESSDATA_PREFIX'] = CST_FOLDER + 'Tesseract-OCR4\\tessdata' tesser_version = pytesseract.get_tesseract_version() except Exception as e: logger.error('main() : **** ERROR WITH TESSERACT MODULE ' + str(e) + ' ****') else: text = 'Tesseract version ' + str(tesser_version) + ' Licensed Apache 2004 successfully initiated\n' main_w.montext(text) main_w.montext('\n\nEntrez la première ligne de MRZ svp \n') if CST_CHANGELOG.isOn: showinfo('Changelog : résumé de mise à jour', ('Version du logiciel : ' + CST_VER + ' ' + CST_TYPE + ' Revision ' + CST_REV + '\n\n' + CST_CHANGELOG.text), parent=main_w) logger.info('main() : **** Launching App_main() ****') main_w.mainloop() logger.info('main() : **** Ending App_main() ****') logger.info('launcher : ' + CST_NAME + ' ' + CST_VER) logger.info('launcher : *****Hello World*****') logger.info('launcher : *****Launching SoftUpdate()*****') logger.info('launcher : *****Launching main()*****') State = main(logger) logger.info('launcher : *****Ending main()*****') logger.info('launcher : *****Goodbye!*****') handlers = logger.handlers[:] for handler in handlers: handler.close() logger.removeHandler(handler) try: with open(CST_FOLDER + '\\error.log') as (echo): try: os.remove('error.log') except OSError: pass from shutil import copyfile temptwo = str(echo.read()) if len(temptwo) != 1: copyfile(CST_FOLDER + '\\cnirevelator.log', 'error.log') except IOError: pass print("exit") sys.exit(0)