blob: 001f2b2d3d60dec1f55352b37e55d09c029d6732 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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')
|