You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.5 KiB
49 lines
1.5 KiB
6 years ago
|
# -*- coding: utf-8 -*-
|
||
|
#
|
||
|
# base class for easier library inclusion
|
||
|
#
|
||
|
# Copyright (C) 2017-2018 Chris Caron <lead2gold@gmail.com>
|
||
|
#
|
||
|
# This file is part of apprise.
|
||
|
#
|
||
|
# This program is free software; you can redistribute it and/or modify it
|
||
|
# under the terms of the GNU Lesser General Public License as published by
|
||
|
# the Free Software Foundation; either version 3 of the License, or
|
||
|
# (at your option) any later version.
|
||
|
#
|
||
|
# This program 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 Lesser General Public License for more details.
|
||
|
|
||
|
__title__ = 'apprise'
|
||
|
__version__ = '0.5.0'
|
||
|
__author__ = 'Chris Caron <lead2gold@gmail.com>'
|
||
|
__license__ = 'GPLv3'
|
||
|
__copywrite__ = 'Copyright 2017-2018 Chris Caron <lead2gold@gmail.com>'
|
||
|
|
||
|
from .common import NotifyType
|
||
|
from .common import NOTIFY_TYPES
|
||
|
from .common import NotifyImageSize
|
||
|
from .common import NOTIFY_IMAGE_SIZES
|
||
|
from .common import NotifyFormat
|
||
|
from .common import NOTIFY_FORMATS
|
||
|
from .plugins.NotifyBase import NotifyBase
|
||
|
|
||
|
from .Apprise import Apprise
|
||
|
from .AppriseAsset import AppriseAsset
|
||
|
|
||
|
# Set default logging handler to avoid "No handler found" warnings.
|
||
|
import logging
|
||
|
from logging import NullHandler
|
||
|
logging.getLogger(__name__).addHandler(NullHandler())
|
||
|
|
||
|
__all__ = [
|
||
|
# Core
|
||
|
'Apprise', 'AppriseAsset', 'NotifyBase',
|
||
|
|
||
|
# Reference
|
||
|
'NotifyType', 'NotifyImageSize', 'NotifyFormat', 'NOTIFY_TYPES',
|
||
|
'NOTIFY_IMAGE_SIZES', 'NOTIFY_FORMATS',
|
||
|
]
|