From 1585395e7e530665c565b88fea15cbea68d3a88d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Gl=C3=BCpker?= Date: Sun, 1 Oct 2017 14:50:19 +0200 Subject: Initial public release --- Database.py | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 Database.py (limited to 'Database.py') diff --git a/Database.py b/Database.py new file mode 100755 index 0000000..001f2b2 --- /dev/null +++ b/Database.py @@ -0,0 +1,34 @@ +#!/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') -- cgit v1.2.3