#!/usr/bin/env python3 # import os # import time import sqlite3 # database = sqlite3.connect('data.db') class Database: def __init__(self): self._connection = sqlite3.connect("data.db") self._cursor = self._connection.cursor() # self._cursor. # print(self._database) print(self._cursor) def initDB(self): print("If db not exists...generate schema here") def login(self, username, password): print("try to login") return "userobject" or False # Use flask session management? # What crypt/hash to use? def getMyTracked(self, userid): return "list of tracked users" def msg(self, msg): print(msg) if __name__ == "__main__": database = Database() database.initDB() database.msg("2")