27 lines
466 B
Python
27 lines
466 B
Python
# -*- coding: UTF-8 -*-
|
|
|
|
"""
|
|
fbchat
|
|
~~~~~~
|
|
|
|
Facebook Chat (Messenger) for Python
|
|
|
|
:copyright: (c) 2015 by Taehoon Kim.
|
|
:license: BSD, see LICENSE for more details.
|
|
"""
|
|
|
|
|
|
from .client import *
|
|
|
|
|
|
__copyright__ = 'Copyright 2015 by Taehoon Kim'
|
|
__version__ = '0.8.5'
|
|
__license__ = 'BSD'
|
|
__author__ = 'Taehoon Kim; Moreels Pieter-Jan'
|
|
__email__ = 'carpedm20@gmail.com'
|
|
__source__ = 'https://github.com/carpedm20/fbchat/'
|
|
|
|
__all__ = [
|
|
'Client',
|
|
]
|