twitools/tools.py

71 lines
1.1 KiB
Python
Raw Normal View History

import config
import os, sqlite3
class dbObject:
def __init__(self, path=config.dbpath):
self.conn = sqlite3.connect(path)
self.cur = self.conn.cursor()
def closeConnection(self):
return self.conn.close()
def commit(self):
return self.conn.commit()
def executeQuery(self, query):
return self.cur.execute(query)
def GetConnection(self):
return self.conn
def GetCursor(self):
return self.cur
2015-04-21 22:16:42 +00:00
def isInitialized(self):
try:
self.executeQuery("SELECT * FROM tweets")
return True
except:
return False
2015-04-21 22:21:16 +00:00
def dbCheck(db):
if dbInitialized(db):
2015-04-21 22:16:42 +00:00
return True
raise ValueError("Provided database file " + path + " is not initialized. Create it using makedb.py or csvdb.py")
def dbHelper(path):
2015-04-21 22:21:16 +00:00
db = dbObject(path)
dbCheck(db)
return db
2015-04-21 22:16:42 +00:00
2015-04-21 22:21:16 +00:00
def dbInitialized(db):
2015-04-21 22:16:42 +00:00
return db.isInitialized()
def fileExists(path):
return os.path.isfile(path)
2015-04-21 22:16:42 +00:00
def parseArgs(argv):
args = []
path = None
nextpath = False
for a in argv[1:]:
if nextpath:
path = a
nextpath = False
elif a == "-f":
if path != None:
raise ValueError("You can only pass one database file.")
nextpath = True
else:
args += [a]
return args, path