2014-10-27 16:29:04 -06:00
|
|
|
# ______ __ __
|
|
|
|
# /_ __/_ __ __ __ / /_ / /_ ____ ____
|
|
|
|
# / / | | /| / // / / // __// __ \ / __ \ / __ \
|
|
|
|
# / / | |/ |/ // /_/ // /_ / / / // /_/ // / / /
|
|
|
|
# /_/ |__/|__/ \__, / \__//_/ /_/ \____//_/ /_/
|
|
|
|
# /____/
|
|
|
|
|
|
|
|
"""
|
|
|
|
Twython
|
|
|
|
-------
|
|
|
|
|
|
|
|
Twython is a library for Python that wraps the Twitter API.
|
|
|
|
|
|
|
|
It aims to abstract away all the API endpoints, so that
|
|
|
|
additions to the library and/or the Twitter API won't
|
|
|
|
cause any overall problems.
|
|
|
|
|
|
|
|
Questions, comments? ryan@venodesigns.net
|
|
|
|
"""
|
|
|
|
|
|
|
|
__author__ = 'Ryan McGrath <ryan@venodesigns.net>'
|
2016-03-29 16:09:09 -06:00
|
|
|
__version__ = '3.3.0'
|
2014-10-27 16:29:04 -06:00
|
|
|
|
|
|
|
from .api import Twython
|
|
|
|
from .streaming import TwythonStreamer
|
|
|
|
from .exceptions import (
|
|
|
|
TwythonError, TwythonRateLimitError, TwythonAuthError,
|
|
|
|
TwythonStreamError
|
|
|
|
)
|