Check in Twitter Database Tools

This commit is contained in:
Klaus-Uwe Mitterer 2015-03-09 18:32:24 +01:00
commit 89bccfba67
3 changed files with 91 additions and 0 deletions

17
datecsv.sh Executable file
View file

@ -0,0 +1,17 @@
#!/bin/bash
DATAFILE=Database.db
OUTFILE=output.csv
SQLITE="sqlite3 -csv -header"
QUERY="SELECT SUBSTR(t.timestamp,0,11) AS 'Date', (SELECT COUNT(*) FROM tweets e WHERE SUBSTR(e.timestamp,0,11) = SUBSTR(t.timestamp,0,11)) AS 'Tweets'"
for i in $@;
do QUERY="$QUERY, (SELECT COUNT(*) FROM tweets e WHERE SUBSTR(e.timestamp,0,11) = SUBSTR(t.timestamp,0,11) AND LOWER(e.text) LIKE '%${i,,}%') AS '$i'"
done
QUERY="$QUERY FROM tweets t GROUP BY SUBSTR(t.timestamp,0,11);"
echo $QUERY
$SQLITE $DATAFILE "$QUERY" > $OUTFILE

54
filler.py Executable file
View file

@ -0,0 +1,54 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import HTMLParser, sqlite3, time, tweepy, os
user = "Username"
cke = "Consumer Key"
cse = "Consumer Secret"
ato = "Access Token"
ase = "Access Secret"
search = "from:" + user
database_filename = "Database.db"
sql_conn = sqlite3.connect(database_filename)
cur = sql_conn.cursor()
cur.execute("SELECT max(tweet_id) FROM tweets")
savepoint = int(cur.fetchone()[0])
print savepoint
auth = tweepy.OAuthHandler(cke, cse)
auth.set_access_token(ato, ase)
api = tweepy.API(auth)
timelineIterator = tweepy.Cursor(api.search, q=search, since_id=savepoint).items()
timeline = []
for status in timelineIterator:
timeline.append(status)
timeline.reverse()
tw_counter = 0
for status in timeline:
print "(%(date)s) %(name)s: %(message)s\n" % \
{ "date" : status.created_at,
"name" : status.author.screen_name.encode('utf-8'),
"message" : status.text.encode('utf-8') }
timestamp = status.created_at.strftime('%Y-%m-%d %H:%M:%S') + " +0000"
text = HTMLParser.HTMLParser().unescape(status.text).replace("'", "''")
cur.execute("INSERT INTO tweets('tweet_id','timestamp','text') VALUES(" + str(status.id) + ",'" + timestamp + "','" + text + "')")
tw_counter = tw_counter + 1
sql_conn.commit()
sql_conn.close()
print "Finished. %d Tweets stored" % (tw_counter)

20
makedb.py Executable file
View file

@ -0,0 +1,20 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os, sqlite3, sys
try:
file = sys.argv[1]
except IndexError:
file = "Database.db"
if os.path.isfile(file):
os.remove(file)
conn = sqlite3.connect(file)
curs = conn.cursor()
curs.execute("CREATE TABLE tweets(tweet_id numeric, timestamp text, text text);")
conn.commit()
conn.close()