From: Josh Roesslein Date: Thu, 30 Jul 2009 03:13:23 +0000 (-0500) Subject: Added global, unauthenticated instance of API class into package init module. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=3574611c738cc76cd152a5511ddbbd3b728ed94e;p=tweepy.git Added global, unauthenticated instance of API class into package init module. --- diff --git a/__init__.py b/__init__.py index 866caaf..6d6657d 100644 --- a/__init__.py +++ b/__init__.py @@ -6,3 +6,6 @@ __version__ = '1.0' from models import * from error import TweepError from api import API + +# Global, unauthenticated instance of API +api = API()