-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.log
More file actions
601 lines (562 loc) · 49.3 KB
/
error.log
File metadata and controls
601 lines (562 loc) · 49.3 KB
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
2022-10-06 22:26:44,642 INFO: errors [in C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:505]
2022-10-06 22:28:24,256 ERROR: Exception on / [GET] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1008, in __call__
return self.registry[key]
KeyError: <greenlet.greenlet object at 0x000001DB98BAEF00 (otid=0x000001DB98BAAB40) current active started main>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 57, in index
recentVenues = Venue.query.order_by(db.desc(Venue.id)).limit(10).all()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 552, in __get__
return type.query_class(mapper, session=self.sa.session())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\scoping.py", line 47, in __call__
sess = self.registry()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1010, in __call__
return self.registry.setdefault(key, self.createfunc())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 4225, in __call__
return self.class_(**local_kw)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 175, in __init__
track_modifications = app.config['SQLALCHEMY_TRACK_MODIFICATIONS']
KeyError: 'SQLALCHEMY_TRACK_MODIFICATIONS'
2022-10-06 22:28:36,112 ERROR: Exception on /venues [GET] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1008, in __call__
return self.registry[key]
KeyError: <greenlet.greenlet object at 0x000001DB98BBCD50 (otid=0x000001DB98CB3000) current active started main>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 69, in venues
venue_areas = db.session.query(Venue.city,Venue.state).group_by(Venue.state,
File "<string>", line 2, in query
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\scoping.py", line 24, in _proxied
return self.registry()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1010, in __call__
return self.registry.setdefault(key, self.createfunc())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 4225, in __call__
return self.class_(**local_kw)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 175, in __init__
track_modifications = app.config['SQLALCHEMY_TRACK_MODIFICATIONS']
KeyError: 'SQLALCHEMY_TRACK_MODIFICATIONS'
2022-10-06 22:28:42,563 ERROR: Exception on /artists [GET] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1008, in __call__
return self.registry[key]
KeyError: <greenlet.greenlet object at 0x000001DB98BBFA00 (otid=0x000001DB98CBC400) current active started main>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 211, in artists
data= Artist.query.with_entities(Artist.id, Artist.name).all()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 552, in __get__
return type.query_class(mapper, session=self.sa.session())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\scoping.py", line 47, in __call__
sess = self.registry()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1010, in __call__
return self.registry.setdefault(key, self.createfunc())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 4225, in __call__
return self.class_(**local_kw)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 175, in __init__
track_modifications = app.config['SQLALCHEMY_TRACK_MODIFICATIONS']
KeyError: 'SQLALCHEMY_TRACK_MODIFICATIONS'
2022-10-06 22:28:48,046 ERROR: Exception on /venues [GET] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1008, in __call__
return self.registry[key]
KeyError: <greenlet.greenlet object at 0x000001DB98B54EB0 (otid=0x000001DB98CC4940) current active started main>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 69, in venues
venue_areas = db.session.query(Venue.city,Venue.state).group_by(Venue.state,
File "<string>", line 2, in query
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\scoping.py", line 24, in _proxied
return self.registry()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1010, in __call__
return self.registry.setdefault(key, self.createfunc())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 4225, in __call__
return self.class_(**local_kw)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 175, in __init__
track_modifications = app.config['SQLALCHEMY_TRACK_MODIFICATIONS']
KeyError: 'SQLALCHEMY_TRACK_MODIFICATIONS'
2022-10-06 22:28:53,430 ERROR: Exception on / [GET] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1008, in __call__
return self.registry[key]
KeyError: <greenlet.greenlet object at 0x000001DB98BBE560 (otid=0x000001DB98BC4A80) current active started main>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 57, in index
recentVenues = Venue.query.order_by(db.desc(Venue.id)).limit(10).all()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 552, in __get__
return type.query_class(mapper, session=self.sa.session())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\scoping.py", line 47, in __call__
sess = self.registry()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1010, in __call__
return self.registry.setdefault(key, self.createfunc())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 4225, in __call__
return self.class_(**local_kw)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 175, in __init__
track_modifications = app.config['SQLALCHEMY_TRACK_MODIFICATIONS']
KeyError: 'SQLALCHEMY_TRACK_MODIFICATIONS'
2022-10-06 22:40:59,333 INFO: errors [in c:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:504]
2022-10-06 22:41:50,027 ERROR: Exception on / [GET] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1008, in __call__
return self.registry[key]
KeyError: <greenlet.greenlet object at 0x000001DB98BBFCC0 (otid=0x000001DB98CD6F00) current active started main>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 57, in index
recentVenues = Venue.query.order_by(db.desc(Venue.id)).limit(10).all()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 552, in __get__
return type.query_class(mapper, session=self.sa.session())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\scoping.py", line 47, in __call__
sess = self.registry()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1010, in __call__
return self.registry.setdefault(key, self.createfunc())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 4225, in __call__
return self.class_(**local_kw)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 175, in __init__
track_modifications = app.config['SQLALCHEMY_TRACK_MODIFICATIONS']
KeyError: 'SQLALCHEMY_TRACK_MODIFICATIONS'
2022-10-06 22:41:56,987 ERROR: Exception on / [GET] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1008, in __call__
return self.registry[key]
KeyError: <greenlet.greenlet object at 0x000001DB98B54EB0 (otid=0x000001DB98B4FAC0) current active started main>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 57, in index
recentVenues = Venue.query.order_by(db.desc(Venue.id)).limit(10).all()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 552, in __get__
return type.query_class(mapper, session=self.sa.session())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\scoping.py", line 47, in __call__
sess = self.registry()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1010, in __call__
return self.registry.setdefault(key, self.createfunc())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 4225, in __call__
return self.class_(**local_kw)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 175, in __init__
track_modifications = app.config['SQLALCHEMY_TRACK_MODIFICATIONS']
KeyError: 'SQLALCHEMY_TRACK_MODIFICATIONS'
2022-10-06 22:42:04,438 ERROR: Exception on / [GET] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1008, in __call__
return self.registry[key]
KeyError: <greenlet.greenlet object at 0x000001DB98BBE400 (otid=0x000001DB98C97C00) current active started main>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 57, in index
recentVenues = Venue.query.order_by(db.desc(Venue.id)).limit(10).all()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 552, in __get__
return type.query_class(mapper, session=self.sa.session())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\scoping.py", line 47, in __call__
sess = self.registry()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1010, in __call__
return self.registry.setdefault(key, self.createfunc())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 4225, in __call__
return self.class_(**local_kw)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 175, in __init__
track_modifications = app.config['SQLALCHEMY_TRACK_MODIFICATIONS']
KeyError: 'SQLALCHEMY_TRACK_MODIFICATIONS'
2022-10-06 22:42:07,028 ERROR: Exception on /shows [GET] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1008, in __call__
return self.registry[key]
KeyError: <greenlet.greenlet object at 0x000001DB98BBFED0 (otid=0x000001DB98CC4F40) current active started main>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 428, in shows
data = []
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 552, in __get__
return type.query_class(mapper, session=self.sa.session())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\scoping.py", line 47, in __call__
sess = self.registry()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1010, in __call__
return self.registry.setdefault(key, self.createfunc())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 4225, in __call__
return self.class_(**local_kw)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 175, in __init__
track_modifications = app.config['SQLALCHEMY_TRACK_MODIFICATIONS']
KeyError: 'SQLALCHEMY_TRACK_MODIFICATIONS'
2022-10-06 22:42:09,802 ERROR: Exception on /venues [GET] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1008, in __call__
return self.registry[key]
KeyError: <greenlet.greenlet object at 0x000001DB98B54BF0 (otid=0x000001DB98CD7280) current active started main>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 69, in venues
venue_areas = db.session.query(Venue.city,Venue.state).group_by(Venue.state,Venue.city).all()
File "<string>", line 2, in query
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\scoping.py", line 24, in _proxied
return self.registry()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1010, in __call__
return self.registry.setdefault(key, self.createfunc())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 4225, in __call__
return self.class_(**local_kw)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 175, in __init__
track_modifications = app.config['SQLALCHEMY_TRACK_MODIFICATIONS']
KeyError: 'SQLALCHEMY_TRACK_MODIFICATIONS'
2022-10-06 22:45:22,877 INFO: errors [in c:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:504]
2022-10-06 22:45:43,266 ERROR: Exception on / [GET] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1008, in __call__
return self.registry[key]
KeyError: <greenlet.greenlet object at 0x000001DB98BBE1F0 (otid=0x000001DB98CC5000) current active started main>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 57, in index
recentVenues = Venue.query.order_by(db.desc(Venue.id)).limit(10).all()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 552, in __get__
return type.query_class(mapper, session=self.sa.session())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\scoping.py", line 47, in __call__
sess = self.registry()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1010, in __call__
return self.registry.setdefault(key, self.createfunc())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 4225, in __call__
return self.class_(**local_kw)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 175, in __init__
track_modifications = app.config['SQLALCHEMY_TRACK_MODIFICATIONS']
KeyError: 'SQLALCHEMY_TRACK_MODIFICATIONS'
2022-10-07 00:30:29,269 INFO: errors [in c:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:502]
2022-10-07 00:31:04,406 ERROR: Exception on /venues [GET] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1008, in __call__
return self.registry[key]
KeyError: <greenlet.greenlet object at 0x00000147CF32E8D0 (otid=0x00000147CF3915C0) current active started main>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "c:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 67, in venues
venue_areas = db.session.query(Venue.city,Venue.state).group_by(Venue.state,Venue.city).all()
File "<string>", line 2, in query
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\scoping.py", line 24, in _proxied
return self.registry()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1010, in __call__
return self.registry.setdefault(key, self.createfunc())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 4225, in __call__
return self.class_(**local_kw)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 175, in __init__
track_modifications = app.config['SQLALCHEMY_TRACK_MODIFICATIONS']
KeyError: 'SQLALCHEMY_TRACK_MODIFICATIONS'
2022-10-07 00:31:27,907 ERROR: Exception on /venues [GET] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1008, in __call__
return self.registry[key]
KeyError: <greenlet.greenlet object at 0x00000147CEAD3480 (otid=0x00000147CF37E740) current active started main>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "c:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 67, in venues
venue_areas = db.session.query(Venue.city,Venue.state).group_by(Venue.state,Venue.city).all()
File "<string>", line 2, in query
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\scoping.py", line 24, in _proxied
return self.registry()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1010, in __call__
return self.registry.setdefault(key, self.createfunc())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 4225, in __call__
return self.class_(**local_kw)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 175, in __init__
track_modifications = app.config['SQLALCHEMY_TRACK_MODIFICATIONS']
KeyError: 'SQLALCHEMY_TRACK_MODIFICATIONS'
2022-10-07 00:31:42,222 ERROR: Exception on /venues [GET] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1008, in __call__
return self.registry[key]
KeyError: <greenlet.greenlet object at 0x00000147CF32EC40 (otid=0x00000147CF361240) current active started main>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "c:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 67, in venues
venue_areas = db.session.query(Venue.city,Venue.state).group_by(Venue.state,Venue.city).all()
File "<string>", line 2, in query
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\scoping.py", line 24, in _proxied
return self.registry()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1010, in __call__
return self.registry.setdefault(key, self.createfunc())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 4225, in __call__
return self.class_(**local_kw)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 175, in __init__
track_modifications = app.config['SQLALCHEMY_TRACK_MODIFICATIONS']
KeyError: 'SQLALCHEMY_TRACK_MODIFICATIONS'
2022-10-07 00:31:55,882 ERROR: Exception on /artists [GET] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1008, in __call__
return self.registry[key]
KeyError: <greenlet.greenlet object at 0x00000147CF4DEDA0 (otid=0x00000147CF3DA200) current active started main>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "c:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 208, in artists
data= Artist.query.with_entities(Artist.id, Artist.name).all()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 552, in __get__
return type.query_class(mapper, session=self.sa.session())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\scoping.py", line 47, in __call__
sess = self.registry()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1010, in __call__
return self.registry.setdefault(key, self.createfunc())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 4225, in __call__
return self.class_(**local_kw)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 175, in __init__
track_modifications = app.config['SQLALCHEMY_TRACK_MODIFICATIONS']
KeyError: 'SQLALCHEMY_TRACK_MODIFICATIONS'
2022-10-07 00:32:05,109 ERROR: Exception on /venues [GET] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1008, in __call__
return self.registry[key]
KeyError: <greenlet.greenlet object at 0x00000147CF4E4930 (otid=0x00000147CF416080) current active started main>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "c:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 67, in venues
venue_areas = db.session.query(Venue.city,Venue.state).group_by(Venue.state,Venue.city).all()
File "<string>", line 2, in query
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\scoping.py", line 24, in _proxied
return self.registry()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1010, in __call__
return self.registry.setdefault(key, self.createfunc())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 4225, in __call__
return self.class_(**local_kw)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 175, in __init__
track_modifications = app.config['SQLALCHEMY_TRACK_MODIFICATIONS']
KeyError: 'SQLALCHEMY_TRACK_MODIFICATIONS'
2022-10-07 00:32:11,890 ERROR: Exception on /venues/search [POST] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1008, in __call__
return self.registry[key]
KeyError: <greenlet.greenlet object at 0x00000147CF4E5A60 (otid=0x00000147CF3F3640) current active started main>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "c:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 91, in search_venues
results = Venue.query.filter(Venue.name.alike(f"%{request.form['search_term']}%")).all()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 552, in __get__
return type.query_class(mapper, session=self.sa.session())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\scoping.py", line 47, in __call__
sess = self.registry()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1010, in __call__
return self.registry.setdefault(key, self.createfunc())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 4225, in __call__
return self.class_(**local_kw)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 175, in __init__
track_modifications = app.config['SQLALCHEMY_TRACK_MODIFICATIONS']
KeyError: 'SQLALCHEMY_TRACK_MODIFICATIONS'
2022-10-07 00:32:19,096 ERROR: Exception on /venues/search [POST] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1008, in __call__
return self.registry[key]
KeyError: <greenlet.greenlet object at 0x00000147CF4E5E80 (otid=0x00000147CF3A4740) current active started main>
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "c:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 91, in search_venues
results = Venue.query.filter(Venue.name.alike(f"%{request.form['search_term']}%")).all()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 552, in __get__
return type.query_class(mapper, session=self.sa.session())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\scoping.py", line 47, in __call__
sess = self.registry()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\_collections.py", line 1010, in __call__
return self.registry.setdefault(key, self.createfunc())
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 4225, in __call__
return self.class_(**local_kw)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask_sqlalchemy\__init__.py", line 175, in __init__
track_modifications = app.config['SQLALCHEMY_TRACK_MODIFICATIONS']
KeyError: 'SQLALCHEMY_TRACK_MODIFICATIONS'
2022-10-07 09:53:08,909 INFO: errors [in C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:502]
2022-10-07 09:53:36,199 INFO: errors [in C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:502]
2022-10-07 09:57:11,807 INFO: errors [in C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:502]
2022-10-07 09:57:51,331 INFO: errors [in C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:502]
2022-10-07 09:58:54,898 INFO: errors [in C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:502]
2022-10-07 10:15:40,284 INFO: errors [in C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:502]
2022-10-07 10:21:39,845 INFO: errors [in C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:502]
2022-10-07 10:22:46,661 INFO: errors [in C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:502]
2022-10-07 10:52:15,117 INFO: errors [in C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:503]
2022-10-07 10:52:48,323 INFO: errors [in C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:503]
2022-10-07 10:53:53,769 INFO: errors [in C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:503]
2022-10-07 10:55:10,195 INFO: errors [in C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:503]
2022-10-07 10:55:28,763 ERROR: Exception on /venues [GET] [in C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py:1679]
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\engine\base.py", line 1900, in _execute_context
self.dialect.do_execute(
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\engine\default.py", line 732, in do_execute
cursor.execute(statement, parameters)
sqlite3.OperationalError: no such table: Venue
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 2463, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1760, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1758, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\app.py", line 1734, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py", line 68, in venues
venue_areas = db.session.query(Venue.city,Venue.state).group_by(Venue.state,Venue.city).all()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\query.py", line 2772, in all
return self._iter().all()
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\query.py", line 2907, in _iter
result = self.session.execute(
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\orm\session.py", line 1712, in execute
result = conn._execute_20(statement, params or {}, execution_options)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\engine\base.py", line 1705, in _execute_20
return meth(self, args_10style, kwargs_10style, execution_options)
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\sql\elements.py", line 333, in _execute_on_connection
return connection._execute_clauseelement(
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\engine\base.py", line 1572, in _execute_clauseelement
ret = self._execute_context(
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\engine\base.py", line 1943, in _execute_context
self._handle_dbapi_exception(
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\engine\base.py", line 2124, in _handle_dbapi_exception
util.raise_(
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\util\compat.py", line 208, in raise_
raise exception
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\engine\base.py", line 1900, in _execute_context
self.dialect.do_execute(
File "C:\Users\PROGRESS ICT MEDIA\AppData\Local\Programs\Python\Python310\lib\site-packages\sqlalchemy\engine\default.py", line 732, in do_execute
cursor.execute(statement, parameters)
sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) no such table: Venue
[SQL: SELECT "Venue".city AS "Venue_city", "Venue".state AS "Venue_state"
FROM "Venue" GROUP BY "Venue".state, "Venue".city]
(Background on this error at: https://sqlalche.me/e/14/e3q8)
2022-10-07 11:03:12,781 INFO: errors [in C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:503]
2022-10-07 11:03:36,788 INFO: errors [in C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:503]
2022-10-07 11:31:10,917 INFO: errors [in C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:503]
2022-10-07 11:31:30,724 INFO: errors [in C:\Users\PROGRESS ICT MEDIA\Git Repo\myApp\app.py:503]