]> jfr.im git - z_archive/twitter.git/blobdiff - twitter/__init__.py
Make twitter-log work with py 3.2
[z_archive/twitter.git] / twitter / __init__.py
index 5ceb15257adc610089b73287e0a7f5d61d21247f..fdc8e3ab148bf1364adadbf013020d800b1197a2 100644 (file)
@@ -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