X-Git-Url: https://jfr.im/git/z_archive/twitter.git/blobdiff_plain/9b0c5df39edd3adfa7f38885b4fa3f4b0ccbef53..098660ce6ca34597e97f074b3af48f64dcf3ea03:/twitter/__init__.py diff --git a/twitter/__init__.py b/twitter/__init__.py index 5ceb152..fdc8e3a 100644 --- a/twitter/__init__.py +++ b/twitter/__init__.py @@ -1,9 +1,14 @@ """ The minimalist yet fully featured Twitter API and Python toolset. -For building your own applications, look at the `Twitter` class. +The Twitter class is the key to building your own Twitter-enabled +applications. Get help on it like this:: + + help(twitter.Twitter) + + """ -from api import * -from auth import NoAuth, UserPassAuth -from oauth import OAuth +from .api import Twitter, TwitterError, TwitterHTTPError, TwitterResponse +from .auth import NoAuth +from .oauth import OAuth, read_token_file, write_token_file