30 lines
579 B
Python
30 lines
579 B
Python
# -*- coding: UTF-8 -*-
|
|
|
|
"""
|
|
fbchat
|
|
~~~~~~
|
|
|
|
Facebook Chat (Messenger) for Python
|
|
|
|
:copyright: (c) 2015 - 2018 by Taehoon Kim
|
|
:license: BSD 3-Clause, see LICENSE for more details.
|
|
"""
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
from .client import *
|
|
|
|
__title__ = 'fbchat'
|
|
__version__ = '1.4.2'
|
|
__description__ = 'Facebook Chat (Messenger) for Python'
|
|
|
|
__copyright__ = 'Copyright 2015 - 2018 by Taehoon Kim'
|
|
__license__ = 'BSD 3-Clause'
|
|
|
|
__author__ = 'Taehoon Kim; Moreels Pieter-Jan; Mads Marquart'
|
|
__email__ = 'carpedm20@gmail.com'
|
|
|
|
__all__ = [
|
|
'Client',
|
|
]
|