Graduate

Modify client.py

......@@ -30,7 +30,7 @@ mtcnn = MTCNN(keep_all=True, post_process=True, device=device)
uri = 'ws://169.56.95.131:8765'
class Register(tk.Frame):
class Client(tk.Frame):
def __init__(self, parent, *args, **kwargs):
tk.Frame.__init__(self, parent, *args, **kwargs)
......@@ -161,6 +161,6 @@ class Register(tk.Frame):
if __name__ == '__main__':
root = tk.Tk()
Register(root)
Client(root)
root.mainloop()
\ No newline at end of file
......
module.exports = (function (){
return {
local: {
host: '169.56.95.131',
host: 'localhost',
user: 'root',
password: '1234',
database: 'attendance'
......