File tree 2 files changed +26
-8
lines changed
2 files changed +26
-8
lines changed Original file line number Diff line number Diff line change 1
1
from src import features , datalink , hashtags
2
+ import time
2
3
3
4
dblink = datalink .DatabaseConnectionDown ('perilipsi_tweets' )
4
5
emoTest = features .Emoticons ()
5
6
dictTest = features .DictionaryTest ()
6
- testTweet = dblink .fetchTweet ()
7
7
hashtest = hashtags .hashtags ()
8
- print hashtest .analyseHashtagTweet (testTweet )
9
-
10
- print "\n \n " + testTweet + "\n \n "
8
+ testTweet , tweetTime = dblink .fetchTweet ()['tweet' ], dblink .fetchTweet ()['time' ]
9
+ print testTweet + " Time:" + `tweetTime`
11
10
print "Emoticons:" , emoTest .analyse (testTweet )
12
11
print "DictionaryTest:" , dictTest .analyse (testTweet )
12
+ print "Hashtags: " ,hashtest .analyseHashtagTweet (testTweet )
Original file line number Diff line number Diff line change 1
- import MySQLdb , random
1
+ import MySQLdb , random , time
2
2
3
3
class DatabaseConnectionDown :
4
4
def __init__ (self ,adb ):
@@ -14,12 +14,30 @@ def __init__(self,adb):
14
14
15
15
def fetchTweet (self ):
16
16
'''
17
- This method returns a random tweet from the Database
17
+ This method returns a dictionary of tweet and its timestamp from the Database
18
+ DictKeys: 'tweet', 'time'
18
19
'''
19
20
randomNo = random .randint (1 ,10000 );
20
21
with self .db :
21
22
cur = self .db .cursor ()
22
- query = "Select `text` from `" + self .adb + "`.`tweet` where `iso_language` ='en' LIMIT " + `randomNo` + ", " + `randomNo+1`
23
+ query = "Select `text`, `created_at` from `" + self .adb + "`.`tweet` where `iso_language` ='en' LIMIT " + `randomNo` + ", " + `randomNo+1`
23
24
cur .execute (query )
24
25
temp = cur .fetchone ()
25
- return temp [0 ]
26
+ return {'tweet' :temp [0 ], 'time' :int (time .mktime (time .strptime (str (temp [1 ]),'%Y-%m-%d %H:%M:%S' )))}
27
+
28
+ def fetchTweets (self , limit ):
29
+ '''
30
+ This method returns a dictionary of list of tweets and list of timestamps from the Database
31
+ DictKeys: 'tweets', 'time'
32
+ '''
33
+ with self .db :
34
+ cur = self .db .cursor ()
35
+ query = "Select `text`, `created_at` from `" + self .adb + "`.`tweet` where `iso_language` ='en' LIMIT 0," + `limit`
36
+ cur .execute (query )
37
+ temp = cur .fetchall ()
38
+ tweets = []
39
+ timestamps = []
40
+ for i in temp :
41
+ tweets .append (i [0 ])
42
+ timestamps .append (int (time .mktime (time .strptime (str (i [1 ]),'%Y-%m-%d %H:%M:%S' ))))
43
+ return {'tweets' :tweets , 'time' :timestamps }
You can’t perform that action at this time.
0 commit comments