platypush/platypush/__init__.py

35 lines
635 B
Python
Raw Normal View History

2018-07-30 22:08:06 +02:00
"""
Platypush
.. moduleauthor:: Fabio Manganiello <fabio@manganiello.tech>
2018-07-30 23:18:01 +02:00
.. license: MIT
2018-07-30 22:08:06 +02:00
"""
from .app import Application
2017-12-18 01:10:51 +01:00
from .config import Config
from .context import get_backend, get_bus, get_plugin
from .message.event import Event
from .message.request import Request
from .message.response import Response
from .runner import main
from .utils import run
2017-10-29 05:17:42 +01:00
__author__ = 'Fabio Manganiello <fabio@manganiello.tech>'
2023-07-22 23:36:04 +02:00
__version__ = '0.50.3'
__all__ = [
'Application',
'Config',
'Event',
'Request',
'Response',
'get_backend',
'get_bus',
'get_plugin',
'main',
'run',
]
2018-01-04 16:11:54 +01:00
# vim:sw=4:ts=4:et: