forked from prehensile/skypebot
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8b38314
commit 486cc4f
Showing
15 changed files
with
3,113 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Tweepy | ||
# Copyright 2009-2010 Joshua Roesslein | ||
# See LICENSE for details. | ||
|
||
""" | ||
Tweepy Twitter API library | ||
""" | ||
__version__ = '1.9' | ||
__author__ = 'Joshua Roesslein' | ||
__license__ = 'MIT' | ||
|
||
from tweepy.models import Status, User, DirectMessage, Friendship, SavedSearch, SearchResult, ModelFactory | ||
from tweepy.error import TweepError | ||
from tweepy.api import API | ||
from tweepy.cache import Cache, MemoryCache, FileCache | ||
from tweepy.auth import BasicAuthHandler, OAuthHandler | ||
from tweepy.streaming import Stream, StreamListener | ||
from tweepy.cursor import Cursor | ||
|
||
# Global, unauthenticated instance of API | ||
api = API() | ||
|
||
def debug(enable=True, level=1): | ||
|
||
import httplib | ||
httplib.HTTPConnection.debuglevel = level | ||
|
Oops, something went wrong.