DmitrMakeev commited on
Commit
be370cc
1 Parent(s): f45c287

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +114 -0
app.py CHANGED
@@ -57,6 +57,58 @@ curator_on_off = "0" # Глобальная переменная для упр
57
 
58
 
59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  app = Flask(__name__, template_folder="./")
61
  app.config['DEBUG'] = True
62
  UPLOAD_FOLDER = 'static'
@@ -209,6 +261,68 @@ def initialize_requests():
209
 
210
 
211
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
212
 
213
 
214
 
 
57
 
58
 
59
 
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+
112
  app = Flask(__name__, template_folder="./")
113
  app.config['DEBUG'] = True
114
  UPLOAD_FOLDER = 'static'
 
261
 
262
 
263
 
264
+
265
+
266
+
267
+
268
+
269
+
270
+
271
+
272
+
273
+
274
+
275
+
276
+
277
+
278
+
279
+
280
+
281
+
282
+
283
+
284
+
285
+ def send_test_data():
286
+ GOOGLE_FORM_URL = (
287
+ "https://docs.google.com/forms/d/e/1FAIpQLSc-JbmXvgpgGq6KrkXsYSsfMACVMyIDnNqrHy6jImGeSRcpiQ/formResponse"
288
+ "?usp=pp_url&entry.1556100878=TestName&[email protected]&entry.1634985541=+1234567890"
289
+ )
290
+
291
+ response = requests.post(GOOGLE_FORM_URL)
292
+
293
+ if response.status_code == 200:
294
+ print("Data sent successfully.")
295
+ else:
296
+ print(f"Failed to send data: {response.status_code}, {response.text}")
297
+
298
+ send_test_data()
299
+
300
+
301
+
302
+
303
+
304
+
305
+
306
+
307
+
308
+
309
+
310
+
311
+
312
+
313
+
314
+
315
+
316
+
317
+
318
+
319
+
320
+
321
+
322
+
323
+
324
+
325
+
326
 
327
 
328