-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.txt
1333 lines (1333 loc) · 73.6 KB
/
log.txt
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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
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
286
287
288
289
290
291
292
293
294
295
296
297
298
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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-16 16:01:47.870787
INFO:root:Connecting to the PostgreSQL database... 2023-06-16 16:01:47.871788
INFO:root:Succesfully connected to database /2023-06-16 16:01:47.914785
INFO:root:PostgreSQL database version: / 2023-06-16 16:01:47.914785
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-16 16:01:47.915784
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]wsdf
] fetched
INFO:root:Closed connection to database /2023-06-16 16:01:47.916505
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [16/Jun/2023 16:01:47] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-16 16:01:58.657224
INFO:root:Connecting to the PostgreSQL database... 2023-06-16 16:01:58.657224
INFO:root:Succesfully connected to database /2023-06-16 16:01:58.694332
INFO:root:PostgreSQL database version: / 2023-06-16 16:01:58.694332
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-16 16:01:58.695333
INFO:root:Success Row [
[
"SVO",
"�����������",
"������",
"(37.4146,55.972599)",
"Europe/Moscow"
],
[
"VKO",
"�������",
"������",
"(37.2615013123,55.5914993286)",
"Europe/Moscow"
],
[
"DME",
"����������",
"������",
"(37.90629959106445,55.40879821777344)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-16 16:01:58.696328
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [16/Jun/2023 16:01:58] "GET /loc/������ HTTP/1.1" 200 -
INFO:werkzeug: * Detected change in 'C:\\Users\\������\\Desktop\\MyJob\\git-api\\API_proj\\proj_api_db\\request_for_add.py', reloading
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-16 16:02:54.205194
INFO:root:Connecting to the PostgreSQL database... 2023-06-16 16:02:54.205194
INFO:root:Succesfully connected to database /2023-06-16 16:02:54.243202
INFO:root:PostgreSQL database version: 2023-06-16 16:02:54.243202
INFO:root:Row succesfully added 2023-06-16 16:02:54.262201
INFO:root:Closed connection to database /2023-06-16 16:02:54.263203
INFO:werkzeug:127.0.0.1 - - [16/Jun/2023 16:02:54] "POST /add-airport HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-16 16:03:07.727813
INFO:root:Connecting to the PostgreSQL database... 2023-06-16 16:03:07.727813
INFO:root:Succesfully connected to database /2023-06-16 16:03:07.763902
INFO:root:PostgreSQL database version: / 2023-06-16 16:03:07.763902
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-16 16:03:07.763902
INFO:root:Success Row [
[
"SVO",
"�����������",
"������",
"(37.4146,55.972599)",
"Europe/Moscow"
],
[
"VKO",
"�������",
"������",
"(37.2615013123,55.5914993286)",
"Europe/Moscow"
],
[
"DME",
"����������",
"������",
"(37.90629959106445,55.40879821777344)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-16 16:03:07.765908
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [16/Jun/2023 16:03:07] "GET /loc/������ HTTP/1.1" 200 -
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-16 16:35:41.600388
INFO:root:Connecting to the PostgreSQL database... 2023-06-16 16:35:41.601392
INFO:root:Succesfully connected to database /2023-06-16 16:35:41.714561
INFO:root:PostgreSQL database version: / 2023-06-16 16:35:41.714561
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-16 16:35:41.718563
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-16 16:35:41.724996
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [16/Jun/2023 16:35:41] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-16 16:35:52.438861
INFO:root:Connecting to the PostgreSQL database... 2023-06-16 16:35:52.438861
INFO:root:Succesfully connected to database /2023-06-16 16:35:52.473856
INFO:root:PostgreSQL database version: / 2023-06-16 16:35:52.473856
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-16 16:35:52.473856
INFO:root:Success Row [
[
"SVO",
"�����������",
"������",
"(37.4146,55.972599)",
"Europe/Moscow"
],
[
"VKO",
"�������",
"������",
"(37.2615013123,55.5914993286)",
"Europe/Moscow"
],
[
"DME",
"����������",
"������",
"(37.90629959106445,55.40879821777344)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-16 16:35:52.474856
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [16/Jun/2023 16:35:52] "GET /loc/������ HTTP/1.1" 200 -
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 11:09:19.899020
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 11:09:19.899020
INFO:root:Succesfully connected to database /2023-06-19 11:09:20.021019
INFO:root:PostgreSQL database version: / 2023-06-19 11:09:20.021019
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 11:09:20.052018
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-19 11:09:20.069018
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 11:09:20] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 11:09:20.082017
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 11:09:20.082017
INFO:root:Succesfully connected to database /2023-06-19 11:09:20.169030
INFO:root:PostgreSQL database version: / 2023-06-19 11:09:20.169030
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 11:09:20.170021
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-19 11:09:20.174018
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 11:09:20] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 11:09:22.372152
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 11:09:22.372152
INFO:root:Succesfully connected to database /2023-06-19 11:09:22.414151
INFO:root:PostgreSQL database version: / 2023-06-19 11:09:22.414151
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 11:09:22.415150
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-19 11:09:22.418151
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 11:09:22] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 11:09:22] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 11:09:26] "[33mGET / HTTP/1.1[0m" 404 -
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 11:11:33] "GET / HTTP/1.1" 200 -
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:00:28.331562
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:00:28.332562
INFO:root:Succesfully connected to database /2023-06-19 17:00:28.409071
INFO:root:PostgreSQL database version: / 2023-06-19 17:00:28.410071
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:00:28.432603
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-19 17:00:28.442603
ERROR:root:Error occured 'str' object has no attribute 'data' 2023-06-19 17:00:28.442603
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:00:28] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:00:42.727929
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:00:42.727929
INFO:root:Succesfully connected to database /2023-06-19 17:00:42.806474
INFO:root:PostgreSQL database version: / 2023-06-19 17:00:42.806474
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:00:42.830480
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-19 17:00:42.839480
ERROR:root:Error occured 'str' object has no attribute 'data' 2023-06-19 17:00:42.839480
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:00:42] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:werkzeug: * Detected change in 'C:\\Users\\������\\Desktop\\MyJob\\git-api\\API_proj\\proj_api_db\\main.py', reloading
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:01:13.865400
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:01:13.865400
INFO:root:Succesfully connected to database /2023-06-19 17:01:13.912928
INFO:root:PostgreSQL database version: / 2023-06-19 17:01:13.912928
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:01:13.914927
INFO:root:Success Row [('LED', '�������', '�����-���������', '(30.262500762939453,59.80030059814453)', 'Europe/Moscow')] fetched
INFO:root:Closed connection to database /2023-06-19 17:01:13.916927
ERROR:root:Error occured 'list' object has no attribute 'data' 2023-06-19 17:01:13.916927
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:01:13] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:01:27.959970
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:01:27.959970
INFO:root:Succesfully connected to database /2023-06-19 17:01:27.995975
INFO:root:PostgreSQL database version: / 2023-06-19 17:01:27.995975
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:01:27.998487
INFO:root:Success Row [('LED', '�������', '�����-���������', '(30.262500762939453,59.80030059814453)', 'Europe/Moscow')] fetched
INFO:root:Closed connection to database /2023-06-19 17:01:28.002491
ERROR:root:Error occured 'list' object has no attribute 'data' 2023-06-19 17:01:28.002491
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:01:28] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:werkzeug: * Detected change in 'C:\\Users\\������\\Desktop\\MyJob\\git-api\\API_proj\\proj_api_db\\main.py', reloading
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:02:21.446838
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:02:21.446838
INFO:root:Succesfully connected to database /2023-06-19 17:02:21.512868
INFO:root:PostgreSQL database version: / 2023-06-19 17:02:21.512868
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:02:21.536022
ERROR:root:Error occured 'list' object has no attribute 'data' 2023-06-19 17:02:21.543023
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:02:21] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:02:22.912734
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:02:22.912734
INFO:root:Succesfully connected to database /2023-06-19 17:02:22.950645
INFO:root:PostgreSQL database version: / 2023-06-19 17:02:22.950645
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:02:22.951618
ERROR:root:Error occured 'list' object has no attribute 'data' 2023-06-19 17:02:22.953620
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:02:22] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:02:23.644144
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:02:23.644144
INFO:root:Succesfully connected to database /2023-06-19 17:02:23.790219
INFO:root:PostgreSQL database version: / 2023-06-19 17:02:23.790219
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:02:23.790827
ERROR:root:Error occured 'list' object has no attribute 'data' 2023-06-19 17:02:23.791834
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:02:23] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:03:40.551557
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:03:40.551557
INFO:root:Succesfully connected to database /2023-06-19 17:03:40.701589
INFO:root:PostgreSQL database version: / 2023-06-19 17:03:40.701589
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:03:40.702586
INFO:root:Success Row [('LED', '�������', '�����-���������', '(30.262500762939453,59.80030059814453)', 'Europe/Moscow')] fetched
INFO:root:Closed connection to database /2023-06-19 17:03:40.704586
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:03:40] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:03:55.522447
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:03:55.523446
INFO:root:Succesfully connected to database /2023-06-19 17:03:55.563966
INFO:root:PostgreSQL database version: / 2023-06-19 17:03:55.563966
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:03:55.563966
INFO:root:Success Row [('LED', '�������', '�����-���������', '(30.262500762939453,59.80030059814453)', 'Europe/Moscow')] fetched
INFO:root:Closed connection to database /2023-06-19 17:03:55.565966
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:03:55] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:05:38.752294
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:05:38.752294
INFO:root:Succesfully connected to database /2023-06-19 17:05:38.847834
INFO:root:PostgreSQL database version: / 2023-06-19 17:05:38.848828
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:05:38.873346
ERROR:root:Error occured 'tuple' object has no attribute 'encode' 2023-06-19 17:05:38.882345
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:05:38] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:05:40.052593
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:05:40.052593
INFO:root:Succesfully connected to database /2023-06-19 17:05:40.086736
INFO:root:PostgreSQL database version: / 2023-06-19 17:05:40.086736
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:05:40.087737
ERROR:root:Error occured 'tuple' object has no attribute 'encode' 2023-06-19 17:05:40.088735
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:05:40] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:05:41.051983
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:05:41.051983
INFO:root:Succesfully connected to database /2023-06-19 17:05:41.086614
INFO:root:PostgreSQL database version: / 2023-06-19 17:05:41.086614
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:05:41.086614
ERROR:root:Error occured 'tuple' object has no attribute 'encode' 2023-06-19 17:05:41.087613
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:05:41] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:05:44.267521
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:05:44.267521
INFO:root:Succesfully connected to database /2023-06-19 17:05:44.301636
INFO:root:PostgreSQL database version: / 2023-06-19 17:05:44.302638
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:05:44.302638
ERROR:root:Error occured 'tuple' object has no attribute 'encode' 2023-06-19 17:05:44.303602
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:05:44] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:werkzeug: * Detected change in 'C:\\Users\\������\\Desktop\\MyJob\\git-api\\API_proj\\proj_api_db\\main.py', reloading
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:22:11.151551
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:22:11.152552
INFO:root:Succesfully connected to database /2023-06-19 17:22:11.200573
INFO:root:PostgreSQL database version: / 2023-06-19 17:22:11.200573
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:22:11.201579
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-19 17:22:11.204586
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:22:11] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:22:11] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
INFO:root:Opened connection to server /2023-06-19 17:22:19.256181
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:22:19.256181
INFO:root:Succesfully connected to database /2023-06-19 17:22:19.295025
INFO:root:PostgreSQL database version: / 2023-06-19 17:22:19.296024
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:22:19.296024
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:22:19.297025
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:22:19] "GET /loc/dssf HTTP/1.1" 200 -
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:23:54.711873
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:23:54.711873
INFO:root:Succesfully connected to database /2023-06-19 17:23:54.756873
INFO:root:PostgreSQL database version: / 2023-06-19 17:23:54.756873
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:23:54.757883
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:23:54.760874
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:23:54] "GET /loc/dssf HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:23:56.379049
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:23:56.379049
INFO:root:Succesfully connected to database /2023-06-19 17:23:56.417031
INFO:root:PostgreSQL database version: / 2023-06-19 17:23:56.417031
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:23:56.418031
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:23:56.419031
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:23:56] "GET /loc/dssf HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:23:57.898218
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:23:57.898218
INFO:root:Succesfully connected to database /2023-06-19 17:23:57.934219
INFO:root:PostgreSQL database version: / 2023-06-19 17:23:57.934219
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:23:57.934219
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:23:57.935218
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:23:57] "GET /loc/dssf HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:24:00.263587
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:24:00.263587
INFO:root:Succesfully connected to database /2023-06-19 17:24:00.307420
INFO:root:PostgreSQL database version: / 2023-06-19 17:24:00.307420
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:24:00.308422
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:24:00.310432
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:24:00] "GET /loc/dssfs HTTP/1.1" 200 -
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:24:26.822029
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:24:26.822029
INFO:root:Succesfully connected to database /2023-06-19 17:24:26.868004
INFO:root:PostgreSQL database version: / 2023-06-19 17:24:26.868004
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:24:26.869008
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:24:26.871009
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:24:26] "[35m[1mGET /loc/dssfs HTTP/1.1[0m" 500 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:24:27] "GET /loc/dssfs?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:24:27] "GET /loc/dssfs?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:24:27] "GET /loc/dssfs?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:24:27] "[36mGET /loc/dssfs?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
INFO:root:Opened connection to server /2023-06-19 17:24:32.460236
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:24:32.461193
INFO:root:Succesfully connected to database /2023-06-19 17:24:32.498045
INFO:root:PostgreSQL database version: / 2023-06-19 17:24:32.498045
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:24:32.499045
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:24:32.503045
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:24:32] "[35m[1mGET /loc/dssfs HTTP/1.1[0m" 500 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:24:32] "[36mGET /loc/dssfs?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:24:32] "[36mGET /loc/dssfs?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:24:32] "[36mGET /loc/dssfs?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:24:32] "[36mGET /loc/dssfs?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
INFO:root:Opened connection to server /2023-06-19 17:24:47.011103
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:24:47.011103
INFO:root:Succesfully connected to database /2023-06-19 17:24:47.150007
INFO:root:PostgreSQL database version: / 2023-06-19 17:24:47.150007
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:24:47.151007
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:24:47.152006
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:24:47] "[35m[1mGET /loc/dssfs HTTP/1.1[0m" 500 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:24:47] "[36mGET /loc/dssfs?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:24:47] "[36mGET /loc/dssfs?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:24:47] "[36mGET /loc/dssfs?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:24:47] "[36mGET /loc/dssfs?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:25:06.107216
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:25:06.107216
INFO:root:Succesfully connected to database /2023-06-19 17:25:06.249703
INFO:root:PostgreSQL database version: / 2023-06-19 17:25:06.250701
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:25:06.253705
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:25:06.256387
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:25:06] "[35m[1mGET /loc/dssfs HTTP/1.1[0m" 500 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:25:06] "[36mGET /loc/dssfs?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:25:06] "[36mGET /loc/dssfs?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:25:06] "[36mGET /loc/dssfs?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:25:06] "[36mGET /loc/dssfs?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
INFO:root:Opened connection to server /2023-06-19 17:25:07.529319
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:25:07.529319
INFO:root:Succesfully connected to database /2023-06-19 17:25:07.568331
INFO:root:PostgreSQL database version: / 2023-06-19 17:25:07.568331
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:25:07.569332
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:25:07.571318
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:25:07] "[35m[1mGET /loc/dssfs HTTP/1.1[0m" 500 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:25:07] "[36mGET /loc/dssfs?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:25:07] "[36mGET /loc/dssfs?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:25:07] "[36mGET /loc/dssfs?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:25:07] "[36mGET /loc/dssfs?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
INFO:root:Opened connection to server /2023-06-19 17:25:14.192662
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:25:14.192662
INFO:root:Succesfully connected to database /2023-06-19 17:25:14.233390
INFO:root:PostgreSQL database version: / 2023-06-19 17:25:14.233390
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:25:14.234389
INFO:root:Success Row [('LED', '�������', '�����-���������', '(30.262500762939453,59.80030059814453)', 'Europe/Moscow')] fetched
INFO:root:Closed connection to database /2023-06-19 17:25:14.239594
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:25:14] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:25:18.032004
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:25:18.032004
INFO:root:Succesfully connected to database /2023-06-19 17:25:18.070006
INFO:root:PostgreSQL database version: / 2023-06-19 17:25:18.070006
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:25:18.071000
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:25:18.073001
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:25:18] "[35m[1mGET /loc/��ss HTTP/1.1[0m" 500 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:25:18] "GET /loc/��ss?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:25:18] "GET /loc/��ss?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:25:18] "GET /loc/��ss?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:25:18] "[36mGET /loc/��ss?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:26:33.029540
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:26:33.029540
INFO:root:Succesfully connected to database /2023-06-19 17:26:33.093507
INFO:root:PostgreSQL database version: / 2023-06-19 17:26:33.093507
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:26:33.115506
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:26:33.125506
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:26:33] "[35m[1mGET /loc/��ss HTTP/1.1[0m" 500 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:26:33] "[36mGET /loc/��ss?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:26:33] "[36mGET /loc/��ss?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:26:33] "[36mGET /loc/��ss?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:26:33] "[36mGET /loc/��ss?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
INFO:werkzeug: * Detected change in 'C:\\Users\\������\\Desktop\\MyJob\\git-api\\API_proj\\proj_api_db\\main.py', reloading
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:27:03.556717
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:27:03.556717
INFO:root:Succesfully connected to database /2023-06-19 17:27:03.604716
INFO:root:PostgreSQL database version: / 2023-06-19 17:27:03.604716
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:27:03.605713
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-19 17:27:03.609713
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:27:03] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:27:07.385259
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:27:07.385259
INFO:root:Succesfully connected to database /2023-06-19 17:27:07.531977
INFO:root:PostgreSQL database version: / 2023-06-19 17:27:07.531977
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:27:07.531977
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-19 17:27:07.532983
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:27:07] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:27:37.902006
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:27:37.902006
INFO:root:Succesfully connected to database /2023-06-19 17:27:37.942007
INFO:root:PostgreSQL database version: / 2023-06-19 17:27:37.943025
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:27:37.943025
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:27:37.945005
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:27:37] "GET /loc/�����- HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:27:41.837151
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:27:41.837151
INFO:root:Succesfully connected to database /2023-06-19 17:27:41.873483
INFO:root:PostgreSQL database version: / 2023-06-19 17:27:41.873483
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:27:41.874483
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:27:41.875483
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:27:41] "GET /loc/�����- HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:27:53.571671
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:27:53.571671
INFO:root:Succesfully connected to database /2023-06-19 17:27:53.607522
INFO:root:PostgreSQL database version: / 2023-06-19 17:27:53.607522
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:27:53.607522
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:27:53.608521
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:27:53] "GET /loc/�����- HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:27:54.408818
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:27:54.408818
INFO:root:Succesfully connected to database /2023-06-19 17:27:54.551820
INFO:root:PostgreSQL database version: / 2023-06-19 17:27:54.551820
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:27:54.552818
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:27:54.553818
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:27:54] "GET /loc/�����- HTTP/1.1" 200 -
INFO:werkzeug: * Detected change in 'C:\\Users\\������\\Desktop\\MyJob\\git-api\\API_proj\\proj_api_db\\main.py', reloading
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:werkzeug: * Detected change in 'C:\\Users\\������\\Desktop\\MyJob\\git-api\\API_proj\\proj_api_db\\main.py', reloading
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:28:21.791936
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:28:21.791936
INFO:root:Succesfully connected to database /2023-06-19 17:28:21.846936
INFO:root:PostgreSQL database version: / 2023-06-19 17:28:21.847938
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:28:21.847938
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-19 17:28:21.949524
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:28:21] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:28:23.755349
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:28:23.755349
INFO:root:Succesfully connected to database /2023-06-19 17:28:23.798322
INFO:root:PostgreSQL database version: / 2023-06-19 17:28:23.798322
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:28:23.798322
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-19 17:28:23.799320
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:28:23] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:28:48.894731
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:28:48.895727
INFO:root:Succesfully connected to database /2023-06-19 17:28:49.040904
INFO:root:PostgreSQL database version: / 2023-06-19 17:28:49.040904
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:28:49.041904
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-19 17:28:49.043904
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:28:49] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:29:12.163238
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:29:12.163238
INFO:werkzeug: * Detected change in 'C:\\Users\\������\\Desktop\\MyJob\\git-api\\API_proj\\proj_api_db\\main.py', reloading
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:29:13.376242
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:29:13.376242
INFO:root:Succesfully connected to database /2023-06-19 17:29:13.522239
INFO:root:PostgreSQL database version: / 2023-06-19 17:29:13.522239
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:29:13.522239
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-19 17:29:13.524238
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:29:13] "[35m[1mGET /loc/�����-��������� HTTP/1.1[0m" 500 -
INFO:root:Opened connection to server /2023-06-19 17:29:13.689041
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:29:13.689041
INFO:root:Succesfully connected to database /2023-06-19 17:29:13.835040
INFO:root:PostgreSQL database version: / 2023-06-19 17:29:13.835040
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:29:13.835040
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-19 17:29:13.836074
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:29:13] "[35m[1mGET /loc/�����-��������� HTTP/1.1[0m" 500 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:29:13] "GET /loc/�����-���������?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:29:13] "GET /loc/�����-���������?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:29:13] "GET /loc/�����-���������?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:29:14] "[36mGET /loc/�����-���������?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
INFO:root:Opened connection to server /2023-06-19 17:29:24.089287
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:29:24.090285
INFO:root:Succesfully connected to database /2023-06-19 17:29:24.128995
INFO:root:PostgreSQL database version: / 2023-06-19 17:29:24.128995
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:29:24.129997
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-19 17:29:24.130995
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:29:24] "[35m[1mGET /loc/�����-��������� HTTP/1.1[0m" 500 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:29:24] "[36mGET /loc/�����-���������?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:29:24] "[36mGET /loc/�����-���������?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:29:24] "[36mGET /loc/�����-���������?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:29:24] "[36mGET /loc/�����-���������?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
INFO:werkzeug: * Detected change in 'C:\\Users\\������\\Desktop\\MyJob\\git-api\\API_proj\\proj_api_db\\main.py', reloading
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:29:25.834139
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:29:25.834139
INFO:root:Succesfully connected to database /2023-06-19 17:29:25.875152
INFO:root:PostgreSQL database version: / 2023-06-19 17:29:25.875152
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:29:25.876152
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-19 17:29:25.877152
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:29:25] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:29:30.251504
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:29:30.251504
INFO:root:Succesfully connected to database /2023-06-19 17:29:30.341509
INFO:root:PostgreSQL database version: / 2023-06-19 17:29:30.341509
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:29:30.343506
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-19 17:29:30.345509
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:29:30] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:29:51.723088
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:29:51.723088
INFO:root:Succesfully connected to database /2023-06-19 17:29:51.761070
INFO:root:PostgreSQL database version: / 2023-06-19 17:29:51.761070
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:29:51.762069
INFO:root:Success Row [
[
"LED",
"�������",
"�����-���������",
"(30.262500762939453,59.80030059814453)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-19 17:29:51.764071
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:29:51] "GET /loc/�����-��������� HTTP/1.1" 200 -
INFO:werkzeug: * Detected change in 'C:\\Users\\������\\Desktop\\MyJob\\git-api\\API_proj\\proj_api_db\\main.py', reloading
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:29:57.143967
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:29:57.143967
INFO:root:Succesfully connected to database /2023-06-19 17:29:57.189702
INFO:root:PostgreSQL database version: / 2023-06-19 17:29:57.190703
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:29:57.190703
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:29:57.193765
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:29:57] "GET /loc/�����- HTTP/1.1" 200 -
INFO:werkzeug: * Detected change in 'C:\\Users\\������\\Desktop\\MyJob\\git-api\\API_proj\\proj_api_db\\main.py', reloading
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:30:54.869810
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:30:54.870846
INFO:root:Opened connection to server /2023-06-19 17:30:54.871811
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:30:54.871811
INFO:root:Succesfully connected to database /2023-06-19 17:30:54.910810
INFO:root:PostgreSQL database version: / 2023-06-19 17:30:54.910810
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:30:54.911809
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:30:54.913810
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:30:54] "GET /loc/�����- HTTP/1.1" 200 -
INFO:root:Succesfully connected to database /2023-06-19 17:30:55.007242
INFO:root:PostgreSQL database version: / 2023-06-19 17:30:55.007242
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:30:55.008242
INFO:root:Success Row [] fetched
INFO:root:Closed connection to database /2023-06-19 17:30:55.009243
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:30:55] "GET /loc/�����- HTTP/1.1" 200 -
INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
* Running on http://127.0.0.1:5000
INFO:werkzeug:[33mPress CTRL+C to quit[0m
INFO:werkzeug: * Restarting with stat
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 736-301-305
INFO:root:Opened connection to server /2023-06-19 17:32:24.432268
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:32:24.432268
INFO:root:Succesfully connected to database /2023-06-19 17:32:24.468000
INFO:root:PostgreSQL database version: / 2023-06-19 17:32:24.468000
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:32:24.469007
INFO:root:Success Row [
[
"SVO",
"�����������",
"������",
"(37.4146,55.972599)",
"Europe/Moscow"
],
[
"VKO",
"�������",
"������",
"(37.2615013123,55.5914993286)",
"Europe/Moscow"
],
[
"DME",
"����������",
"������",
"(37.90629959106445,55.40879821777344)",
"Europe/Moscow"
]
] fetched
INFO:root:Closed connection to database /2023-06-19 17:32:24.471006
INFO:root:Succesfully send data
INFO:root:Connection closed
INFO:werkzeug:127.0.0.1 - - [19/Jun/2023 17:32:24] "GET /loc/������ HTTP/1.1" 200 -
INFO:root:Opened connection to server /2023-06-19 17:32:44.294311
INFO:root:Connecting to the PostgreSQL database... 2023-06-19 17:32:44.294311
INFO:root:Succesfully connected to database /2023-06-19 17:32:44.432318
INFO:root:PostgreSQL database version: / 2023-06-19 17:32:44.432318
INFO:root:('PostgreSQL 15.2, compiled by Visual C++ build 1925, 64-bit',) /2023-06-19 17:32:44.433317
INFO:root:Success Row [
[
"SVO",
"�����������",
"������",
"(37.4146,55.972599)",
"Europe/Moscow"
],
[
"VKO",
"�������",