-
Notifications
You must be signed in to change notification settings - Fork 0
/
logs.log
5363 lines (5363 loc) · 619 KB
/
logs.log
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: 2019-11-11 13:12:16,640 {'timestamp': '13:12:16', 'type': 'weather', 'description': 'Current Weather in Tewkesbury has been updated.', 'error': ''}
INFO: 2019-11-11 13:12:22,368 127.0.0.1 - - [11/Nov/2019 13:12:22] "GET / HTTP/1.1" 200 -
DEBUG: 2019-11-11 13:12:46,528 Starting new HTTPS connection (1): newsapi.org:443
DEBUG: 2019-11-11 13:12:47,014 https://newsapi.org:443 "GET /v2/top-headlines?country=gb&apiKey=d9b36d5b441a4d0fbfbbff29b9ea5bec HTTP/1.1" 200 16083
INFO: 2019-11-11 13:12:47,020 {'timestamp': '13:12:47', 'type': 'news', 'description': 'New news articlesGeneral election: Farage says Brexit party will not stand in 317 Tory seats - live news - The Guardian', 'error': ''}
DEBUG: 2019-11-11 13:12:50,229 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 13:12:50,303 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Tewkesbury%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 447
INFO: 2019-11-11 13:12:53,390 127.0.0.1 - - [11/Nov/2019 13:12:53] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 13:12:56,447 {'timestamp': '13:12:56', 'type': 'news', 'description': 'New news articlesGeneral election: Farage says Brexit party will not stand in 317 Tory seats - live news - The Guardian', 'error': ''}
INFO: 2019-11-11 13:12:57,414 127.0.0.1 - - [11/Nov/2019 13:12:57] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 13:12:58,376 127.0.0.1 - - [11/Nov/2019 13:12:58] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 13:13:05,883 {'timestamp': '13:13:05', 'type': 'news', 'description': 'New news articlesGeneral election: Farage says Brexit party will not stand in 317 Tory seats - live news - The Guardian', 'error': ''}
INFO: 2019-11-11 13:13:07,482 127.0.0.1 - - [11/Nov/2019 13:13:07] "GET /notification-filter?alarm=True&news=True HTTP/1.1" 302 -
INFO: 2019-11-11 13:13:07,489 127.0.0.1 - - [11/Nov/2019 13:13:07] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 13:13:08,246 127.0.0.1 - - [11/Nov/2019 13:13:08] "GET /notification-filter HTTP/1.1" 302 -
INFO: 2019-11-11 13:13:08,253 127.0.0.1 - - [11/Nov/2019 13:13:08] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 13:13:12,820 127.0.0.1 - - [11/Nov/2019 13:13:12] "GET /notification-filter?weather=True HTTP/1.1" 302 -
INFO: 2019-11-11 13:13:12,827 127.0.0.1 - - [11/Nov/2019 13:13:12] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 13:13:13,998 127.0.0.1 - - [11/Nov/2019 13:13:13] "GET /notification-filter?news=True HTTP/1.1" 302 -
INFO: 2019-11-11 13:13:14,005 127.0.0.1 - - [11/Nov/2019 13:13:14] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 13:13:15,254 {'timestamp': '13:13:15', 'type': 'news', 'description': 'New news articlesGeneral election: Farage says Brexit party will not stand in 317 Tory seats - live news - The Guardian', 'error': ''}
DEBUG: 2019-11-11 13:13:20,315 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 13:13:20,381 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Tewkesbury%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 447
INFO: 2019-11-11 13:13:24,688 {'timestamp': '13:13:24', 'type': 'news', 'description': 'New news articlesGeneral election: Farage says Brexit party will not stand in 317 Tory seats - live news - The Guardian', 'error': ''}
INFO: 2019-11-11 13:13:34,067 {'timestamp': '13:13:34', 'type': 'news', 'description': "New news articlesAnt McPartlin and Anne-Marie enjoy double date with Declan Donnelly and Ali ahead of I'm A Celeb - Daily Mail", 'error': ''}
INFO: 2019-11-11 13:13:41,632 {'timestamp': '13:13:41', 'type': 'news', 'description': "New news articlesAnt McPartlin and Anne-Marie enjoy double date with Declan Donnelly and Ali ahead of I'm A Celeb - Daily Mail", 'error': ''}
INFO: 2019-11-11 13:13:49,182 {'timestamp': '13:13:49', 'type': 'news', 'description': "New news articlesAnt McPartlin and Anne-Marie enjoy double date with Declan Donnelly and Ali ahead of I'm A Celeb - Daily Mail", 'error': ''}
DEBUG: 2019-11-11 13:13:50,392 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 13:13:50,457 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Tewkesbury%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 447
INFO: 2019-11-11 13:13:56,736 {'timestamp': '13:13:56', 'type': 'news', 'description': "New news articlesAnt McPartlin and Anne-Marie enjoy double date with Declan Donnelly and Ali ahead of I'm A Celeb - Daily Mail", 'error': ''}
INFO: 2019-11-11 13:14:00,550 127.0.0.1 - - [11/Nov/2019 13:14:00] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 13:14:04,294 {'timestamp': '13:14:04', 'type': 'news', 'description': "New news articlesAnt McPartlin and Anne-Marie enjoy double date with Declan Donnelly and Ali ahead of I'm A Celeb - Daily Mail", 'error': ''}
INFO: 2019-11-11 13:14:09,352 127.0.0.1 - - [11/Nov/2019 13:14:09] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 13:14:11,362 127.0.0.1 - - [11/Nov/2019 13:14:11] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 13:14:11,785 127.0.0.1 - - [11/Nov/2019 13:14:11] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 13:14:11,851 {'timestamp': '13:14:11', 'type': 'news', 'description': 'New news articlesEngland flooding: More rain due as disruption continues - BBC News', 'error': ''}
INFO: 2019-11-11 13:14:14,409 127.0.0.1 - - [11/Nov/2019 13:14:14] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 13:14:16,967 127.0.0.1 - - [11/Nov/2019 13:14:16] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 13:14:18,174 {'timestamp': '13:14:18', 'type': 'news', 'description': 'New news articlesEngland flooding: More rain due as disruption continues - BBC News', 'error': ''}
INFO: 2019-11-11 13:14:19,722 127.0.0.1 - - [11/Nov/2019 13:14:19] "GET / HTTP/1.1" 200 -
DEBUG: 2019-11-11 13:14:20,474 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 13:14:20,550 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Tewkesbury%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 447
INFO: 2019-11-11 13:14:24,511 {'timestamp': '13:14:24', 'type': 'news', 'description': 'New news articlesEngland flooding: More rain due as disruption continues - BBC News', 'error': ''}
INFO: 2019-11-11 13:14:30,847 {'timestamp': '13:14:30', 'type': 'news', 'description': 'New news articlesEngland flooding: More rain due as disruption continues - BBC News', 'error': ''}
INFO: 2019-11-11 13:14:37,183 {'timestamp': '13:14:37', 'type': 'news', 'description': 'New news articlesEngland flooding: More rain due as disruption continues - BBC News', 'error': ''}
INFO: 2019-11-11 13:14:43,507 {'timestamp': '13:14:43', 'type': 'news', 'description': "New news articlesThe biggest moments from the People's Choice Awards - BBC News", 'error': ''}
INFO: 2019-11-11 13:14:49,140 {'timestamp': '13:14:49', 'type': 'news', 'description': "New news articlesThe biggest moments from the People's Choice Awards - BBC News", 'error': ''}
DEBUG: 2019-11-11 13:14:50,565 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 13:14:50,633 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Tewkesbury%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 447
INFO: 2019-11-11 13:14:54,763 {'timestamp': '13:14:54', 'type': 'news', 'description': "New news articlesThe biggest moments from the People's Choice Awards - BBC News", 'error': ''}
INFO: 2019-11-11 13:15:00,390 {'timestamp': '13:15:00', 'type': 'news', 'description': "New news articlesThe biggest moments from the People's Choice Awards - BBC News", 'error': ''}
INFO: 2019-11-11 13:20:27,619 {'timestamp': '13:20:27', 'type': 'news', 'description': 'New news articlesGeneral election: Farage says Brexit party will not stand in 317 Tory seats - live news - The Guardian', 'error': ''}
INFO: 2019-11-11 13:20:37,116 {'timestamp': '13:20:37', 'type': 'news', 'description': "New news articlesAnt McPartlin and Anne-Marie enjoy double date with Declan Donnelly and Ali ahead of I'm A Celeb - Daily Mail", 'error': ''}
INFO: 2019-11-11 13:22:11,961 {'timestamp': '13:22:11', 'type': 'news', 'description': 'New news articlesGeneral election: Farage says Brexit party will not stand in 317 Tory seats - live news - The Guardian', 'error': ''}
INFO: 2019-11-11 13:22:21,451 {'timestamp': '13:22:21', 'type': 'news', 'description': "New news articlesAnt McPartlin and Anne-Marie enjoy double date with Declan Donnelly and Ali ahead of I'm A Celeb - Daily Mail", 'error': ''}
INFO: 2019-11-11 13:24:22,947 {'timestamp': '13:24:22', 'type': 'weather', 'description': 'Current Weather in Tewkesbury has been updated.', 'error': ''}
DEBUG: 2019-11-11 13:24:52,843 Starting new HTTPS connection (1): newsapi.org:443
DEBUG: 2019-11-11 13:24:53,325 https://newsapi.org:443 "GET /v2/top-headlines?country=gb&apiKey=d9b36d5b441a4d0fbfbbff29b9ea5bec HTTP/1.1" 200 16083
INFO: 2019-11-11 13:24:53,348 {'timestamp': '13:24:53', 'type': 'news', 'description': 'New news articlesGeneral election: Farage says Brexit party will not stand in 317 Tory seats - live news - The Guardian', 'error': ''}
DEBUG: 2019-11-11 13:24:56,376 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 13:24:56,448 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Tewkesbury%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 447
INFO: 2019-11-11 13:25:02,748 {'timestamp': '13:25:02', 'type': 'news', 'description': "New news articlesAnt McPartlin and Anne-Marie enjoy double date with Declan Donnelly and Ali ahead of I'm A Celeb - Daily Mail", 'error': ''}
INFO: 2019-11-11 13:25:10,307 {'timestamp': '13:25:10', 'type': 'news', 'description': 'New news articlesEngland flooding: More rain due as disruption continues - BBC News', 'error': ''}
INFO: 2019-11-11 13:25:16,645 {'timestamp': '13:25:16', 'type': 'news', 'description': "New news articlesThe biggest moments from the People's Choice Awards - BBC News", 'error': ''}
INFO: 2019-11-11 13:25:22,273 {'timestamp': '13:25:22', 'type': 'news', 'description': 'New news articlesCo-founder of White Helmets found dead days after Russia claimed he was a spy - Sky News', 'error': ''}
DEBUG: 2019-11-11 13:25:26,466 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 13:25:26,528 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Tewkesbury%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 447
INFO: 2019-11-11 13:25:43,643 127.0.0.1 - - [11/Nov/2019 13:25:43] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 13:25:46,536 127.0.0.1 - - [11/Nov/2019 13:25:46] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 13:25:47,150 127.0.0.1 - - [11/Nov/2019 13:25:47] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 13:35:18,761 {'timestamp': '13:35:18', 'type': 'weather', 'description': 'Current Weather in Tewkesbury has been updated.', 'error': ''}
INFO: 2019-11-11 13:58:30,389 {'timestamp': '13:58:30', 'type': 'weather', 'description': 'Current Weather in Tewkesbury has been updated.', 'error': ''}
DEBUG: 2019-11-11 13:59:00,286 Starting new HTTPS connection (1): newsapi.org:443
DEBUG: 2019-11-11 13:59:00,743 https://newsapi.org:443 "GET /v2/top-headlines?country=gb&apiKey=d9b36d5b441a4d0fbfbbff29b9ea5bec HTTP/1.1" 200 17017
INFO: 2019-11-11 13:59:00,759 {'timestamp': '13:59:00', 'type': 'news', 'description': "New news articlesUK growth 'slowest in almost a decade' - BBC News", 'error': ''}
DEBUG: 2019-11-11 13:59:03,831 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 13:59:03,906 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Tewkesbury%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 454
INFO: 2019-11-11 13:59:06,290 {'timestamp': '13:59:06', 'type': 'news', 'description': 'New news articlesGeneral election: Farage says Brexit party will not stand in 317 Tory seats - live news - The Guardian', 'error': ''}
INFO: 2019-11-11 14:07:27,912 {'timestamp': '14:07:27', 'type': 'news', 'description': "New news articlesUK growth 'slowest in almost a decade' - BBC News", 'error': ''}
INFO: 2019-11-11 14:07:33,548 {'timestamp': '14:07:33', 'type': 'news', 'description': 'New news articlesGeneral election: Farage says Brexit party will not stand in 317 Tory seats - live news - The Guardian', 'error': ''}
INFO: 2019-11-11 14:40:31,834 {'timestamp': '14:40:31', 'type': 'weather', 'description': 'Current Weather in Tewkesbury has been updated.', 'error': ''}
INFO: 2019-11-11 14:41:00,025 {'timestamp': '14:41:00', 'type': 'alarm', 'description': 'Alarm scheduled for 2019-11-11 14:41:00 has gone off.', 'error': ''}
DEBUG: 2019-11-11 14:41:01,703 Starting new HTTPS connection (1): newsapi.org:443
DEBUG: 2019-11-11 14:41:02,170 https://newsapi.org:443 "GET /v2/top-headlines?country=gb&apiKey=d9b36d5b441a4d0fbfbbff29b9ea5bec HTTP/1.1" 200 17041
INFO: 2019-11-11 14:41:02,196 {'timestamp': '14:41:02', 'type': 'news', 'description': 'New news articlesGeneral election 2019: Labour and Tories make Armistice Day vows to forces - BBC News', 'error': ''}
DEBUG: 2019-11-11 14:41:05,283 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 14:41:05,367 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Tewkesbury%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 461
INFO: 2019-11-11 14:41:10,784 {'timestamp': '14:41:10', 'type': 'news', 'description': "New news articlesUK growth 'slowest in almost a decade' - BBC News", 'error': ''}
INFO: 2019-11-11 14:41:16,327 {'timestamp': '14:41:16', 'type': 'news', 'description': 'New news articlesJames Le Mesurier: White Helmets backer discovered dead in Turkey - BBC News', 'error': ''}
INFO: 2019-11-11 14:41:23,025 {'timestamp': '14:41:23', 'type': 'news', 'description': 'New news articlesTimeline for Falcon 9 launch of Starlink satellites - Spaceflight Now', 'error': ''}
INFO: 2019-11-11 14:41:29,179 {'timestamp': '14:41:29', 'type': 'news', 'description': "New news articlesI'm A Celeb: Jacqueline Jossa and James Haskell join Caitlyn Jenner - Daily Mail", 'error': ''}
INFO: 2019-11-11 14:41:33,513 127.0.0.1 - - [11/Nov/2019 14:41:33] "GET /notification-clear?clear_notifcations= HTTP/1.1" 302 -
INFO: 2019-11-11 14:41:33,536 127.0.0.1 - - [11/Nov/2019 14:41:33] "GET / HTTP/1.1" 200 -
DEBUG: 2019-11-11 14:41:35,390 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 14:41:35,453 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Tewkesbury%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 461
INFO: 2019-11-11 14:41:35,585 127.0.0.1 - - [11/Nov/2019 14:41:35] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 14:41:36,012 127.0.0.1 - - [11/Nov/2019 14:41:36] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 14:41:36,037 127.0.0.1 - - [11/Nov/2019 14:41:36] "GET /None HTTP/1.1" 404 -
INFO: 2019-11-11 14:41:36,699 127.0.0.1 - - [11/Nov/2019 14:41:36] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 14:41:36,720 127.0.0.1 - - [11/Nov/2019 14:41:36] "GET /None HTTP/1.1" 404 -
INFO: 2019-11-11 14:41:37,664 127.0.0.1 - - [11/Nov/2019 14:41:37] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 14:41:37,686 127.0.0.1 - - [11/Nov/2019 14:41:37] "GET /None HTTP/1.1" 404 -
DEBUG: 2019-11-11 14:42:05,470 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 14:42:05,541 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Tewkesbury%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 461
DEBUG: 2019-11-11 14:42:35,556 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 14:42:35,626 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Tewkesbury%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 461
DEBUG: 2019-11-11 14:42:35,800 Starting new HTTPS connection (1): newsapi.org:443
DEBUG: 2019-11-11 14:42:36,236 https://newsapi.org:443 "GET /v2/top-headlines?country=gb&apiKey=d9b36d5b441a4d0fbfbbff29b9ea5bec HTTP/1.1" 200 17041
INFO: 2019-11-11 14:44:00,009 {'timestamp': '14:44:00', 'type': 'alarm', 'description': 'Alarm scheduled for 2019-11-11 14:44:00 has gone off.', 'error': ''}
DEBUG: 2019-11-11 14:44:23,143 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 14:44:23,231 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Tewkesbury%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 461
DEBUG: 2019-11-11 14:44:53,248 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 14:44:53,324 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Tewkesbury%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 461
DEBUG: 2019-11-11 14:44:53,419 Starting new HTTPS connection (1): newsapi.org:443
DEBUG: 2019-11-11 14:44:53,853 https://newsapi.org:443 "GET /v2/top-headlines?country=gb&apiKey=d9b36d5b441a4d0fbfbbff29b9ea5bec HTTP/1.1" 200 17041
DEBUG: 2019-11-11 14:45:23,343 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 14:45:23,416 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Tewkesbury%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 461
DEBUG: 2019-11-11 14:45:53,433 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 14:45:53,508 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Tewkesbury%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 461
DEBUG: 2019-11-11 14:45:53,892 Starting new HTTPS connection (1): newsapi.org:443
DEBUG: 2019-11-11 14:45:54,325 https://newsapi.org:443 "GET /v2/top-headlines?country=gb&apiKey=d9b36d5b441a4d0fbfbbff29b9ea5bec HTTP/1.1" 200 17041
DEBUG: 2019-11-11 14:46:23,525 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 14:46:23,596 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Tewkesbury%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 461
INFO: 2019-11-11 14:54:48,982 {'timestamp': '14:54:48', 'type': 'weather', 'description': 'Current Weather in Tewkesbury has been updated.', 'error': ''}
INFO: 2019-11-11 14:54:52,480 127.0.0.1 - - [11/Nov/2019 14:54:52] "GET /weather-change?old_location=Tewkesbury&new_location=tewkesbury HTTP/1.1" 302 -
INFO: 2019-11-11 14:54:52,500 127.0.0.1 - - [11/Nov/2019 14:54:52] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 14:54:52,526 127.0.0.1 - - [11/Nov/2019 14:54:52] "GET /None HTTP/1.1" 404 -
DEBUG: 2019-11-11 14:54:56,794 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 14:54:56,875 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 445
INFO: 2019-11-11 14:54:56,957 127.0.0.1 - - [11/Nov/2019 14:54:56] "GET /weather-change?old_location=Tewkesbury&new_location=Exeter HTTP/1.1" 302 -
DEBUG: 2019-11-11 14:54:56,963 Starting new HTTPS connection (1): api.openweathermap.org:443
INFO: 2019-11-11 14:54:56,971 127.0.0.1 - - [11/Nov/2019 14:54:56] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 14:54:57,002 127.0.0.1 - - [11/Nov/2019 14:54:57] "GET /None HTTP/1.1" 404 -
DEBUG: 2019-11-11 14:54:57,041 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Tewkesbury%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 461
INFO: 2019-11-11 14:55:04,282 127.0.0.1 - - [11/Nov/2019 14:55:04] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 14:55:04,302 127.0.0.1 - - [11/Nov/2019 14:55:04] "GET /None HTTP/1.1" 404 -
INFO: 2019-11-11 14:55:05,249 127.0.0.1 - - [11/Nov/2019 14:55:05] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 14:55:05,268 127.0.0.1 - - [11/Nov/2019 14:55:05] "GET /None HTTP/1.1" 404 -
DEBUG: 2019-11-11 14:55:08,894 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 14:55:08,965 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 445
INFO: 2019-11-11 14:55:09,051 127.0.0.1 - - [11/Nov/2019 14:55:09] "GET /weather-change?old_location=Tewkesbury&new_location=Exeter HTTP/1.1" 302 -
INFO: 2019-11-11 14:55:09,059 127.0.0.1 - - [11/Nov/2019 14:55:09] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 14:55:09,085 127.0.0.1 - - [11/Nov/2019 14:55:09] "GET /None HTTP/1.1" 404 -
INFO: 2019-11-11 14:55:10,746 127.0.0.1 - - [11/Nov/2019 14:55:10] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 14:55:10,771 127.0.0.1 - - [11/Nov/2019 14:55:10] "GET /None HTTP/1.1" 404 -
INFO: 2019-11-11 14:55:13,352 127.0.0.1 - - [11/Nov/2019 14:55:13] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 14:55:13,371 127.0.0.1 - - [11/Nov/2019 14:55:13] "GET /None HTTP/1.1" 404 -
INFO: 2019-11-11 14:55:14,396 127.0.0.1 - - [11/Nov/2019 14:55:14] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 14:55:14,427 127.0.0.1 - - [11/Nov/2019 14:55:14] "GET /None HTTP/1.1" 404 -
INFO: 2019-11-11 14:55:15,920 127.0.0.1 - - [11/Nov/2019 14:55:15] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 14:55:15,939 127.0.0.1 - - [11/Nov/2019 14:55:15] "GET /None HTTP/1.1" 404 -
INFO: 2019-11-11 19:13:42,193 {'timestamp': '19:13:42', 'type': 'weather', 'description': 'Current Weather in Exeter has been updated.', 'error': ''}
INFO: 2019-11-11 19:13:45,463 127.0.0.1 - - [11/Nov/2019 19:13:45] "GET /weather-change?old_location=Exeter&new_location= HTTP/1.1" 302 -
INFO: 2019-11-11 19:13:45,483 127.0.0.1 - - [11/Nov/2019 19:13:45] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 19:13:45,509 127.0.0.1 - - [11/Nov/2019 19:13:45] "GET /None HTTP/1.1" 404 -
DEBUG: 2019-11-11 19:13:47,718 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:13:47,786 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
INFO: 2019-11-11 19:13:47,793 127.0.0.1 - - [11/Nov/2019 19:13:47] "GET /weather-change?old_location=Exeter&new_location= HTTP/1.1" 302 -
INFO: 2019-11-11 19:13:47,800 127.0.0.1 - - [11/Nov/2019 19:13:47] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 19:13:47,824 127.0.0.1 - - [11/Nov/2019 19:13:47] "GET /None HTTP/1.1" 404 -
DEBUG: 2019-11-11 19:13:49,886 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:13:49,949 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
INFO: 2019-11-11 19:13:49,957 127.0.0.1 - - [11/Nov/2019 19:13:49] "GET /weather-change?old_location=Exeter&new_location= HTTP/1.1" 302 -
INFO: 2019-11-11 19:13:49,967 127.0.0.1 - - [11/Nov/2019 19:13:49] "GET / HTTP/1.1" 200 -
INFO: 2019-11-11 19:13:49,991 127.0.0.1 - - [11/Nov/2019 19:13:49] "GET /None HTTP/1.1" 404 -
DEBUG: 2019-11-11 19:14:02,720 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:14:02,794 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:14:15,471 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:14:15,539 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:14:17,802 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:14:17,866 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:14:19,966 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:14:20,041 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:14:32,730 Starting new HTTPS connection (1): newsapi.org:443
DEBUG: 2019-11-11 19:14:32,812 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:14:32,888 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:14:33,187 https://newsapi.org:443 "GET /v2/top-headlines?country=gb&apiKey=d9b36d5b441a4d0fbfbbff29b9ea5bec HTTP/1.1" 200 17240
INFO: 2019-11-11 19:14:33,192 {'timestamp': '19:14:33', 'type': 'news', 'description': 'New news articlesDrayton Manor death: Jurors find Evha Jannath died accidentally - BBC News', 'error': ''}
INFO: 2019-11-11 19:14:39,936 {'timestamp': '19:14:39', 'type': 'news', 'description': "New news articlesUnai Emery 'right man' for Arsenal, say club's hierarchy - Sky Sports", 'error': ''}
DEBUG: 2019-11-11 19:14:45,555 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:14:45,632 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
INFO: 2019-11-11 19:14:46,272 {'timestamp': '19:14:46', 'type': 'news', 'description': 'New news articlesWhite Helmets co-founder discovered dead in Turkey - BBC News', 'error': ''}
DEBUG: 2019-11-11 19:14:47,886 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:14:47,954 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:14:50,061 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:14:50,131 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
INFO: 2019-11-11 19:14:52,046 {'timestamp': '19:14:52', 'type': 'news', 'description': 'New news articlesATP Finals: Stefanos Tsitsipas beats Daniil Medvedev in London opener - BBC Sport', 'error': ''}
INFO: 2019-11-11 19:14:59,811 {'timestamp': '19:14:59', 'type': 'news', 'description': 'New news articlesNadal, Djokovic & Federer on rivalry and friendship on ATP tennis tour - BBC News', 'error': ''}
DEBUG: 2019-11-11 19:15:02,904 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:15:03,168 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
INFO: 2019-11-11 19:15:09,955 127.0.0.1 - - [11/Nov/2019 19:15:09] "GET / HTTP/1.1" 200 -
DEBUG: 2019-11-11 19:15:15,652 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:15:15,727 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:15:17,971 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:15:18,047 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:15:20,148 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:15:20,314 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:15:33,185 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:15:33,261 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:15:45,741 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:15:45,811 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:15:48,068 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:15:48,144 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:15:50,334 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:15:50,402 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:16:03,280 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:16:03,357 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
INFO: 2019-11-11 19:16:04,115 127.0.0.1 - - [11/Nov/2019 19:16:04] "GET /add-alarm?alarm_time=19%3A17&label=Wake+up HTTP/1.1" 302 -
INFO: 2019-11-11 19:16:04,134 127.0.0.1 - - [11/Nov/2019 19:16:04] "GET / HTTP/1.1" 200 -
DEBUG: 2019-11-11 19:16:07,555 Starting new HTTPS connection (1): newsapi.org:443
DEBUG: 2019-11-11 19:16:07,990 https://newsapi.org:443 "GET /v2/top-headlines?country=gb&apiKey=d9b36d5b441a4d0fbfbbff29b9ea5bec HTTP/1.1" 200 17240
DEBUG: 2019-11-11 19:16:15,829 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:16:15,889 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:16:18,161 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:16:18,240 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:16:20,421 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:16:20,494 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:16:33,377 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:16:33,449 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:16:45,900 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:16:45,970 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:16:48,260 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:16:48,330 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:16:50,509 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:16:50,571 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
INFO: 2019-11-11 19:17:00,006 {'timestamp': '19:17:00', 'type': 'alarm', 'description': 'Alarm scheduled for 2019-11-11 19:17:00 has gone off.', 'error': ''}
DEBUG: 2019-11-11 19:17:03,468 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:17:03,543 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:17:08,021 Starting new HTTPS connection (1): newsapi.org:443
DEBUG: 2019-11-11 19:17:08,455 https://newsapi.org:443 "GET /v2/top-headlines?country=gb&apiKey=d9b36d5b441a4d0fbfbbff29b9ea5bec HTTP/1.1" 200 17240
DEBUG: 2019-11-11 19:17:15,985 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:17:16,057 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:17:18,344 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:17:18,406 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:17:20,583 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:17:20,646 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:17:33,563 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:17:33,637 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
INFO: 2019-11-11 19:17:40,841 127.0.0.1 - - [11/Nov/2019 19:17:40] "GET /add-alarm?alarm_time=08%3A05&day_0=Monday&day_2=Wednesday&day_3=Thursday&label=Wake+up HTTP/1.1" 302 -
INFO: 2019-11-11 19:17:40,872 127.0.0.1 - - [11/Nov/2019 19:17:40] "GET / HTTP/1.1" 200 -
DEBUG: 2019-11-11 19:17:46,077 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:17:46,155 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
INFO: 2019-11-11 19:17:46,324 127.0.0.1 - - [11/Nov/2019 19:17:46] "GET /delete-alarm?alarm_time=19%3A17 HTTP/1.1" 302 -
INFO: 2019-11-11 19:17:46,332 127.0.0.1 - - [11/Nov/2019 19:17:46] "GET / HTTP/1.1" 200 -
DEBUG: 2019-11-11 19:17:48,422 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:17:48,501 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:17:50,657 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:17:50,729 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:18:03,653 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:18:03,725 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:18:08,483 Starting new HTTPS connection (1): newsapi.org:443
DEBUG: 2019-11-11 19:18:08,916 https://newsapi.org:443 "GET /v2/top-headlines?country=gb&apiKey=d9b36d5b441a4d0fbfbbff29b9ea5bec HTTP/1.1" 200 17240
INFO: 2019-11-11 19:18:09,489 127.0.0.1 - - [11/Nov/2019 19:18:09] "GET /add-alarm?alarm_time=08%3A45&day_1=Tuesday&day_4=Friday&day_5=Saturday&day_6=Sunday&label=Wake+up HTTP/1.1" 302 -
INFO: 2019-11-11 19:18:09,505 127.0.0.1 - - [11/Nov/2019 19:18:09] "GET / HTTP/1.1" 200 -
DEBUG: 2019-11-11 19:18:16,174 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:18:16,245 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:18:18,517 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:18:18,594 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:18:20,750 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:18:20,820 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:18:33,744 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:18:33,814 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:18:46,257 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:18:46,330 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:18:48,614 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:18:48,687 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
INFO: 2019-11-11 19:18:49,292 127.0.0.1 - - [11/Nov/2019 19:18:49] "GET /add-alarm?alarm_time=13%3A00&day_2=Wednesday&day_5=Saturday&label=Shopping HTTP/1.1" 302 -
INFO: 2019-11-11 19:18:49,301 127.0.0.1 - - [11/Nov/2019 19:18:49] "GET / HTTP/1.1" 200 -
DEBUG: 2019-11-11 19:18:50,840 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:18:50,914 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:19:03,834 Starting new HTTPS connection (1): api.openweathermap.org:443
INFO: 2019-11-11 19:19:03,864 127.0.0.1 - - [11/Nov/2019 19:19:03] "GET / HTTP/1.1" 200 -
DEBUG: 2019-11-11 19:19:03,900 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:19:08,940 Starting new HTTPS connection (1): newsapi.org:443
DEBUG: 2019-11-11 19:19:09,370 https://newsapi.org:443 "GET /v2/top-headlines?country=gb&apiKey=d9b36d5b441a4d0fbfbbff29b9ea5bec HTTP/1.1" 200 17240
DEBUG: 2019-11-11 19:19:16,345 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:19:16,410 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:19:18,708 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:19:18,779 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:19:20,928 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:19:20,992 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:19:33,912 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:19:33,975 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:19:46,426 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:19:46,497 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:19:48,792 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:19:48,859 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:19:51,005 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:19:51,068 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:20:03,995 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:20:04,072 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:20:09,395 Starting new HTTPS connection (1): newsapi.org:443
DEBUG: 2019-11-11 19:20:09,860 https://newsapi.org:443 "GET /v2/top-headlines?country=gb&apiKey=d9b36d5b441a4d0fbfbbff29b9ea5bec HTTP/1.1" 200 17240
DEBUG: 2019-11-11 19:20:16,512 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:20:16,593 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:20:18,879 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:20:18,957 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:20:21,088 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:20:21,161 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:20:34,092 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:20:34,190 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:20:46,612 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:20:46,684 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:20:48,976 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:20:49,047 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:20:51,176 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:20:51,247 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:21:04,206 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:21:04,279 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:21:09,891 Starting new HTTPS connection (1): newsapi.org:443
DEBUG: 2019-11-11 19:21:10,308 https://newsapi.org:443 "GET /v2/top-headlines?country=gb&apiKey=d9b36d5b441a4d0fbfbbff29b9ea5bec HTTP/1.1" 200 17240
DEBUG: 2019-11-11 19:21:16,703 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:21:16,785 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:21:19,063 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:21:19,127 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:21:21,267 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:21:21,343 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:21:34,299 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:21:34,376 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:21:46,804 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:21:46,866 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:21:49,150 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:21:49,215 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:21:51,359 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:21:51,429 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:22:04,391 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-11 19:22:04,454 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 467
DEBUG: 2019-11-11 19:22:10,344 Starting new HTTPS connection (1): newsapi.org:443
DEBUG: 2019-11-11 19:22:10,782 https://newsapi.org:443 "GET /v2/top-headlines?country=gb&apiKey=d9b36d5b441a4d0fbfbbff29b9ea5bec HTTP/1.1" 200 17240
INFO: 2019-11-17 12:52:32,544 {'timestamp': '12:52:32', 'type': 'weather', 'description': 'Current Weather in Exeter has been updated.', 'error': ''}
ERROR: 2019-11-17 12:52:38,193 Exception on / [GET]
Traceback (most recent call last):
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 2446, in wsgi_app
response = self.full_dispatch_request()
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 1951, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 1820, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\_compat.py", line 39, in reraise
raise value
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 1949, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 1935, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "C:\Users\Will Coates\source\repos\Smart Alarm Clock\Smart Alarm Clock\smart_alarm_clock.py", line 30, in home
news = update_news()
File "C:\Users\Will Coates\source\repos\Smart Alarm Clock\Smart Alarm Clock\news.py", line 32, in update_news
return news
NameError: name 'news' is not defined
INFO: 2019-11-17 12:52:38,196 127.0.0.1 - - [17/Nov/2019 12:52:38] "GET / HTTP/1.1" 500 -
DEBUG: 2019-11-17 12:53:02,435 Starting new HTTPS connection (1): newsapi.org:443
DEBUG: 2019-11-17 12:53:02,924 https://newsapi.org:443 "GET /v2/top-headlines?country=gb&apiKey=d9b36d5b441a4d0fbfbbff29b9ea5bec HTTP/1.1" 200 17934
INFO: 2019-11-17 12:53:02,940 {'timestamp': '12:53:02', 'type': 'news', 'description': 'New news articlesBoris Johnson news live: Jennifer Arcuri accuses PM of treating her like one-night stand as IFS warns Tory spending plans will mean tax rises - The Independent', 'error': ''}
DEBUG: 2019-11-17 12:53:06,248 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-17 12:53:06,317 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 434
INFO: 2019-11-17 12:53:14,531 {'timestamp': '12:53:14', 'type': 'news', 'description': 'New news articlesSri Lanka election: Ex-defence chief Rajapaksa wins presidency - BBC News', 'error': ''}
INFO: 2019-11-17 12:53:21,679 {'timestamp': '12:53:21', 'type': 'news', 'description': 'New news articlesGeneral election: Corbyn deflects questions on free movement live news - The Guardian', 'error': ''}
INFO: 2019-11-17 12:53:28,782 {'timestamp': '12:53:28', 'type': 'news', 'description': "New news articlesPhotographer of swinging 60s Terry O'Neill dies aged 81 - The Guardian", 'error': ''}
ERROR: 2019-11-17 12:53:34,798 Exception on / [GET]
Traceback (most recent call last):
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 2446, in wsgi_app
response = self.full_dispatch_request()
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 1951, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 1820, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\_compat.py", line 39, in reraise
raise value
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 1949, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 1935, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "C:\Users\Will Coates\source\repos\Smart Alarm Clock\Smart Alarm Clock\smart_alarm_clock.py", line 30, in home
news = update_news()
File "C:\Users\Will Coates\source\repos\Smart Alarm Clock\Smart Alarm Clock\news.py", line 32, in update_news
log_warning(error)
NameError: name 'news' is not defined
INFO: 2019-11-17 12:53:34,807 127.0.0.1 - - [17/Nov/2019 12:53:34] "GET / HTTP/1.1" 500 -
INFO: 2019-11-17 12:53:34,875 {'timestamp': '12:53:34', 'type': 'news', 'description': "New news articlesStrictly's Tess Daly's silver dress 'annoys and distracts' viewers with its falling shoulder strap - Daily Mail", 'error': ''}
ERROR: 2019-11-17 12:53:35,769 Exception on / [GET]
Traceback (most recent call last):
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 2446, in wsgi_app
response = self.full_dispatch_request()
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 1951, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 1820, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\_compat.py", line 39, in reraise
raise value
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 1949, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 1935, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "C:\Users\Will Coates\source\repos\Smart Alarm Clock\Smart Alarm Clock\smart_alarm_clock.py", line 30, in home
news = update_news()
File "C:\Users\Will Coates\source\repos\Smart Alarm Clock\Smart Alarm Clock\news.py", line 32, in update_news
log_warning(error)
NameError: name 'news' is not defined
INFO: 2019-11-17 12:53:35,772 127.0.0.1 - - [17/Nov/2019 12:53:35] "GET / HTTP/1.1" 500 -
DEBUG: 2019-11-17 12:53:36,331 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2019-11-17 12:53:36,405 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 434
ERROR: 2019-11-17 12:53:36,480 Exception on / [GET]
Traceback (most recent call last):
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 2446, in wsgi_app
response = self.full_dispatch_request()
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 1951, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 1820, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\_compat.py", line 39, in reraise
raise value
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 1949, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\lib\site-packages\flask\app.py", line 1935, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "C:\Users\Will Coates\source\repos\Smart Alarm Clock\Smart Alarm Clock\smart_alarm_clock.py", line 30, in home
news = update_news()
File "C:\Users\Will Coates\source\repos\Smart Alarm Clock\Smart Alarm Clock\news.py", line 32, in update_news
log_warning(error)
NameError: name 'news' is not defined
INFO: 2019-11-17 12:53:36,483 127.0.0.1 - - [17/Nov/2019 12:53:36] "GET / HTTP/1.1" 500 -
INFO: 2019-11-17 13:39:25,797 {'timestamp': '13:39:25', 'type': 'weather', 'description': 'Current Weather in Exeter has been updated.', 'error': ''}
INFO: 2020-01-09 11:40:58,185 {'timestamp': '11:40:58', 'type': 'weather', 'description': 'Current Weather in Exeter has been updated.', 'error': ''}
DEBUG: 2020-08-13 14:27:49,965 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2020-08-13 14:27:50,094 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 456
INFO: 2020-08-13 14:27:50,099 {'timestamp': '14:27:50', 'type': 'weather', 'description': 'Current Weather in Exeter has been updated.', 'error': ''}
DEBUG: 2020-08-13 14:27:50,099 SAPI.SPVoice -> {96749377-3391-11D2-9EE3-00C04F797396}
DEBUG: 2020-08-13 14:27:50,099 CoCreateInstance({96749377-3391-11D2-9EE3-00C04F797396}, clsctx=None, interface=None)
DEBUG: 2020-08-13 14:27:50,101 GetBestInterface(<POINTER(IUnknown) ptr=0x206bc8b30a0 at 206bac8f840>)
DEBUG: 2020-08-13 14:27:50,101 Does implement IProvideClassInfo
DEBUG: 2020-08-13 14:27:50,101 Default interface is {269316D8-57BD-11D2-9EEE-00C04F797396}
DEBUG: 2020-08-13 14:27:50,102 Release <POINTER(IUnknown) ptr=0x206bc8b30e0 at 206bb7c7040>
DEBUG: 2020-08-13 14:27:50,102 GetModule(TLIBATTR(GUID={C866CA3A-32F7-11D2-9602-00C04F8EE628}, Version=5.4, LCID=0, FLags=0x8))
DEBUG: 2020-08-13 14:27:50,102 Implements default interface from typeinfo <class 'comtypes.gen._C866CA3A_32F7_11D2_9602_00C04F8EE628_0_5_4.ISpeechVoice'>
DEBUG: 2020-08-13 14:27:50,102 Final result is <POINTER(ISpeechVoice) ptr=0x206bc8b30e0 at 206bb7c7040>
DEBUG: 2020-08-13 14:27:50,102 Release <POINTER(IProvideClassInfo) ptr=0x206bc8b3100 at 206bad2aac0>
DEBUG: 2020-08-13 14:27:50,102 Release <POINTER(ITypeInfo) ptr=0x206ba0c5598 at 206bb630940>
DEBUG: 2020-08-13 14:27:50,102 Release <POINTER(ITypeInfo) ptr=0x206ba0c55f0 at 206bb920a40>
DEBUG: 2020-08-13 14:27:50,102 Release <POINTER(ITypeLib) ptr=0x206b9db6e00 at 206bb920f40>
DEBUG: 2020-08-13 14:27:50,102 Release <POINTER(IUnknown) ptr=0x206bc8b30a0 at 206bac8f840>
DEBUG: 2020-08-13 14:27:50,102 <POINTER(ISpeechVoice) ptr=0x206bc8b30e0 at 206bb7c7040> using sinkinterface from clsid <class 'comtypes.gen._C866CA3A_32F7_11D2_9602_00C04F8EE628_0_5_4._ISpeechVoiceEvents'>
DEBUG: 2020-08-13 14:27:50,102 Release <POINTER(IProvideClassInfo2) ptr=0x206bc8b3100 at 206bac8f840>
DEBUG: 2020-08-13 14:27:50,103 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>: _ISpeechVoiceEvents.VoiceChange not implemented
DEBUG: 2020-08-13 14:27:50,103 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>: _ISpeechVoiceEvents.Bookmark not implemented
DEBUG: 2020-08-13 14:27:50,103 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>: _ISpeechVoiceEvents.Word not implemented
DEBUG: 2020-08-13 14:27:50,103 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>: _ISpeechVoiceEvents.Sentence not implemented
DEBUG: 2020-08-13 14:27:50,103 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>: _ISpeechVoiceEvents.Phoneme not implemented
DEBUG: 2020-08-13 14:27:50,103 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>: _ISpeechVoiceEvents.Viseme not implemented
DEBUG: 2020-08-13 14:27:50,103 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>: _ISpeechVoiceEvents.AudioLevel not implemented
DEBUG: 2020-08-13 14:27:50,103 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>: _ISpeechVoiceEvents.EnginePrivate not implemented
DEBUG: 2020-08-13 14:27:50,103 Start advise <class 'comtypes.gen._C866CA3A_32F7_11D2_9602_00C04F8EE628_0_5_4._ISpeechVoiceEvents'>
DEBUG: 2020-08-13 14:27:50,103 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.QueryInterface({A372ACD1-3BEF-4BBD-8FFB-CB3E2B416AF8}) -> S_OK
DEBUG: 2020-08-13 14:27:50,104 1 active COM objects: Added <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>
DEBUG: 2020-08-13 14:27:50,104 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 1
DEBUG: 2020-08-13 14:27:50,106 Release <POINTER(IConnectionPointContainer) ptr=0x206bc8b3108 at 206bb7c7a40>
DEBUG: 2020-08-13 14:27:50,134 wrap_outparam(<POINTER(ISpeechObjectToken) ptr=0x206bb84b250 at 206bb7c7a40>)
DEBUG: 2020-08-13 14:27:50,134 Release <POINTER(ISpeechObjectToken) ptr=0x206bb84b250 at 206bb7c7a40>
DEBUG: 2020-08-13 14:27:50,135 wrap_outparam(<POINTER(ISpeechObjectTokens) ptr=0x206bb84c300 at 206bb7c7a40>)
DEBUG: 2020-08-13 14:27:50,135 Release <POINTER(IUnknown) ptr=0x206bb8485b0 at 206bb8e36c0>
DEBUG: 2020-08-13 14:27:50,135 wrap_outparam(<POINTER(IDispatch) ptr=0x206bb84a950 at 206bad51b40>)
DEBUG: 2020-08-13 14:27:50,135 GetBestInterface(<POINTER(IDispatch) ptr=0x206bb84a950 at 206bad51b40>)
DEBUG: 2020-08-13 14:27:50,135 Does NOT implement IProvideClassInfo, trying IProvideClassInfo2
DEBUG: 2020-08-13 14:27:50,135 Does NOT implement IProvideClassInfo/IProvideClassInfo2
DEBUG: 2020-08-13 14:27:50,135 Release <POINTER(IUnknown) ptr=0x206ba0c5750 at 206bba252c0>
DEBUG: 2020-08-13 14:27:50,135 Default interface is {C74A3ADC-B727-4500-A84A-B526721C8B8C}
DEBUG: 2020-08-13 14:27:50,136 Release <POINTER(IUnknown) ptr=0x206bb84a950 at 206bba25c40>
DEBUG: 2020-08-13 14:27:50,136 GetModule(TLIBATTR(GUID={C866CA3A-32F7-11D2-9602-00C04F8EE628}, Version=5.4, LCID=0, FLags=0x8))
DEBUG: 2020-08-13 14:27:50,136 Implements default interface from typeinfo <class 'comtypes.gen._C866CA3A_32F7_11D2_9602_00C04F8EE628_0_5_4.ISpeechObjectToken'>
DEBUG: 2020-08-13 14:27:50,136 Final result is <POINTER(ISpeechObjectToken) ptr=0x206bb84a950 at 206bba252c0>
DEBUG: 2020-08-13 14:27:50,136 Release <POINTER(IDispatch) ptr=0x206bb84a950 at 206bad51dc0>
DEBUG: 2020-08-13 14:27:50,136 Release <POINTER(ITypeInfo) ptr=0x206ba0c5750 at 206bba25340>
DEBUG: 2020-08-13 14:27:50,136 Release <POINTER(ITypeLib) ptr=0x206b9db6e00 at 206bba25c40>
DEBUG: 2020-08-13 14:27:50,136 Release <POINTER(IDispatch) ptr=0x206bb84a950 at 206bad51b40>
DEBUG: 2020-08-13 14:27:50,136 Release <POINTER(IEnumVARIANT) ptr=0x206bb8485b0 at 206bb7c7bc0>
DEBUG: 2020-08-13 14:27:50,136 Release <POINTER(ISpeechObjectTokens) ptr=0x206bb84c300 at 206bb7c7a40>
DEBUG: 2020-08-13 14:27:50,136 Release <POINTER(ISpeechObjectToken) ptr=0x206bb84a950 at 206bba252c0>
DEBUG: 2020-08-13 14:27:53,179 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,179 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,180 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,180 wrap_outparam(<POINTER(IDispatch) ptr=0x206bb84a5f0 at 206bad51940>)
DEBUG: 2020-08-13 14:27:53,180 GetBestInterface(<POINTER(IDispatch) ptr=0x206bb84a5f0 at 206bad51940>)
DEBUG: 2020-08-13 14:27:53,180 Does NOT implement IProvideClassInfo, trying IProvideClassInfo2
DEBUG: 2020-08-13 14:27:53,180 Does NOT implement IProvideClassInfo/IProvideClassInfo2
DEBUG: 2020-08-13 14:27:53,180 Release <POINTER(IUnknown) ptr=0x206ba0c5750 at 206bb819cc0>
DEBUG: 2020-08-13 14:27:53,180 Default interface is {C74A3ADC-B727-4500-A84A-B526721C8B8C}
DEBUG: 2020-08-13 14:27:53,180 Release <POINTER(IUnknown) ptr=0x206bb84a5f0 at 206bb819340>
DEBUG: 2020-08-13 14:27:53,180 GetModule(TLIBATTR(GUID={C866CA3A-32F7-11D2-9602-00C04F8EE628}, Version=5.4, LCID=0, FLags=0x8))
DEBUG: 2020-08-13 14:27:53,181 Implements default interface from typeinfo <class 'comtypes.gen._C866CA3A_32F7_11D2_9602_00C04F8EE628_0_5_4.ISpeechObjectToken'>
DEBUG: 2020-08-13 14:27:53,181 Final result is <POINTER(ISpeechObjectToken) ptr=0x206bb84a5f0 at 206bb819cc0>
DEBUG: 2020-08-13 14:27:53,181 Release <POINTER(IDispatch) ptr=0x206bb84a5f0 at 206bb819b40>
DEBUG: 2020-08-13 14:27:53,181 Release <POINTER(ITypeInfo) ptr=0x206ba0c5750 at 206bb819440>
DEBUG: 2020-08-13 14:27:53,181 Release <POINTER(ITypeLib) ptr=0x206b9db6e00 at 206bb819340>
DEBUG: 2020-08-13 14:27:53,181 Release <POINTER(IDispatch) ptr=0x206bb84a5f0 at 206bad51940>
DEBUG: 2020-08-13 14:27:53,181 unimplemented method _ISpeechVoiceEvents_VoiceChange called
DEBUG: 2020-08-13 14:27:53,181 Release <POINTER(ISpeechObjectToken) ptr=0x206bb84a5f0 at 206bb819cc0>
DEBUG: 2020-08-13 14:27:53,181 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,181 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,181 unimplemented method _ISpeechVoiceEvents_Sentence called
DEBUG: 2020-08-13 14:27:53,181 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,181 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,181 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,181 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,181 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,182 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,182 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,182 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,182 unimplemented method _ISpeechVoiceEvents_Word called
DEBUG: 2020-08-13 14:27:53,182 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,182 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,182 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,182 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,182 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,182 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,182 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,182 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,182 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,182 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,182 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,182 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,183 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,183 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,183 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,183 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,183 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,183 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,183 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,183 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,183 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,183 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,183 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,183 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,183 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,183 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,183 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,183 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,183 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,184 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,184 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,184 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,184 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,184 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,184 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,184 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,184 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,184 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,184 unimplemented method _ISpeechVoiceEvents_Word called
DEBUG: 2020-08-13 14:27:53,184 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,184 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,184 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,184 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,184 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,184 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,185 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,185 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,185 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,185 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,185 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,185 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,185 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,185 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,185 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,185 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,185 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,185 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,185 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,185 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,185 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,185 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,186 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,186 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,186 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,186 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,186 unimplemented method _ISpeechVoiceEvents_Word called
DEBUG: 2020-08-13 14:27:53,186 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,186 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,186 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,186 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,186 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,186 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,186 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,186 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,186 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,186 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,186 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,187 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,187 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,187 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,187 unimplemented method _ISpeechVoiceEvents_Word called
DEBUG: 2020-08-13 14:27:53,187 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,187 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,187 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,187 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,187 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,187 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,187 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,187 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,187 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,187 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,187 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,187 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,187 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,188 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,188 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,188 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,188 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,188 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,188 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,188 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,188 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,188 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,188 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,188 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,188 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,188 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,188 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,188 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,188 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,189 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,189 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,189 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,189 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,189 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,189 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,189 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,189 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,189 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,189 unimplemented method _ISpeechVoiceEvents_Word called
DEBUG: 2020-08-13 14:27:53,189 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,189 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,189 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,189 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,189 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,189 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,190 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,190 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,190 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,190 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,190 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,190 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,190 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,190 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,190 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,190 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,190 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,190 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,190 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,190 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,190 unimplemented method _ISpeechVoiceEvents_Word called
DEBUG: 2020-08-13 14:27:53,190 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,190 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,191 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,191 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,191 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,191 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,191 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,191 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,191 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,191 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,191 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,191 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,191 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,191 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,191 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,191 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,191 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,191 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,192 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,192 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,192 unimplemented method _ISpeechVoiceEvents_Word called
DEBUG: 2020-08-13 14:27:53,192 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,192 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,192 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,192 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,192 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,192 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,192 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,192 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,192 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,192 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,192 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,192 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,192 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,192 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,193 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,193 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,193 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,193 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,193 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,193 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,193 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,193 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,193 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,193 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,193 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,193 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,193 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,193 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,193 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,193 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,194 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,194 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,194 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,194 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,194 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,194 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,194 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,194 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,194 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,194 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,194 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,194 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,194 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,194 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,194 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,194 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,194 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,195 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,195 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,195 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,195 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,195 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,195 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,195 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:27:53,195 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,195 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,195 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:27:53,195 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,195 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.AddRef() -> 2
DEBUG: 2020-08-13 14:27:53,195 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 1
DEBUG: 2020-08-13 14:27:53,246 Release <POINTER(ISpeechVoice) ptr=0x206bc8b30e0 at 206bb7c7040>
DEBUG: 2020-08-13 14:27:53,246 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>.Release() -> 0
DEBUG: 2020-08-13 14:27:53,246 0 active COM objects: Removed <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB829E80>
DEBUG: 2020-08-13 14:27:53,246 Remaining: []
DEBUG: 2020-08-13 14:27:53,247 Release <POINTER(IConnectionPoint) ptr=0x206bc8b30e8 at 206bb7c7940>
DEBUG: 2020-08-13 14:28:23,251 Starting new HTTPS connection (1): api.openweathermap.org:443
DEBUG: 2020-08-13 14:28:23,382 https://api.openweathermap.org:443 "GET /data/2.5/weather?q=Exeter%20%20%20%20%20&appid=538bb40abf4d6e37d9b8ce727f5be131&units=metric HTTP/1.1" 200 456
DEBUG: 2020-08-13 14:28:26,921 Starting new HTTPS connection (1): newsapi.org:443
DEBUG: 2020-08-13 14:28:27,128 https://newsapi.org:443 "GET /v2/top-headlines?country=gb&apiKey=d9b36d5b441a4d0fbfbbff29b9ea5bec HTTP/1.1" 200 None
INFO: 2020-08-13 14:28:27,145 {'timestamp': '14:28:27', 'type': 'news', 'description': 'New news articlesUS initial jobless claims fall below one million, first time since March - business live - The Guardian', 'error': ''}
DEBUG: 2020-08-13 14:28:27,146 SAPI.SPVoice -> {96749377-3391-11D2-9EE3-00C04F797396}
DEBUG: 2020-08-13 14:28:27,146 CoCreateInstance({96749377-3391-11D2-9EE3-00C04F797396}, clsctx=None, interface=None)
DEBUG: 2020-08-13 14:28:27,148 GetBestInterface(<POINTER(IUnknown) ptr=0x206bc8b30a0 at 206bba252c0>)
DEBUG: 2020-08-13 14:28:27,148 Does implement IProvideClassInfo
DEBUG: 2020-08-13 14:28:27,149 Default interface is {269316D8-57BD-11D2-9EEE-00C04F797396}
DEBUG: 2020-08-13 14:28:27,149 Release <POINTER(IUnknown) ptr=0x206bc8b30e0 at 206bb819340>
DEBUG: 2020-08-13 14:28:27,149 GetModule(TLIBATTR(GUID={C866CA3A-32F7-11D2-9602-00C04F8EE628}, Version=5.4, LCID=0, FLags=0x8))
DEBUG: 2020-08-13 14:28:27,149 Implements default interface from typeinfo <class 'comtypes.gen._C866CA3A_32F7_11D2_9602_00C04F8EE628_0_5_4.ISpeechVoice'>
DEBUG: 2020-08-13 14:28:27,149 Final result is <POINTER(ISpeechVoice) ptr=0x206bc8b30e0 at 206bb819cc0>
DEBUG: 2020-08-13 14:28:27,149 Release <POINTER(IProvideClassInfo) ptr=0x206bc8b3100 at 206bba25340>
DEBUG: 2020-08-13 14:28:27,149 Release <POINTER(ITypeInfo) ptr=0x206ba0c5598 at 206bba25c40>
DEBUG: 2020-08-13 14:28:27,149 Release <POINTER(ITypeInfo) ptr=0x206ba0c55f0 at 206bad51940>
DEBUG: 2020-08-13 14:28:27,149 Release <POINTER(ITypeLib) ptr=0x206b9db6e00 at 206bb819340>
DEBUG: 2020-08-13 14:28:27,149 Release <POINTER(IUnknown) ptr=0x206bc8b30a0 at 206bba252c0>
DEBUG: 2020-08-13 14:28:27,150 <POINTER(ISpeechVoice) ptr=0x206bc8b30e0 at 206bb819cc0> using sinkinterface from clsid <class 'comtypes.gen._C866CA3A_32F7_11D2_9602_00C04F8EE628_0_5_4._ISpeechVoiceEvents'>
DEBUG: 2020-08-13 14:28:27,150 Release <POINTER(IProvideClassInfo2) ptr=0x206bc8b3100 at 206bb8e36c0>
DEBUG: 2020-08-13 14:28:27,151 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>: _ISpeechVoiceEvents.VoiceChange not implemented
DEBUG: 2020-08-13 14:28:27,151 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>: _ISpeechVoiceEvents.Bookmark not implemented
DEBUG: 2020-08-13 14:28:27,151 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>: _ISpeechVoiceEvents.Word not implemented
DEBUG: 2020-08-13 14:28:27,151 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>: _ISpeechVoiceEvents.Sentence not implemented
DEBUG: 2020-08-13 14:28:27,151 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>: _ISpeechVoiceEvents.Phoneme not implemented
DEBUG: 2020-08-13 14:28:27,151 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>: _ISpeechVoiceEvents.Viseme not implemented
DEBUG: 2020-08-13 14:28:27,152 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>: _ISpeechVoiceEvents.AudioLevel not implemented
DEBUG: 2020-08-13 14:28:27,152 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>: _ISpeechVoiceEvents.EnginePrivate not implemented
DEBUG: 2020-08-13 14:28:27,152 Start advise <class 'comtypes.gen._C866CA3A_32F7_11D2_9602_00C04F8EE628_0_5_4._ISpeechVoiceEvents'>
DEBUG: 2020-08-13 14:28:27,152 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.QueryInterface({A372ACD1-3BEF-4BBD-8FFB-CB3E2B416AF8}) -> S_OK
DEBUG: 2020-08-13 14:28:27,152 1 active COM objects: Added <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>
DEBUG: 2020-08-13 14:28:27,152 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 1
DEBUG: 2020-08-13 14:28:27,156 Release <POINTER(IConnectionPointContainer) ptr=0x206bc8b3108 at 206bb819340>
DEBUG: 2020-08-13 14:28:27,189 wrap_outparam(<POINTER(ISpeechObjectToken) ptr=0x206bb84a3b0 at 206bb819340>)
DEBUG: 2020-08-13 14:28:27,189 Release <POINTER(ISpeechObjectToken) ptr=0x206bb84a3b0 at 206bb819340>
DEBUG: 2020-08-13 14:28:27,190 wrap_outparam(<POINTER(ISpeechObjectTokens) ptr=0x206bb84c500 at 206bb819340>)
DEBUG: 2020-08-13 14:28:27,190 Release <POINTER(IUnknown) ptr=0x206bb848970 at 206bb8198c0>
DEBUG: 2020-08-13 14:28:27,190 wrap_outparam(<POINTER(IDispatch) ptr=0x206bb84b0a0 at 206bb819940>)
DEBUG: 2020-08-13 14:28:27,190 GetBestInterface(<POINTER(IDispatch) ptr=0x206bb84b0a0 at 206bb819940>)
DEBUG: 2020-08-13 14:28:27,190 Does NOT implement IProvideClassInfo, trying IProvideClassInfo2
DEBUG: 2020-08-13 14:28:27,190 Does NOT implement IProvideClassInfo/IProvideClassInfo2
DEBUG: 2020-08-13 14:28:27,191 Release <POINTER(IUnknown) ptr=0x206ba0c5750 at 206bb819540>
DEBUG: 2020-08-13 14:28:27,191 Default interface is {C74A3ADC-B727-4500-A84A-B526721C8B8C}
DEBUG: 2020-08-13 14:28:27,191 Release <POINTER(IUnknown) ptr=0x206bb84b0a0 at 206bb8197c0>
DEBUG: 2020-08-13 14:28:27,191 GetModule(TLIBATTR(GUID={C866CA3A-32F7-11D2-9602-00C04F8EE628}, Version=5.4, LCID=0, FLags=0x8))
DEBUG: 2020-08-13 14:28:27,191 Implements default interface from typeinfo <class 'comtypes.gen._C866CA3A_32F7_11D2_9602_00C04F8EE628_0_5_4.ISpeechObjectToken'>
DEBUG: 2020-08-13 14:28:27,191 Final result is <POINTER(ISpeechObjectToken) ptr=0x206bb84b0a0 at 206bb819540>
DEBUG: 2020-08-13 14:28:27,191 Release <POINTER(IDispatch) ptr=0x206bb84b0a0 at 206bb819a40>
DEBUG: 2020-08-13 14:28:27,191 Release <POINTER(ITypeInfo) ptr=0x206ba0c5750 at 206bb8193c0>
DEBUG: 2020-08-13 14:28:27,191 Release <POINTER(ITypeLib) ptr=0x206b9db6e00 at 206bb8197c0>
DEBUG: 2020-08-13 14:28:27,191 Release <POINTER(IDispatch) ptr=0x206bb84b0a0 at 206bb819940>
DEBUG: 2020-08-13 14:28:27,192 Release <POINTER(IEnumVARIANT) ptr=0x206bb848970 at 206bb819b40>
DEBUG: 2020-08-13 14:28:27,192 Release <POINTER(ISpeechObjectTokens) ptr=0x206bb84c500 at 206bb819340>
DEBUG: 2020-08-13 14:28:27,192 Release <POINTER(ISpeechObjectToken) ptr=0x206bb84b0a0 at 206bb819540>
INFO: 2020-08-13 14:28:33,312 127.0.0.1 - - [13/Aug/2020 14:28:33] "[37mGET / HTTP/1.1[0m" 200 -
INFO: 2020-08-13 14:28:33,330 127.0.0.1 - - [13/Aug/2020 14:28:33] "[37mGET /static/css/main.css HTTP/1.1[0m" 200 -
INFO: 2020-08-13 14:28:33,342 127.0.0.1 - - [13/Aug/2020 14:28:33] "[33mGET /None HTTP/1.1[0m" 404 -
INFO: 2020-08-13 14:28:33,882 127.0.0.1 - - [13/Aug/2020 14:28:33] "[37mGET / HTTP/1.1[0m" 200 -
DEBUG: 2020-08-13 14:28:35,198 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,198 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,198 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,199 wrap_outparam(<POINTER(IDispatch) ptr=0x206bb84ae60 at 206bba39840>)
DEBUG: 2020-08-13 14:28:35,199 GetBestInterface(<POINTER(IDispatch) ptr=0x206bb84ae60 at 206bba39840>)
DEBUG: 2020-08-13 14:28:35,199 Does NOT implement IProvideClassInfo, trying IProvideClassInfo2
DEBUG: 2020-08-13 14:28:35,199 Does NOT implement IProvideClassInfo/IProvideClassInfo2
DEBUG: 2020-08-13 14:28:35,199 Release <POINTER(IUnknown) ptr=0x206ba0c5750 at 206bba39b40>
DEBUG: 2020-08-13 14:28:35,199 Default interface is {C74A3ADC-B727-4500-A84A-B526721C8B8C}
DEBUG: 2020-08-13 14:28:35,199 Release <POINTER(IUnknown) ptr=0x206bb84ae60 at 206bba394c0>
DEBUG: 2020-08-13 14:28:35,199 GetModule(TLIBATTR(GUID={C866CA3A-32F7-11D2-9602-00C04F8EE628}, Version=5.4, LCID=0, FLags=0x8))
DEBUG: 2020-08-13 14:28:35,199 Implements default interface from typeinfo <class 'comtypes.gen._C866CA3A_32F7_11D2_9602_00C04F8EE628_0_5_4.ISpeechObjectToken'>
DEBUG: 2020-08-13 14:28:35,200 Final result is <POINTER(ISpeechObjectToken) ptr=0x206bb84ae60 at 206bba39b40>
DEBUG: 2020-08-13 14:28:35,200 Release <POINTER(IDispatch) ptr=0x206bb84ae60 at 206bba39ac0>
DEBUG: 2020-08-13 14:28:35,200 Release <POINTER(ITypeInfo) ptr=0x206ba0c5750 at 206bba39940>
DEBUG: 2020-08-13 14:28:35,200 Release <POINTER(ITypeLib) ptr=0x206b9db6e00 at 206bba394c0>
DEBUG: 2020-08-13 14:28:35,200 Release <POINTER(IDispatch) ptr=0x206bb84ae60 at 206bba39840>
DEBUG: 2020-08-13 14:28:35,200 unimplemented method _ISpeechVoiceEvents_VoiceChange called
DEBUG: 2020-08-13 14:28:35,200 Release <POINTER(ISpeechObjectToken) ptr=0x206bb84ae60 at 206bba39b40>
DEBUG: 2020-08-13 14:28:35,200 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,200 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,200 unimplemented method _ISpeechVoiceEvents_Sentence called
DEBUG: 2020-08-13 14:28:35,200 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,200 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,200 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,200 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,200 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,200 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,200 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,201 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,201 unimplemented method _ISpeechVoiceEvents_Word called
DEBUG: 2020-08-13 14:28:35,201 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,201 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,201 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,201 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,201 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,201 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,201 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,201 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,201 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,201 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,201 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,201 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,201 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,201 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,202 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,202 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,202 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,202 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,202 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,202 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,202 unimplemented method _ISpeechVoiceEvents_Word called
DEBUG: 2020-08-13 14:28:35,202 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,202 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,202 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,202 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,202 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,202 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,202 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,202 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,202 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,203 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,203 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,203 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,203 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,203 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,203 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,203 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,203 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,203 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,203 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,203 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,203 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,203 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,203 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,203 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,203 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,204 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,204 unimplemented method _ISpeechVoiceEvents_Word called
DEBUG: 2020-08-13 14:28:35,204 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,204 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,204 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,204 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,204 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,204 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,204 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,204 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,204 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,204 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,204 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,204 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,204 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,204 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,205 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,205 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,205 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,205 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,205 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,205 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,205 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,205 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,205 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,205 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,205 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,205 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,205 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,205 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,205 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,205 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,206 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,206 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,206 unimplemented method _ISpeechVoiceEvents_Word called
DEBUG: 2020-08-13 14:28:35,206 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,206 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,206 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,206 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,206 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,206 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,206 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,206 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,206 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,206 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,206 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,206 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,206 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,206 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,207 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,207 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,207 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,207 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,207 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,207 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,207 unimplemented method _ISpeechVoiceEvents_Word called
DEBUG: 2020-08-13 14:28:35,207 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,207 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,207 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,207 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,207 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,207 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,207 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,207 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,207 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,208 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,208 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,208 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,208 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,208 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,208 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,208 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,208 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,208 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,208 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,208 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,208 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,208 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,208 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,208 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,208 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,209 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,209 unimplemented method _ISpeechVoiceEvents_Word called
DEBUG: 2020-08-13 14:28:35,209 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,209 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,209 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,209 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,209 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,209 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,209 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,209 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,209 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,209 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,209 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,209 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,209 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,209 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,210 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,210 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,210 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,210 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,210 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,210 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,210 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,210 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,210 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,210 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,210 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,210 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,210 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,210 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,210 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,210 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,210 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,211 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,211 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,211 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,211 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,211 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,211 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,211 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,211 unimplemented method _ISpeechVoiceEvents_Word called
DEBUG: 2020-08-13 14:28:35,211 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,211 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,211 unimplemented method _ISpeechVoiceEvents_Phoneme called
DEBUG: 2020-08-13 14:28:35,211 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,211 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2
DEBUG: 2020-08-13 14:28:35,211 unimplemented method _ISpeechVoiceEvents_Viseme called
DEBUG: 2020-08-13 14:28:35,211 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.Release() -> 1
DEBUG: 2020-08-13 14:28:35,211 <comtypes.client._events.CreateEventReceiver.<locals>.Sink object at 0x00000206BB80C400>.AddRef() -> 2