Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
KHY_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Graduate
2020-06-17 17:24:21 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
400d1beb887647c87bd964aa7adcdbeb7e5940f4
400d1beb
1 parent
4acd89fb
Modify client.py
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
client/client.py
webserver/myapp/conf/db.js
client/client.py
View file @
400d1be
...
...
@@ -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
...
...
webserver/myapp/conf/db.js
View file @
400d1be
module
.
exports
=
(
function
(){
return
{
local
:
{
host
:
'
169.56.95.131
'
,
host
:
'
localhost
'
,
user
:
'root'
,
password
:
'1234'
,
database
:
'attendance'
...
...
Please
register
or
login
to post a comment