From 758a824184cd75ddecd583c75769713f39f68956 Mon Sep 17 00:00:00 2001 From: Trent Palmer Date: Sat, 19 Dec 2020 01:06:27 -0800 Subject: [PATCH] add __init__.py --- __init__.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 __init__.py diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..8d26b38 --- /dev/null +++ b/__init__.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python3 +# app/__init__.py + +import logging +from flask import Flask +from config import Config + +app = Flask(__name__) +app.config.from_object(Config) + +from app.sendxmpp_handler import SENDXMPPHandler +from app import routes + + +if app.config['LOGGING_XMPP_SERVER']: + sendxmpp_handler = SENDXMPPHandler( + logging_xmpp_server=(app.config['LOGGING_XMPP_SERVER']), + logging_xmpp_sender=(app.config['LOGGING_XMPP_SENDER']), + logging_xmpp_password=(app.config['LOGGING_XMPP_PASSWORD']), + logging_xmpp_recipient=(app.config['LOGGING_XMPP_RECIPIENT']), + logging_xmpp_command=(app.config['LOGGING_XMPP_COMMAND']), + logging_xmpp_use_tls=(app.config['LOGGING_XMPP_USE_TLS']), + ) + sendxmpp_handler.setLevel(logging.ERROR) + app.logger.addHandler(sendxmpp_handler)