- More test coverage! - Fix ``search_gen`` - Fixed ``get_lastfunction_header`` to actually do what its docstring says, returns ``None`` if header is not found - Updated some internal API code, ``__init__`` didn't need to have ``self.auth`` and ``self.headers`` because they were never used anywhere else but the ``__init__``
25 lines
768 B
Python
25 lines
768 B
Python
# ______ __ __
|
|
# /_ __/_ __ __ __ / /_ / /_ ____ ____
|
|
# / / | | /| / // / / // __// __ \ / __ \ / __ \
|
|
# / / | |/ |/ // /_/ // /_ / / / // /_/ // / / /
|
|
# /_/ |__/|__/ \__, / \__//_/ /_/ \____//_/ /_/
|
|
# /____/
|
|
|
|
"""
|
|
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>'
|
|
__version__ = '2.10.1'
|
|
|
|
from .twython import Twython
|
|
from .streaming import TwythonStreamer
|
|
from .exceptions import TwythonError, TwythonRateLimitError, TwythonAuthError
|