You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import os
|
|
|
|
"""
|
|
|
|
f.write(json.dumps(info)+"\n")
|
|
|
|
else:
|
|
|
|
f.write(info)
|
|
|
|
f.close()
|
|
|
|
except Exception as e:
|
|
|
|
#
|
|
|
|
# Not sure what should be done here ...
|
|
|
|
pass
|
|
|
|
finally:
|
|
|
|
DiskWriter.THREAD_LOCK.release()
|
|
|
|
class SQLiteReader (SQLite,DiskReader):
|
|
|
|
def __init__(self,**args):
|
|
|
|
super().__init__(**args)
|
|
|
|
# DiskReader.__init__(self,**args)
|
|
|
|
# self.path = args['database'] if 'database' in args else args['path']
|
|
|
|
# self.conn = sqlite3.connect(self.path,isolation_level=None)
|
|
|
|
# self.conn.row_factory = sqlite3.Row
|
|
|
|
self.table = args['table'] if 'table' in args else None
|
|
|
|
if self.fields and not self.isready() and self.table:
|