mirror of
https://gist.github.com/adc541a6245d55e39edd10dab1001a88.git
synced 2024-11-22 08:01:30 -08:00
26 lines
813 B
Python
26 lines
813 B
Python
|
#!/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)
|