Skip to content

Commit 3db519e

Browse files
author
Sudhanshu
committed
Added fetchTweets method in datalink with epooch timestamp support
1 parent 6063bc8 commit 3db519e

File tree

2 files changed

+26
-8
lines changed

2 files changed

+26
-8
lines changed

main.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
from src import features, datalink, hashtags
2+
import time
23

34
dblink = datalink.DatabaseConnectionDown('perilipsi_tweets')
45
emoTest = features.Emoticons()
56
dictTest = features.DictionaryTest()
6-
testTweet = dblink.fetchTweet()
77
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`
1110
print "Emoticons:", emoTest.analyse(testTweet)
1211
print "DictionaryTest:", dictTest.analyse(testTweet)
12+
print "Hashtags: ",hashtest.analyseHashtagTweet(testTweet)

src/datalink.py

+22-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import MySQLdb, random
1+
import MySQLdb, random, time
22

33
class DatabaseConnectionDown:
44
def __init__(self,adb):
@@ -14,12 +14,30 @@ def __init__(self,adb):
1414

1515
def fetchTweet(self):
1616
'''
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'
1819
'''
1920
randomNo = random.randint(1,10000);
2021
with self.db:
2122
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`
2324
cur.execute(query)
2425
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}

0 commit comments

Comments
 (0)