DmitrMakeev commited on
Commit
3e477c1
1 Parent(s): 4524afd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +27 -0
app.py CHANGED
@@ -179,5 +179,32 @@ def handle_api():
179
 
180
 
181
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
  if __name__ == '__main__':
183
  app.run(host='0.0.0.0', port=int(os.environ.get('PORT', 7860)))
 
179
 
180
 
181
 
182
+
183
+ from flask import Flask, send_file
184
+ import os
185
+
186
+ app = Flask(__name__)
187
+
188
+ @app.route('/graf_json', methods=['GET'])
189
+ def get_json_file():
190
+ # Предполагаем, что файл с именем 'combined_data.json' уже создан
191
+ filename = 'combined_data.json'
192
+
193
+ # Проверяем, существует ли файл
194
+ if os.path.isfile(filename):
195
+ return send_file(filename, as_attachment=True)
196
+ else:
197
+ return "Файл не найден", 404
198
+
199
+ if __name__ == '__main__':
200
+ app.run(debug=True)
201
+
202
+
203
+
204
+
205
+
206
+
207
+
208
+
209
  if __name__ == '__main__':
210
  app.run(host='0.0.0.0', port=int(os.environ.get('PORT', 7860)))