Skip to content

Commit 962be4d

Browse files
committed
twitter feed and twitter sentiment analysis
1 parent 30709c0 commit 962be4d

File tree

16 files changed

+3299
-2
lines changed

16 files changed

+3299
-2
lines changed

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,3 @@ pyparsing==1.5.6
1111
pydot==1.0.28
1212
wsgiref==0.1.2
1313
feedparser==5.1.2
14-
tweepy==2.0

tweepy/__init__.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Tweepy
2+
# Copyright 2009-2010 Joshua Roesslein
3+
# See LICENSE for details.
4+
5+
"""
6+
Tweepy Twitter API library
7+
"""
8+
__version__ = '2.0'
9+
__author__ = 'Joshua Roesslein'
10+
__license__ = 'MIT'
11+
12+
from tweepy.models import Status, User, DirectMessage, Friendship, SavedSearch, SearchResult, ModelFactory, Category
13+
from tweepy.error import TweepError
14+
from tweepy.api import API
15+
from tweepy.cache import Cache, MemoryCache, FileCache
16+
from tweepy.auth import BasicAuthHandler, OAuthHandler
17+
from tweepy.streaming import Stream, StreamListener
18+
from tweepy.cursor import Cursor
19+
20+
# Global, unauthenticated instance of API
21+
api = API()
22+
23+
def debug(enable=True, level=1):
24+
25+
import httplib
26+
httplib.HTTPConnection.debuglevel = level
27+

0 commit comments

Comments
 (0)