add __init__.py

This commit is contained in:
Trent Palmer 2020-12-19 01:06:27 -08:00
parent ab394e508c
commit 758a824184
1 changed files with 25 additions and 0 deletions

25
__init__.py Normal file
View File

@ -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)