Spaces:
Running
Running
Update app.py
Browse files
__pycache__/analyze.cpython-310.pyc
CHANGED
Binary files a/__pycache__/analyze.cpython-310.pyc and b/__pycache__/analyze.cpython-310.pyc differ
|
|
__pycache__/process.cpython-310.pyc
CHANGED
Binary files a/__pycache__/process.cpython-310.pyc and b/__pycache__/process.cpython-310.pyc differ
|
|
__pycache__/transcription.cpython-310.pyc
CHANGED
Binary files a/__pycache__/transcription.cpython-310.pyc and b/__pycache__/transcription.cpython-310.pyc differ
|
|
app.py
CHANGED
@@ -22,7 +22,6 @@ harassment_keywords = [
|
|
22 |
total_audio = ""
|
23 |
|
24 |
# トップページ(テンプレート: index.html)
|
25 |
-
@app.route('/')
|
26 |
@app.route('/index', methods=['GET', 'POST'])
|
27 |
def index():
|
28 |
return render_template('index.html', users = users)
|
@@ -38,6 +37,7 @@ def talk_detail():
|
|
38 |
return render_template('talkDetail.html')
|
39 |
|
40 |
# 音声登録画面(テンプレート: userRegister.html)
|
|
|
41 |
@app.route('/userregister', methods=['GET', 'POST'])
|
42 |
def userregister():
|
43 |
return render_template('userRegister.html')
|
|
|
22 |
total_audio = ""
|
23 |
|
24 |
# トップページ(テンプレート: index.html)
|
|
|
25 |
@app.route('/index', methods=['GET', 'POST'])
|
26 |
def index():
|
27 |
return render_template('index.html', users = users)
|
|
|
37 |
return render_template('talkDetail.html')
|
38 |
|
39 |
# 音声登録画面(テンプレート: userRegister.html)
|
40 |
+
@app.route('/')
|
41 |
@app.route('/userregister', methods=['GET', 'POST'])
|
42 |
def userregister():
|
43 |
return render_template('userRegister.html')
|