Spaces:
Sleeping
Sleeping
File size: 1,751 Bytes
b9bca66 0a3635f b9bca66 0a3635f b9bca66 0a3635f b9bca66 |
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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
from flask import Flask, request, jsonify, render_template_string
from datetime import datetime
app = Flask(__name__)
# テキストを記録するためのリスト
texts = []
@app.route('/post', methods=['POST'])
def post_text():
# POSTリクエストからテキストを取得
text = request.form.get('text')
if text:
# 現在の日時を取得
timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
# テキストとタイムスタンプをリストに追加
texts.append({'text': text, 'timestamp': timestamp})
return jsonify({'message': 'Text received and recorded', 'text': text, 'timestamp': timestamp}), 201
else:
return jsonify({'message': 'No text provided'}), 400
@app.route('/getText/latest', methods=['GET'])
def get_latest_text():
if texts:
# リストの最後の要素(最新のテキスト)を取得
latest_text = texts[-1]
return jsonify(latest_text), 200
else:
return jsonify({'message': 'No texts recorded yet'}), 200
@app.route('/')
def display_texts():
# 記録されたテキストをHTMLで表示
html_content = '''
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recorded Texts</title>
</head>
<body>
<h1>Recorded Texts</h1>
<ul>
{% for entry in texts %}
<li><strong>{{ entry.timestamp }}:</strong> {{ entry.text }}</li>
{% endfor %}
</ul>
</body>
</html>
'''
return render_template_string(html_content, texts=texts)
if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0', port=7860)
|