-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdjango.log
2625 lines (2625 loc) · 451 KB
/
django.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 2023-08-09 03:18:54,512 autoreload Watching for file changes with StatReloader
DEBUG 2023-08-09 03:18:54,516 autoreload Waiting for apps ready_event.
DEBUG 2023-08-09 03:18:54,644 autoreload Apps ready_event triggered. Sending autoreload_started signal.
DEBUG 2023-08-09 03:18:54,685 autoreload Watching dir C:\Users\Alice\Desktop\djangogram\templates with glob **/*.
DEBUG 2023-08-09 03:18:54,686 autoreload Watching dir C:\Users\Alice\Desktop\djangogram\locale with glob **/*.mo.
DEBUG 2023-08-09 03:18:54,687 autoreload Watching dir C:\Users\Alice\Desktop\djangogram\content\locale with glob **/*.mo.
DEBUG 2023-08-09 03:18:54,688 autoreload Watching dir C:\Users\Alice\Desktop\djangogram\user\locale with glob **/*.mo.
DEBUG 2023-08-09 03:18:54,759 utils (0.000)
SELECT name, type FROM sqlite_master
WHERE type in ('table', 'view') AND NOT name='sqlite_sequence'
ORDER BY name; args=None; alias=default
DEBUG 2023-08-09 03:18:54,765 utils (0.000) SELECT "django_migrations"."id", "django_migrations"."app", "django_migrations"."name", "django_migrations"."applied" FROM "django_migrations"; args=(); alias=default
DEBUG 2023-08-09 03:18:55,018 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\_util.py first seen with mtime 1691124227.8667593
DEBUG 2023-08-09 03:18:55,019 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\encodings\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,020 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\importlib\resources\_common.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,020 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\posixpath.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,021 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_concurrency_analyser\pydevd_thread_wrappers.py first seen with mtime 1691124227.9303524
DEBUG 2023-08-09 03:18:55,022 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\conf\global_settings.py first seen with mtime 1689162638.2137003
DEBUG 2023-08-09 03:18:55,022 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\pydev_is_thread_alive.py first seen with mtime 1691124227.883489
DEBUG 2023-08-09 03:18:55,023 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\files\storage\__init__.py first seen with mtime 1689162640.2936072
DEBUG 2023-08-09 03:18:55,023 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\packaging\__about__.py first seen with mtime 1689162641.1448421
DEBUG 2023-08-09 03:18:55,024 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\asgiref\sync.py first seen with mtime 1689162638.2037268
DEBUG 2023-08-09 03:18:55,024 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\asyncio.py first seen with mtime 1689162640.5983038
DEBUG 2023-08-09 03:18:55,025 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\fields.py first seen with mtime 1689162641.433161
DEBUG 2023-08-09 03:18:55,026 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\filters\__init__.py first seen with mtime 1689162641.7904904
DEBUG 2023-08-09 03:18:55,026 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\filters\others.py first seen with mtime 1689162641.7934828
DEBUG 2023-08-09 03:18:55,027 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_collect_bytecode_info.py first seen with mtime 1691124227.914731
DEBUG 2023-08-09 03:18:55,027 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\password_validation.py first seen with mtime 1689162639.0390787
DEBUG 2023-08-09 03:18:55,028 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\token.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,028 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_custom_frames.py first seen with mtime 1691124227.9303524
DEBUG 2023-08-09 03:18:55,029 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\urllib\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,029 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevconsole_code.py first seen with mtime 1691124227.914731
DEBUG 2023-08-09 03:18:55,030 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admindocs\views.py first seen with mtime 1689162638.9084282
DEBUG 2023-08-09 03:18:55,030 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_plugin_utils.py first seen with mtime 1691124228.0164335
DEBUG 2023-08-09 03:18:55,031 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\urls\converters.py first seen with mtime 1689162640.5763624
DEBUG 2023-08-09 03:18:55,032 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\http\cookies.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,033 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\schemas\generators.py first seen with mtime 1689162641.4967606
DEBUG 2023-08-09 03:18:55,033 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\base_subprocess.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,034 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\postgresql\__init__.py first seen with mtime 1689162640.389352
DEBUG 2023-08-09 03:18:55,035 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\logging\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,036 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\cache\__init__.py first seen with mtime 1689162640.2297797
DEBUG 2023-08-09 03:18:55,036 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydev_ipython\inputhook.py first seen with mtime 1691124228.1002095
DEBUG 2023-08-09 03:18:55,037 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\response.py first seen with mtime 1689162641.490777
DEBUG 2023-08-09 03:18:55,038 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\base_events.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,038 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\_pydev_execfile.py first seen with mtime 1691124227.8678675
DEBUG 2023-08-09 03:18:55,039 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_comm.py first seen with mtime 1691124227.9303524
DEBUG 2023-08-09 03:18:55,040 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_net_command_factory_xml.py first seen with mtime 1691124228.0134423
DEBUG 2023-08-09 03:18:55,041 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydevd_plugins\extensions\types\pydevd_plugin_numpy_types.py first seen with mtime 1691124228.3345792
DEBUG 2023-08-09 03:18:55,041 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\middleware\security.py first seen with mtime 1689162640.531971
DEBUG 2023-08-09 03:18:55,042 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\files\storage\mixins.py first seen with mtime 1689162640.298594
DEBUG 2023-08-09 03:18:55,042 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\packaging\version.py first seen with mtime 1689162641.1538188
DEBUG 2023-08-09 03:18:55,043 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\http\__init__.py first seen with mtime 1689162640.5190055
DEBUG 2023-08-09 03:18:55,043 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\text.py first seen with mtime 1689162640.6132631
DEBUG 2023-08-09 03:18:55,044 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\pathlib.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,045 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\staticfiles\checks.py first seen with mtime 1689162640.2128234
DEBUG 2023-08-09 03:18:55,046 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\encodings\ascii.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,046 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\decorators.py first seen with mtime 1689162638.920396
DEBUG 2023-08-09 03:18:55,047 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\xml\dom\xmlbuilder.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,048 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\json\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,049 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\mail\message.py first seen with mtime 1689162640.3135538
DEBUG 2023-08-09 03:18:55,050 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\debug.py first seen with mtime 1689162640.625232
DEBUG 2023-08-09 03:18:55,051 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\pydev_imports.py first seen with mtime 1691124227.883489
DEBUG 2023-08-09 03:18:55,051 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\query_utils.py first seen with mtime 1689162640.4621568
DEBUG 2023-08-09 03:18:55,052 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\_encoded_words.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,053 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\contenttypes\__init__.py first seen with mtime 1689162639.0420716
DEBUG 2023-08-09 03:18:55,053 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\dispatch\__init__.py first seen with mtime 1689162640.4731276
DEBUG 2023-08-09 03:18:55,054 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\files\__init__.py first seen with mtime 1689162640.2856288
DEBUG 2023-08-09 03:18:55,054 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\textwrap.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,055 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_exec2.py first seen with mtime 1691124227.9954913
DEBUG 2023-08-09 03:18:55,056 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\files\uploadedfile.py first seen with mtime 1689162640.298594
DEBUG 2023-08-09 03:18:55,057 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\asgiref\current_thread_executor.py first seen with mtime 1689162638.2017317
DEBUG 2023-08-09 03:18:55,057 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\apps.py first seen with mtime 1689162638.9184015
DEBUG 2023-08-09 03:18:55,058 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydevd_plugins\django_debug.py first seen with mtime 1691124228.3295925
DEBUG 2023-08-09 03:18:55,059 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\sqlite3\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,059 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\urllib\response.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,060 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\exceptions.py first seen with mtime 1689162641.432164
DEBUG 2023-08-09 03:18:55,061 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\permissions.py first seen with mtime 1689162641.4887824
DEBUG 2023-08-09 03:18:55,062 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\socketserver.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,063 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\contenttypes\models.py first seen with mtime 1689162639.1447966
DEBUG 2023-08-09 03:18:55,063 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\base\schema.py first seen with mtime 1689162640.3664124
DEBUG 2023-08-09 03:18:55,064 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\backends.py first seen with mtime 1689162638.9184015
DEBUG 2023-08-09 03:18:55,065 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\base64mime.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,065 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_defaults.py first seen with mtime 1691124227.9924972
DEBUG 2023-08-09 03:18:55,066 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\keywords.py first seen with mtime 1689162641.7964742
DEBUG 2023-08-09 03:18:55,067 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_process_net_command_json.py first seen with mtime 1691124228.017431
DEBUG 2023-08-09 03:18:55,067 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_constants.py first seen with mtime 1691124227.9303524
DEBUG 2023-08-09 03:18:55,068 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\contenttypes\fields.py first seen with mtime 1689162639.046061
DEBUG 2023-08-09 03:18:55,069 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_runfiles\__init__.py first seen with mtime 1691124227.883489
DEBUG 2023-08-09 03:18:55,069 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\utils.py first seen with mtime 1689162640.4063058
DEBUG 2023-08-09 03:18:55,070 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\xmlrpc\client.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,071 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\http\response.py first seen with mtime 1689162640.5239923
DEBUG 2023-08-09 03:18:55,071 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\sqlite3\features.py first seen with mtime 1689162640.4043114
DEBUG 2023-08-09 03:18:55,072 autoreload File C:\Users\Alice\Desktop\djangogram\djangogram\__init__.py first seen with mtime 1688886625.6355329
DEBUG 2023-08-09 03:18:55,073 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\security\csrf.py first seen with mtime 1689162640.2796445
DEBUG 2023-08-09 03:18:55,073 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\management\color.py first seen with mtime 1689162640.318541
DEBUG 2023-08-09 03:18:55,074 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\compatibility\__init__.py first seen with mtime 1689162640.2726638
DEBUG 2023-08-09 03:18:55,074 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\numbers.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,075 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\staticfiles\utils.py first seen with mtime 1689162640.2208028
DEBUG 2023-08-09 03:18:55,076 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\__init__.py first seen with mtime 1689162640.5773592
DEBUG 2023-08-09 03:18:55,076 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\charset.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,078 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\imp.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,078 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\utils.py first seen with mtime 1689162640.4731276
DEBUG 2023-08-09 03:18:55,079 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_trace_dispatch.py first seen with mtime 1691124228.037378
DEBUG 2023-08-09 03:18:55,080 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\conf\urls\static.py first seen with mtime 1689162638.4757698
DEBUG 2023-08-09 03:18:55,080 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\sites.py first seen with mtime 1689162638.7378843
DEBUG 2023-08-09 03:18:55,081 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\locks.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,082 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\files\base.py first seen with mtime 1689162640.2916143
DEBUG 2023-08-09 03:18:55,082 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\windows_utils.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,083 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\loaders\cached.py first seen with mtime 1689162640.5534208
DEBUG 2023-08-09 03:18:55,083 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\sql\__init__.py first seen with mtime 1689162640.463155
DEBUG 2023-08-09 03:18:55,084 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\packaging\_musllinux.py first seen with mtime 1689162641.1508262
DEBUG 2023-08-09 03:18:55,085 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\urllib\error.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,085 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\contextvars.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,086 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\multiprocessing\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,087 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\query.py first seen with mtime 1689162640.4611602
DEBUG 2023-08-09 03:18:55,088 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\re\_casefix.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,088 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\smartif.py first seen with mtime 1689162640.555418
DEBUG 2023-08-09 03:18:55,089 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\translation\__init__.py first seen with mtime 1689162640.615259
DEBUG 2023-08-09 03:18:55,090 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\wsgiref\headers.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,090 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\weakref.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,091 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\decorators\csrf.py first seen with mtime 1689162640.6302183
DEBUG 2023-08-09 03:18:55,091 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\xml\dom\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,092 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\forms\forms.py first seen with mtime 1689162640.4831007
DEBUG 2023-08-09 03:18:55,092 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_api.py first seen with mtime 1691124227.914731
DEBUG 2023-08-09 03:18:55,093 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\traceback.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,093 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\json\encoder.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,094 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\engine\filter_stack.py first seen with mtime 1689162641.7884953
DEBUG 2023-08-09 03:18:55,095 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\sqlite3\client.py first seen with mtime 1689162640.4033136
DEBUG 2023-08-09 03:18:55,095 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_frame_eval\__init__.py first seen with mtime 1691124228.0433621
DEBUG 2023-08-09 03:18:55,096 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\cache\backends\__init__.py first seen with mtime 1689162640.2307754
DEBUG 2023-08-09 03:18:55,097 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\_debug_adapter\__init__.py first seen with mtime 1691124227.8991103
DEBUG 2023-08-09 03:18:55,097 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydevd_plugins\pydevd_line_validation.py first seen with mtime 1691124228.3395667
DEBUG 2023-08-09 03:18:55,098 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_json_debug_options.py first seen with mtime 1691124228.0114474
DEBUG 2023-08-09 03:18:55,099 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\postgres\__init__.py first seen with mtime 1689162639.7218943
DEBUG 2023-08-09 03:18:55,099 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\difflib.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,100 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\copy.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,100 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\_policybase.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,101 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\typing.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,102 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,103 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\errors.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,103 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\packaging\specifiers.py first seen with mtime 1689162641.151824
DEBUG 2023-08-09 03:18:55,104 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\sslproto.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,105 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\DLLs\_asyncio.pyd first seen with mtime 1686085318.0
DEBUG 2023-08-09 03:18:55,106 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\base\__init__.py first seen with mtime 1689162640.358434
DEBUG 2023-08-09 03:18:55,107 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\staticfiles\handlers.py first seen with mtime 1689162640.2138224
DEBUG 2023-08-09 03:18:55,107 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\subprocess.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,109 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\urls.py first seen with mtime 1689162640.2816389
DEBUG 2023-08-09 03:18:55,109 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\utils\breadcrumbs.py first seen with mtime 1689162641.5775445
DEBUG 2023-08-09 03:18:55,110 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\forms\boundfield.py first seen with mtime 1689162640.482103
DEBUG 2023-08-09 03:18:55,110 autoreload File C:\Users\Alice\Desktop\djangogram\user\admin.py first seen with mtime 1690158869.4479544
DEBUG 2023-08-09 03:18:55,111 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\management\commands\runserver.py first seen with mtime 1689162640.3374896
DEBUG 2023-08-09 03:18:55,111 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\encoders.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,112 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\topological_sort.py first seen with mtime 1689162640.6142607
DEBUG 2023-08-09 03:18:55,112 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\registry.py first seen with mtime 1689162640.2766528
DEBUG 2023-08-09 03:18:55,113 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\http\cookie.py first seen with mtime 1689162640.5219965
DEBUG 2023-08-09 03:18:55,113 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_additional_thread_info_regular.py first seen with mtime 1691124227.914731
DEBUG 2023-08-09 03:18:55,114 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\_debug_adapter\pydevd_schema_log.py first seen with mtime 1691124227.8991103
DEBUG 2023-08-09 03:18:55,115 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\uuid.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,116 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydevd_plugins\extensions\types\pydevd_plugins_django_form_str.py first seen with mtime 1691124228.337571
DEBUG 2023-08-09 03:18:55,118 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\DLLs\_ctypes.pyd first seen with mtime 1686085296.0
DEBUG 2023-08-09 03:18:55,126 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\DLLs\_decimal.pyd first seen with mtime 1686085294.0
DEBUG 2023-08-09 03:18:55,139 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\engine\__init__.py first seen with mtime 1689162641.7865016
DEBUG 2023-08-09 03:18:55,160 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\cache\backends\base.py first seen with mtime 1689162640.2367601
DEBUG 2023-08-09 03:18:55,161 autoreload File C:\Users\Alice\Desktop\djangogram\content\models.py first seen with mtime 1690962578.0965352
DEBUG 2023-08-09 03:18:55,162 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\threads.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,163 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\encodings\cp949.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,165 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\csrf.py first seen with mtime 1689162640.6242342
DEBUG 2023-08-09 03:18:55,165 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\DLLs\_ssl.pyd first seen with mtime 1686085294.0
DEBUG 2023-08-09 03:18:55,166 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\packaging\_structures.py first seen with mtime 1689162641.1508262
DEBUG 2023-08-09 03:18:55,167 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\messages\storage\__init__.py first seen with mtime 1689162639.716909
DEBUG 2023-08-09 03:18:55,172 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\conf\urls\__init__.py first seen with mtime 1689162638.474773
DEBUG 2023-08-09 03:18:55,173 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\dateformat.py first seen with mtime 1689162640.601295
DEBUG 2023-08-09 03:18:55,174 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\importlib\util.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,176 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\mimetypes.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,177 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\security\sessions.py first seen with mtime 1689162640.2806416
DEBUG 2023-08-09 03:18:55,178 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\sqlite3\_functions.py first seen with mtime 1689162640.4033136
DEBUG 2023-08-09 03:18:55,178 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\operator.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,180 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\ctypes\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,181 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\serializers\python.py first seen with mtime 1689162640.3484602
DEBUG 2023-08-09 03:18:55,181 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\plistlib.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,182 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\sql\subqueries.py first seen with mtime 1689162640.4711335
DEBUG 2023-08-09 03:18:55,183 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\codeop.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,184 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\xml\parsers\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,185 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\nturl2path.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,185 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\_compression.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,186 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_frame_eval\vendored\bytecode\__init__.py first seen with mtime 1691124228.0772715
DEBUG 2023-08-09 03:18:55,187 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_frame_eval\vendored\bytecode\cfg.py first seen with mtime 1691124228.0792663
DEBUG 2023-08-09 03:18:55,187 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\parser.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,189 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\pickle.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,189 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\protocols.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,190 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\DLLs\_lzma.pyd first seen with mtime 1686085294.0
DEBUG 2023-08-09 03:18:55,191 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\_compat_pickle.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,191 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\html.py first seen with mtime 1689162640.606282
DEBUG 2023-08-09 03:18:55,192 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\base64.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,192 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\formats.py first seen with mtime 1689162640.6052842
DEBUG 2023-08-09 03:18:55,193 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\migrations\operations\models.py first seen with mtime 1689162640.421266
DEBUG 2023-08-09 03:18:55,193 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\forms\utils.py first seen with mtime 1689162640.518008
DEBUG 2023-08-09 03:18:55,194 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\re\_parser.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,194 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\inspect.py first seen with mtime 1689162640.608277
DEBUG 2023-08-09 03:18:55,195 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\inspect.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,195 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\pyparsing\util.py first seen with mtime 1689162641.1687787
DEBUG 2023-08-09 03:18:55,196 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\bisect.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,197 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\sqlite3\creation.py first seen with mtime 1689162640.4043114
DEBUG 2023-08-09 03:18:55,197 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\migrations\operations\fields.py first seen with mtime 1689162640.421266
DEBUG 2023-08-09 03:18:55,198 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pytz\tzfile.py first seen with mtime 1689162641.1787512
DEBUG 2023-08-09 03:18:55,199 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\filters.py first seen with mtime 1689162638.4887347
DEBUG 2023-08-09 03:18:55,200 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\messages\storage\base.py first seen with mtime 1689162639.7199001
DEBUG 2023-08-09 03:18:55,200 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\ctypes\wintypes.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,201 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\timeouts.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,203 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\mime\nonmultipart.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,204 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\management\commands\__init__.py first seen with mtime 1689162640.3195384
DEBUG 2023-08-09 03:18:55,205 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\sql\where.py first seen with mtime 1689162640.4711335
DEBUG 2023-08-09 03:18:55,206 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\decorators\cache.py first seen with mtime 1689162640.6292214
DEBUG 2023-08-09 03:18:55,206 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\metadata.py first seen with mtime 1689162641.486788
DEBUG 2023-08-09 03:18:55,207 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\handlers\exception.py first seen with mtime 1689162640.3035812
DEBUG 2023-08-09 03:18:55,208 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\utils\json.py first seen with mtime 1689162641.5795393
DEBUG 2023-08-09 03:18:55,208 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\cache\backends\locmem.py first seen with mtime 1689162640.2387547
DEBUG 2023-08-09 03:18:55,209 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\logging\config.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,209 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\admin.py first seen with mtime 1689162638.9184015
DEBUG 2023-08-09 03:18:55,210 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\pydev_override.py first seen with mtime 1691124227.883489
DEBUG 2023-08-09 03:18:55,210 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,211 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\exceptions.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,211 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\__init__.py first seen with mtime 1689162641.1229005
DEBUG 2023-08-09 03:18:55,212 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\forms\models.py first seen with mtime 1689162640.5010529
DEBUG 2023-08-09 03:18:55,213 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\__init__.py first seen with mtime 1691124227.8647647
DEBUG 2023-08-09 03:18:55,217 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\transports.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,218 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\forms\widgets.py first seen with mtime 1689162640.5190055
DEBUG 2023-08-09 03:18:55,220 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\postgres\lookups.py first seen with mtime 1689162639.825618
DEBUG 2023-08-09 03:18:55,220 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\encoding.py first seen with mtime 1689162640.6042871
DEBUG 2023-08-09 03:18:55,221 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\contenttypes\views.py first seen with mtime 1689162639.1447966
DEBUG 2023-08-09 03:18:55,221 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\unittest\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,222 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\fsnotify\__init__.py first seen with mtime 1691124227.8678675
DEBUG 2023-08-09 03:18:55,223 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\statistics.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,224 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\relations.py first seen with mtime 1689162641.4887824
DEBUG 2023-08-09 03:18:55,225 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydevconsole.py first seen with mtime 1691124228.106012
DEBUG 2023-08-09 03:18:55,225 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\xmlrpc\server.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,226 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\__init__.py first seen with mtime 1689162640.2247922
DEBUG 2023-08-09 03:18:55,226 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\_sitebuiltins.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,227 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_traceproperty.py first seen with mtime 1691124228.0383756
DEBUG 2023-08-09 03:18:55,227 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\messages.py first seen with mtime 1689162640.2756565
DEBUG 2023-08-09 03:18:55,228 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\base\introspection.py first seen with mtime 1689162640.3654156
DEBUG 2023-08-09 03:18:55,228 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\base_futures.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,229 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\templates.py first seen with mtime 1689162640.2806416
DEBUG 2023-08-09 03:18:55,229 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\engine\statement_splitter.py first seen with mtime 1689162641.7894933
DEBUG 2023-08-09 03:18:55,230 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\engine\grouping.py first seen with mtime 1689162641.7884953
DEBUG 2023-08-09 03:18:55,230 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\log.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,231 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\translation\reloader.py first seen with mtime 1689162640.6172523
DEBUG 2023-08-09 03:18:55,231 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\files\locks.py first seen with mtime 1689162640.2926102
DEBUG 2023-08-09 03:18:55,232 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\copyreg.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,232 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\fields\related.py first seen with mtime 1689162640.4501889
DEBUG 2023-08-09 03:18:55,233 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\defaultfilters.py first seen with mtime 1689162640.5469322
DEBUG 2023-08-09 03:18:55,233 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_frame_eval\vendored\bytecode\concrete.py first seen with mtime 1691124228.0802631
DEBUG 2023-08-09 03:18:55,234 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\functools.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,234 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\unittest\util.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,235 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\cache\utils.py first seen with mtime 1689162640.2397513
DEBUG 2023-08-09 03:18:55,235 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\pyparsing\core.py first seen with mtime 1689162641.1637914
DEBUG 2023-08-09 03:18:55,236 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\__init__.py first seen with mtime 1691124227.8991103
DEBUG 2023-08-09 03:18:55,236 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\__init__.py first seen with mtime 1689162638.4777641
DEBUG 2023-08-09 03:18:55,237 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\header.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,237 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\sessions\apps.py first seen with mtime 1689162639.9512813
DEBUG 2023-08-09 03:18:55,238 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\migrations\migration.py first seen with mtime 1689162640.4172764
DEBUG 2023-08-09 03:18:55,238 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\functions\mixins.py first seen with mtime 1689162640.4581673
DEBUG 2023-08-09 03:18:55,239 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\urls\resolvers.py first seen with mtime 1689162640.5763624
DEBUG 2023-08-09 03:18:55,240 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\fields\files.py first seen with mtime 1689162640.4481947
DEBUG 2023-08-09 03:18:55,241 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\utils\__init__.py first seen with mtime 1689162641.5705645
DEBUG 2023-08-09 03:18:55,241 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydevd_plugins\__init__.py first seen with mtime 1691124228.3285956
DEBUG 2023-08-09 03:18:55,242 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\windows_events.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,242 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\code.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,243 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\functional.py first seen with mtime 1689162640.606282
DEBUG 2023-08-09 03:18:55,243 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\staticfiles\views.py first seen with mtime 1689162640.2208028
DEBUG 2023-08-09 03:18:55,244 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\generic\edit.py first seen with mtime 1689162640.6381977
DEBUG 2023-08-09 03:18:55,244 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\pyparsing\exceptions.py first seen with mtime 1689162641.1657865
DEBUG 2023-08-09 03:18:55,245 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\fields\related_descriptors.py first seen with mtime 1689162640.451187
DEBUG 2023-08-09 03:18:55,245 autoreload File C:\Users\Alice\Desktop\djangogram\content\admin.py first seen with mtime 1689588102.7867737
DEBUG 2023-08-09 03:18:55,246 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\html\entities.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,246 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\importlib\resources\abc.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,247 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\apps\__init__.py first seen with mtime 1689162638.2077172
DEBUG 2023-08-09 03:18:55,247 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\validators.py first seen with mtime 1689162641.5815344
DEBUG 2023-08-09 03:18:55,248 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\hashable.py first seen with mtime 1689162640.606282
DEBUG 2023-08-09 03:18:55,248 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\unittest\main.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,249 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\fields\related_lookups.py first seen with mtime 1689162640.4521837
DEBUG 2023-08-09 03:18:55,250 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\calendar.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,250 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\test\__init__.py first seen with mtime 1689162640.561402
DEBUG 2023-08-09 03:18:55,251 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\files\storage\base.py first seen with mtime 1689162640.2965994
DEBUG 2023-08-09 03:18:55,252 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\constraints.py first seen with mtime 1689162640.4392185
DEBUG 2023-08-09 03:18:55,252 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\mime\multipart.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,253 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\wsgiref\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,253 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\files\utils.py first seen with mtime 1689162640.299591
DEBUG 2023-08-09 03:18:55,255 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\messages\__init__.py first seen with mtime 1689162639.7109234
DEBUG 2023-08-09 03:18:55,256 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\files\storage\handler.py first seen with mtime 1689162640.2975962
DEBUG 2023-08-09 03:18:55,256 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\__init__.py first seen with mtime 1691124227.8678675
DEBUG 2023-08-09 03:18:55,257 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\sites\shortcuts.py first seen with mtime 1689162640.2068396
DEBUG 2023-08-09 03:18:55,257 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\pyparsing\actions.py first seen with mtime 1689162641.161797
DEBUG 2023-08-09 03:18:55,258 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\templatetags\static.py first seen with mtime 1689162640.5604048
DEBUG 2023-08-09 03:18:55,258 autoreload File C:\Users\Alice\Desktop\djangogram\user\__init__.py first seen with mtime 1690158869.4594593
DEBUG 2023-08-09 03:18:55,259 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\linecache.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,259 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\importlib\machinery.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,260 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\sql\query.py first seen with mtime 1689162640.4711335
DEBUG 2023-08-09 03:18:55,261 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\ast.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,261 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\pyparsing\helpers.py first seen with mtime 1689162641.1667843
DEBUG 2023-08-09 03:18:55,262 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_resolver.py first seen with mtime 1691124228.0214205
DEBUG 2023-08-09 03:18:55,262 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\unittest\signals.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,263 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\xml\dom\NodeFilter.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,263 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\views\autocomplete.py first seen with mtime 1689162638.8076992
DEBUG 2023-08-09 03:18:55,264 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\bz2.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,264 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\staticfiles\apps.py first seen with mtime 1689162640.2128234
DEBUG 2023-08-09 03:18:55,265 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\signals.py first seen with mtime 1689162640.3514526
DEBUG 2023-08-09 03:18:55,266 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\migrations\__init__.py first seen with mtime 1689162640.4063058
DEBUG 2023-08-09 03:18:55,267 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\cli.py first seen with mtime 1689162641.7855036
DEBUG 2023-08-09 03:18:55,269 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\wsgiref\util.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,272 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\enums.py first seen with mtime 1689162640.4392185
DEBUG 2023-08-09 03:18:55,275 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\multiprocessing\process.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,276 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\DLLs\_overlapped.pyd first seen with mtime 1686085294.0
DEBUG 2023-08-09 03:18:55,277 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_xml.py first seen with mtime 1691124228.0423648
DEBUG 2023-08-09 03:18:55,277 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\http\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,278 autoreload File C:\Users\Alice\Desktop\djangogram\content\urls.py first seen with mtime 1691512216.0345113
DEBUG 2023-08-09 03:18:55,282 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\collections\abc.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,284 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\templatetags\__init__.py first seen with mtime 1689162638.8007162
DEBUG 2023-08-09 03:18:55,285 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\middleware\csrf.py first seen with mtime 1689162640.5299757
DEBUG 2023-08-09 03:18:55,287 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\static.py first seen with mtime 1689162640.6391945
DEBUG 2023-08-09 03:18:55,288 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\tokens.py first seen with mtime 1689162639.040076
DEBUG 2023-08-09 03:18:55,289 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\logging\handlers.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,290 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\dates.py first seen with mtime 1689162640.6022928
DEBUG 2023-08-09 03:18:55,290 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\DLLs\_hashlib.pyd first seen with mtime 1686085294.0
DEBUG 2023-08-09 03:18:55,291 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\files\storage\memory.py first seen with mtime 1689162640.2975962
DEBUG 2023-08-09 03:18:55,292 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\templatetags\i18n.py first seen with mtime 1689162640.5604048
DEBUG 2023-08-09 03:18:55,292 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\duration.py first seen with mtime 1689162640.6042871
DEBUG 2023-08-09 03:18:55,296 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\sysconfig.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,297 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_vm_type.py first seen with mtime 1691124228.0413675
DEBUG 2023-08-09 03:18:55,298 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\__init__.py first seen with mtime 1689162638.2057214
DEBUG 2023-08-09 03:18:55,298 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\servers\__init__.py first seen with mtime 1689162640.3494577
DEBUG 2023-08-09 03:18:55,299 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\encodings\aliases.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,299 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\more_itertools\more.py first seen with mtime 1689162641.1438448
DEBUG 2023-08-09 03:18:55,300 autoreload File C:\Users\Alice\Desktop\djangogram\content\views.py first seen with mtime 1691509269.499133
DEBUG 2023-08-09 03:18:55,301 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_io.py first seen with mtime 1691124228.0104496
DEBUG 2023-08-09 03:18:55,301 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\options.py first seen with mtime 1689162638.7378843
DEBUG 2023-08-09 03:18:55,302 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\handlers\__init__.py first seen with mtime 1689162640.299591
DEBUG 2023-08-09 03:18:55,303 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\base\operations.py first seen with mtime 1689162640.3664124
DEBUG 2023-08-09 03:18:55,303 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\deconstruct.py first seen with mtime 1689162640.6032898
DEBUG 2023-08-09 03:18:55,303 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\safestring.py first seen with mtime 1689162640.6122663
DEBUG 2023-08-09 03:18:55,304 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_frame_eval\vendored\bytecode\instr.py first seen with mtime 1691124228.0822575
DEBUG 2023-08-09 03:18:55,304 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydevd_file_utils.py first seen with mtime 1691124228.3275983
DEBUG 2023-08-09 03:18:55,305 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\schemas\inspectors.py first seen with mtime 1689162641.4977577
DEBUG 2023-08-09 03:18:55,305 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\conf\__init__.py first seen with mtime 1689162638.2107084
DEBUG 2023-08-09 03:18:55,306 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\__future__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,307 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\enum.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,307 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\messages\constants.py first seen with mtime 1689162639.7149136
DEBUG 2023-08-09 03:18:55,308 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\aggregates.py first seen with mtime 1689162640.436227
DEBUG 2023-08-09 03:18:55,309 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\decorators\__init__.py first seen with mtime 1689162640.6262286
DEBUG 2023-08-09 03:18:55,310 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\crypto.py first seen with mtime 1689162640.6002982
DEBUG 2023-08-09 03:18:55,310 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\i18n.py first seen with mtime 1689162640.6391945
DEBUG 2023-08-09 03:18:55,311 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\selectors.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,311 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\gettext.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,312 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\tasks.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,313 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\staticfiles\finders.py first seen with mtime 1689162640.2138224
DEBUG 2023-08-09 03:18:55,313 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\urls\conf.py first seen with mtime 1689162640.575364
DEBUG 2023-08-09 03:18:55,314 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\exceptions.py first seen with mtime 1689162638.4887347
DEBUG 2023-08-09 03:18:55,315 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\importlib\_abc.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,315 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\getpass.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,316 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\_debug_adapter\pydevd_base_schema.py first seen with mtime 1691124227.8991103
DEBUG 2023-08-09 03:18:55,316 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\functions\window.py first seen with mtime 1689162640.4581673
DEBUG 2023-08-09 03:18:55,317 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\html\parser.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,317 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\pydev_umd.py first seen with mtime 1691124227.883489
DEBUG 2023-08-09 03:18:55,318 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\templatetags\base.py first seen with mtime 1689162638.8047056
DEBUG 2023-08-09 03:18:55,319 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\test\signals.py first seen with mtime 1689162640.5693808
DEBUG 2023-08-09 03:18:55,319 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admindocs\__init__.py first seen with mtime 1689162638.809692
DEBUG 2023-08-09 03:18:55,320 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\compat.py first seen with mtime 1689162641.4311664
DEBUG 2023-08-09 03:18:55,321 autoreload File C:\Users\Alice\Desktop\djangogram\content\apps.py first seen with mtime 1689588103.6482668
DEBUG 2023-08-09 03:18:55,322 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\DLLs\_bz2.pyd first seen with mtime 1686085296.0
DEBUG 2023-08-09 03:18:55,323 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\tokens.py first seen with mtime 1689162641.7974725
DEBUG 2023-08-09 03:18:55,323 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydevd_tracing.py first seen with mtime 1691124228.3415604
DEBUG 2023-08-09 03:18:55,324 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\postgres\utils.py first seen with mtime 1689162639.8276117
DEBUG 2023-08-09 03:18:55,324 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\itercompat.py first seen with mtime 1689162640.6092741
DEBUG 2023-08-09 03:18:55,325 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\packaging\tags.py first seen with mtime 1689162641.1528208
DEBUG 2023-08-09 03:18:55,325 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\pprint.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,326 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\handlers\base.py first seen with mtime 1689162640.3035812
DEBUG 2023-08-09 03:18:55,327 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\version.py first seen with mtime 1689162640.619247
DEBUG 2023-08-09 03:18:55,327 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\pyparsing\unicode.py first seen with mtime 1689162641.1677809
DEBUG 2023-08-09 03:18:55,328 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\__init__.py first seen with mtime 1689162638.9094253
DEBUG 2023-08-09 03:18:55,328 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\tempfile.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,329 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\quopri.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,329 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\actions.py first seen with mtime 1689162638.4867404
DEBUG 2023-08-09 03:18:55,330 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\utils\html.py first seen with mtime 1689162641.5785427
DEBUG 2023-08-09 03:18:55,330 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\__init__.py first seen with mtime 1689162640.5329678
DEBUG 2023-08-09 03:18:55,331 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\sqlite3\schema.py first seen with mtime 1689162640.4053085
DEBUG 2023-08-09 03:18:55,331 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\utils\representation.py first seen with mtime 1689162641.5805366
DEBUG 2023-08-09 03:18:55,331 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_concurrency_analyser\pydevd_concurrency_logger.py first seen with mtime 1691124227.9303524
DEBUG 2023-08-09 03:18:55,332 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\helpers.py first seen with mtime 1689162638.4897325
DEBUG 2023-08-09 03:18:55,333 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\fnmatch.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,333 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\mail\__init__.py first seen with mtime 1689162640.3055756
DEBUG 2023-08-09 03:18:55,334 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\gzip.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,335 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\loaders\__init__.py first seen with mtime 1689162640.549925
DEBUG 2023-08-09 03:18:55,336 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\__init__.py first seen with mtime 1689162641.124895
DEBUG 2023-08-09 03:18:55,336 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\_pydev_completer.py first seen with mtime 1691124227.8678675
DEBUG 2023-08-09 03:18:55,337 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\files.py first seen with mtime 1689162640.2756565
DEBUG 2023-08-09 03:18:55,337 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_thread_lifecycle.py first seen with mtime 1691124228.0333889
DEBUG 2023-08-09 03:18:55,338 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pytz\lazy.py first seen with mtime 1689162641.1787512
DEBUG 2023-08-09 03:18:55,339 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\database.py first seen with mtime 1689162640.2746584
DEBUG 2023-08-09 03:18:55,340 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\http\multipartparser.py first seen with mtime 1689162640.5229945
DEBUG 2023-08-09 03:18:55,340 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\postgres\forms\array.py first seen with mtime 1689162639.7398465
DEBUG 2023-08-09 03:18:55,341 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\compatibility\django_4_0.py first seen with mtime 1689162640.2746584
DEBUG 2023-08-09 03:18:55,341 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\test\html.py first seen with mtime 1689162640.567386
DEBUG 2023-08-09 03:18:55,342 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\stat.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,342 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\selector_events.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,343 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\functions\datetime.py first seen with mtime 1689162640.4571702
DEBUG 2023-08-09 03:18:55,343 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\zoneinfo\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,344 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\concurrent\futures\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,344 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\migrations\exceptions.py first seen with mtime 1689162640.4152825
DEBUG 2023-08-09 03:18:55,345 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\encodings\idna.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,345 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\encodings\utf_8.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,346 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\lzma.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,346 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\utils\mediatypes.py first seen with mtime 1689162641.5795393
DEBUG 2023-08-09 03:18:55,347 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\unittest\suite.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,348 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\views.py first seen with mtime 1689162641.5825315
DEBUG 2023-08-09 03:18:55,349 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\argparse.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,350 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\base_tasks.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,350 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\loader_tags.py first seen with mtime 1689162640.549925
DEBUG 2023-08-09 03:18:55,351 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\schemas\coreapi.py first seen with mtime 1689162641.4967606
DEBUG 2023-08-09 03:18:55,351 autoreload File C:\Users\Alice\Desktop\djangogram\manage.py first seen with mtime 1688886626.0868883
DEBUG 2023-08-09 03:18:55,352 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\policy.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,353 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\filters\reindent.py first seen with mtime 1689162641.7944798
DEBUG 2023-08-09 03:18:55,353 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\ntpath.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,354 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_vars.py first seen with mtime 1691124228.0403705
DEBUG 2023-08-09 03:18:55,355 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\functions\math.py first seen with mtime 1689162640.4571702
DEBUG 2023-08-09 03:18:55,355 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\fields\mixins.py first seen with mtime 1689162640.4491923
DEBUG 2023-08-09 03:18:55,356 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\contentmanager.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,356 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\utils\field_mapping.py first seen with mtime 1689162641.5785427
DEBUG 2023-08-09 03:18:55,357 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\templatetags\admin_urls.py first seen with mtime 1689162638.8037095
DEBUG 2023-08-09 03:18:55,357 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\unittest\loader.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,358 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\async_checks.py first seen with mtime 1689162640.2716668
DEBUG 2023-08-09 03:18:55,358 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\__init__.py first seen with mtime 1689162641.7795196
DEBUG 2023-08-09 03:18:55,359 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\coroutines.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,359 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\_pydev_saved_modules.py first seen with mtime 1691124227.8678675
DEBUG 2023-08-09 03:18:55,360 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\serializers.py first seen with mtime 1689162641.4987552
DEBUG 2023-08-09 03:18:55,361 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\jaraco\text\__init__.py first seen with mtime 1689162641.1388578
DEBUG 2023-08-09 03:18:55,362 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\base.py first seen with mtime 1689162640.5459354
DEBUG 2023-08-09 03:18:55,362 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\ssl.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,363 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\dateparse.py first seen with mtime 1689162640.6022928
DEBUG 2023-08-09 03:18:55,364 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_frame_utils.py first seen with mtime 1691124227.9984827
DEBUG 2023-08-09 03:18:55,364 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\__init__.py first seen with mtime 1689162640.4262526
DEBUG 2023-08-09 03:18:55,365 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pytz\tzinfo.py first seen with mtime 1689162641.1797495
DEBUG 2023-08-09 03:18:55,365 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\threading.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,366 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\loaders\base.py first seen with mtime 1689162640.5534208
DEBUG 2023-08-09 03:18:55,366 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\response.py first seen with mtime 1689162640.5544212
DEBUG 2023-08-09 03:18:55,367 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\shortcuts.py first seen with mtime 1689162640.531971
DEBUG 2023-08-09 03:18:55,367 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\contenttypes\admin.py first seen with mtime 1689162639.045064
DEBUG 2023-08-09 03:18:55,368 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\queues.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,369 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\urls\__init__.py first seen with mtime 1689162640.5713754
DEBUG 2023-08-09 03:18:55,370 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\DLLs\_zoneinfo.pyd first seen with mtime 1686085296.0
DEBUG 2023-08-09 03:18:55,371 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\filters\aligned_indent.py first seen with mtime 1689162641.7934828
DEBUG 2023-08-09 03:18:55,372 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\runners.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,372 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\base\base.py first seen with mtime 1689162640.3644178
DEBUG 2023-08-09 03:18:55,373 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\library.py first seen with mtime 1689162640.5489273
DEBUG 2023-08-09 03:18:55,375 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\views\__init__.py first seen with mtime 1689162638.8057034
DEBUG 2023-08-09 03:18:55,375 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\socket.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,377 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\functions\text.py first seen with mtime 1689162640.4581673
DEBUG 2023-08-09 03:18:55,377 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\templatetags\log.py first seen with mtime 1689162638.8047056
DEBUG 2023-08-09 03:18:55,377 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\tree.py first seen with mtime 1689162640.619247
DEBUG 2023-08-09 03:18:55,379 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_dont_trace.py first seen with mtime 1691124227.9944928
DEBUG 2023-08-09 03:18:55,379 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\taskgroups.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,380 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\utils\formatting.py first seen with mtime 1689162641.5785427
DEBUG 2023-08-09 03:18:55,380 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\postgres\validators.py first seen with mtime 1689162639.8286095
DEBUG 2023-08-09 03:18:55,381 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\sites\__init__.py first seen with mtime 1689162640.0829291
DEBUG 2023-08-09 03:18:55,381 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\signals.py first seen with mtime 1689162639.0390787
DEBUG 2023-08-09 03:18:55,382 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\management\__init__.py first seen with mtime 1689162640.3145528
DEBUG 2023-08-09 03:18:55,382 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\translation\trans_real.py first seen with mtime 1689162640.619247
DEBUG 2023-08-09 03:18:55,383 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\utils\urls.py first seen with mtime 1689162641.5815344
DEBUG 2023-08-09 03:18:55,383 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\hashers.py first seen with mtime 1689162638.9223917
DEBUG 2023-08-09 03:18:55,384 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\mime\text.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,385 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\log.py first seen with mtime 1689162640.6102715
DEBUG 2023-08-09 03:18:55,385 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\checks.py first seen with mtime 1689162638.4877386
DEBUG 2023-08-09 03:18:55,386 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\_os.py first seen with mtime 1689162640.5983038
DEBUG 2023-08-09 03:18:55,387 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\futures.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,388 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\feedparser.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,389 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\sqlite3\__init__.py first seen with mtime 1689162640.3983276
DEBUG 2023-08-09 03:18:55,389 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_frame.py first seen with mtime 1691124228.0024712
DEBUG 2023-08-09 03:18:55,390 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\DLLs\_sqlite3.pyd first seen with mtime 1686085294.0
DEBUG 2023-08-09 03:18:55,391 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\backends\django.py first seen with mtime 1689162640.5439408
DEBUG 2023-08-09 03:18:55,391 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\hashlib.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,392 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\importlib\resources\_adapters.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,392 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_extension_utils.py first seen with mtime 1691124227.9964867
DEBUG 2023-08-09 03:18:55,393 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\sql\datastructures.py first seen with mtime 1689162640.470137
DEBUG 2023-08-09 03:18:55,393 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\warnings.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,394 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\pydev_log.py first seen with mtime 1691124227.883489
DEBUG 2023-08-09 03:18:55,394 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\DLLs\select.pyd first seen with mtime 1686085294.0
DEBUG 2023-08-09 03:18:55,395 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\base.py first seen with mtime 1689162640.438222
DEBUG 2023-08-09 03:18:55,395 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\constants.py first seen with mtime 1689162640.438222
DEBUG 2023-08-09 03:18:55,396 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\messages\api.py first seen with mtime 1689162639.7149136
DEBUG 2023-08-09 03:18:55,397 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_trace_api.py first seen with mtime 1691124228.035383
DEBUG 2023-08-09 03:18:55,398 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\utils.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,399 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\sql.py first seen with mtime 1689162641.7974725
DEBUG 2023-08-09 03:18:55,399 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydevd_plugins\extensions\types\__init__.py first seen with mtime 1691124228.3325849
DEBUG 2023-08-09 03:18:55,400 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\_header_value_parser.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,401 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\negotiation.py first seen with mtime 1689162641.486788
DEBUG 2023-08-09 03:18:55,402 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\postgres\search.py first seen with mtime 1689162639.825618
DEBUG 2023-08-09 03:18:55,402 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\exceptions.py first seen with mtime 1689162640.5489273
DEBUG 2023-08-09 03:18:55,403 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\_debug_adapter\pydevd_schema.py first seen with mtime 1691124227.914731
DEBUG 2023-08-09 03:18:55,404 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydevd_plugins\extensions\types\pydevd_plugin_pandas_types.py first seen with mtime 1691124228.3355763
DEBUG 2023-08-09 03:18:55,405 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\urls\base.py first seen with mtime 1689162640.575364
DEBUG 2023-08-09 03:18:55,405 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\postgres\forms\hstore.py first seen with mtime 1689162639.740844
DEBUG 2023-08-09 03:18:55,406 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\packaging\_manylinux.py first seen with mtime 1689162641.1508262
DEBUG 2023-08-09 03:18:55,406 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\pyparsing\results.py first seen with mtime 1689162641.1667843
DEBUG 2023-08-09 03:18:55,407 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\packaging\requirements.py first seen with mtime 1689162641.151824
DEBUG 2023-08-09 03:18:55,407 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\unittest\result.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,408 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\format_helpers.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,408 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\base_user.py first seen with mtime 1689162638.9194
DEBUG 2023-08-09 03:18:55,409 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\pydoc.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,409 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\management\base.py first seen with mtime 1689162640.318541
DEBUG 2023-08-09 03:18:55,410 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\xml\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,410 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\xml\dom\minicompat.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,411 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\views\main.py first seen with mtime 1689162638.8086958
DEBUG 2023-08-09 03:18:55,412 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\filters\tokens.py first seen with mtime 1689162641.7954774
DEBUG 2023-08-09 03:18:55,412 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\_markupbase.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,413 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\apps\config.py first seen with mtime 1689162638.2097106
DEBUG 2023-08-09 03:18:55,414 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\files\storage\filesystem.py first seen with mtime 1689162640.2965994
DEBUG 2023-08-09 03:18:55,415 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\schemas\__init__.py first seen with mtime 1689162641.4927719
DEBUG 2023-08-09 03:18:55,416 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\authentication.py first seen with mtime 1689162641.418741
DEBUG 2023-08-09 03:18:55,417 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\functions\__init__.py first seen with mtime 1689162640.4531813
DEBUG 2023-08-09 03:18:55,417 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_frame_eval\pydevd_frame_eval_main.py first seen with mtime 1691124228.0463548
DEBUG 2023-08-09 03:18:55,418 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\forms\formsets.py first seen with mtime 1689162640.4840987
DEBUG 2023-08-09 03:18:55,419 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\force_pydevd.py first seen with mtime 1691124227.8678675
DEBUG 2023-08-09 03:18:55,419 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\test\client.py first seen with mtime 1689162640.567386
DEBUG 2023-08-09 03:18:55,419 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\caches.py first seen with mtime 1689162640.2726638
DEBUG 2023-08-09 03:18:55,420 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\management\sql.py first seen with mtime 1689162640.34148
DEBUG 2023-08-09 03:18:55,420 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\generic\__init__.py first seen with mtime 1689162640.6332102
DEBUG 2023-08-09 03:18:55,421 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_reload.py first seen with mtime 1691124228.020423
DEBUG 2023-08-09 03:18:55,421 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\options.py first seen with mtime 1689162640.4601629
DEBUG 2023-08-09 03:18:55,422 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\deprecation.py first seen with mtime 1689162640.6032898
DEBUG 2023-08-09 03:18:55,422 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\signals.py first seen with mtime 1689162640.4621568
DEBUG 2023-08-09 03:18:55,423 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\hmac.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,423 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\sqlite3\base.py first seen with mtime 1689162640.4033136
DEBUG 2023-08-09 03:18:55,424 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\signal.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,424 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_concurrency_analyser\__init__.py first seen with mtime 1691124227.9303524
DEBUG 2023-08-09 03:18:55,425 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\importlib\resources\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,426 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\termcolors.py first seen with mtime 1689162640.6132631
DEBUG 2023-08-09 03:18:55,427 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\staticfiles\management\commands\runserver.py first seen with mtime 1689162640.2188075
DEBUG 2023-08-09 03:18:55,428 autoreload File C:\Users\Alice\Desktop\djangogram\djangogram\urls.py first seen with mtime 1691508446.7855835
DEBUG 2023-08-09 03:18:55,429 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\mime\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,430 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\utils.py first seen with mtime 1689162638.8057034
DEBUG 2023-08-09 03:18:55,430 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\ddl_references.py first seen with mtime 1689162640.36741
DEBUG 2023-08-09 03:18:55,431 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\iterators.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,431 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\request.py first seen with mtime 1689162641.490777
DEBUG 2023-08-09 03:18:55,432 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\exceptions.py first seen with mtime 1689162641.7894933
DEBUG 2023-08-09 03:18:55,432 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\forms\renderers.py first seen with mtime 1689162640.5010529
DEBUG 2023-08-09 03:18:55,433 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\__init__.py first seen with mtime 1689162640.2666793
DEBUG 2023-08-09 03:18:55,433 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\templatetags\cache.py first seen with mtime 1689162640.5594072
DEBUG 2023-08-09 03:18:55,434 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\timezone.py first seen with mtime 1689162640.6142607
DEBUG 2023-08-09 03:18:55,434 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\contenttypes\apps.py first seen with mtime 1689162639.045064
DEBUG 2023-08-09 03:18:55,435 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\status.py first seen with mtime 1689162641.5276785
DEBUG 2023-08-09 03:18:55,435 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\decorators\debug.py first seen with mtime 1689162640.631215
DEBUG 2023-08-09 03:18:55,436 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\reprlib.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,436 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\test\testcases.py first seen with mtime 1689162640.5703788
DEBUG 2023-08-09 03:18:55,437 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\jaraco\functools.py first seen with mtime 1689162641.1378615
DEBUG 2023-08-09 03:18:55,437 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\struct.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,438 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\dataclasses.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,438 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\fields\proxy.py first seen with mtime 1689162640.4501889
DEBUG 2023-08-09 03:18:55,439 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\xml\dom\minidom.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,439 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\servers\basehttp.py first seen with mtime 1689162640.350455
DEBUG 2023-08-09 03:18:55,440 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\pydev_monkey.py first seen with mtime 1691124227.883489
DEBUG 2023-08-09 03:18:55,441 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\urls\exceptions.py first seen with mtime 1689162640.5763624
DEBUG 2023-08-09 03:18:55,442 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\fields\reverse_related.py first seen with mtime 1689162640.4521837
DEBUG 2023-08-09 03:18:55,442 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\forms.py first seen with mtime 1689162638.9213936
DEBUG 2023-08-09 03:18:55,443 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\serializers\json.py first seen with mtime 1689162640.347463
DEBUG 2023-08-09 03:18:55,444 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\importlib\resources\_legacy.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,444 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\expressions.py first seen with mtime 1689162640.4402163
DEBUG 2023-08-09 03:18:55,445 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_save_locals.py first seen with mtime 1691124228.0254102
DEBUG 2023-08-09 03:18:55,447 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\decorators.py first seen with mtime 1689162640.6032898
DEBUG 2023-08-09 03:18:55,448 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\quoprimime.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,449 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\DLLs\_queue.pyd first seen with mtime 1686085294.0
DEBUG 2023-08-09 03:18:55,449 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\generic\base.py first seen with mtime 1689162640.6362023
DEBUG 2023-08-09 03:18:55,450 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydev_ipython\matplotlibtools.py first seen with mtime 1691124228.106012
DEBUG 2023-08-09 03:18:55,451 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\test\utils.py first seen with mtime 1689162640.5713754
DEBUG 2023-08-09 03:18:55,451 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\models.py first seen with mtime 1689162638.7368872
DEBUG 2023-08-09 03:18:55,452 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\sessions\middleware.py first seen with mtime 1689162640.072956
DEBUG 2023-08-09 03:18:55,452 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_frame_eval\vendored\__init__.py first seen with mtime 1691124228.076274
DEBUG 2023-08-09 03:18:55,453 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\widgets.py first seen with mtime 1689162638.8086958
DEBUG 2023-08-09 03:18:55,453 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_frame_eval\vendored\bytecode\bytecode.py first seen with mtime 1691124228.0772715
DEBUG 2023-08-09 03:18:55,454 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\collections\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,455 autoreload File C:\Users\Alice\Desktop\djangogram\djangogram\settings.py first seen with mtime 1691518732.4214175
DEBUG 2023-08-09 03:18:55,456 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\messages\utils.py first seen with mtime 1689162639.720897
DEBUG 2023-08-09 03:18:55,458 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_import_class.py first seen with mtime 1691124228.0074582
DEBUG 2023-08-09 03:18:55,458 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\base\validation.py first seen with mtime 1689162640.36741
DEBUG 2023-08-09 03:18:55,459 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\functions\comparison.py first seen with mtime 1689162640.4571702
DEBUG 2023-08-09 03:18:55,460 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_suspended_frames.py first seen with mtime 1691124228.0313947
DEBUG 2023-08-09 03:18:55,460 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pytz\__init__.py first seen with mtime 1689162641.174762
DEBUG 2023-08-09 03:18:55,461 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\sqlite3\dbapi2.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,461 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_breakpoints.py first seen with mtime 1691124227.914731
DEBUG 2023-08-09 03:18:55,461 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\mime\base.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,462 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\urllib\request.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,462 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\templatetags\tz.py first seen with mtime 1689162640.561402
DEBUG 2023-08-09 03:18:55,463 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\xml\dom\domreg.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,465 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\files\move.py first seen with mtime 1689162640.2926102
DEBUG 2023-08-09 03:18:55,466 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\handlers\wsgi.py first seen with mtime 1689162640.3045783
DEBUG 2023-08-09 03:18:55,467 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\fractions.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,468 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\base\features.py first seen with mtime 1689162640.3654156
DEBUG 2023-08-09 03:18:55,469 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\migrations\utils.py first seen with mtime 1689162640.4252567
DEBUG 2023-08-09 03:18:55,470 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\middleware\__init__.py first seen with mtime 1689162640.5239923
DEBUG 2023-08-09 03:18:55,470 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\asgiref\local.py first seen with mtime 1689162638.2027295
DEBUG 2023-08-09 03:18:55,471 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\validators.py first seen with mtime 1689162640.3524497
DEBUG 2023-08-09 03:18:55,471 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\urllib\parse.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,472 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\sqlite3\introspection.py first seen with mtime 1689162640.4053085
DEBUG 2023-08-09 03:18:55,472 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\files\temp.py first seen with mtime 1689162640.298594
DEBUG 2023-08-09 03:18:55,473 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\loader.py first seen with mtime 1689162640.5489273
DEBUG 2023-08-09 03:18:55,474 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\templatetags\l10n.py first seen with mtime 1689162640.5604048
DEBUG 2023-08-09 03:18:55,474 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\json\decoder.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,475 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\ctypes\_endian.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,475 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\staticfiles\management\commands\__init__.py first seen with mtime 1689162640.2158165
DEBUG 2023-08-09 03:18:55,476 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\lexer.py first seen with mtime 1689162641.7964742
DEBUG 2023-08-09 03:18:55,476 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\utils\model_meta.py first seen with mtime 1689162641.5805366
DEBUG 2023-08-09 03:18:55,477 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\checks.py first seen with mtime 1689162638.9194
DEBUG 2023-08-09 03:18:55,477 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\sites\requests.py first seen with mtime 1689162640.2068396
DEBUG 2023-08-09 03:18:55,479 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\security\__init__.py first seen with mtime 1689162640.2766528
DEBUG 2023-08-09 03:18:55,480 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\backends\__init__.py first seen with mtime 1689162640.5399508
DEBUG 2023-08-09 03:18:55,481 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\pyparsing\testing.py first seen with mtime 1689162641.1677809
DEBUG 2023-08-09 03:18:55,482 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\packaging\markers.py first seen with mtime 1689162641.151824
DEBUG 2023-08-09 03:18:55,483 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\http\request.py first seen with mtime 1689162640.5229945
DEBUG 2023-08-09 03:18:55,483 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\schemas\openapi.py first seen with mtime 1689162641.4977577
DEBUG 2023-08-09 03:18:55,484 autoreload File C:\Users\Alice\Desktop\djangogram\user\models.py first seen with mtime 1690165172.3010714
DEBUG 2023-08-09 03:18:55,484 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\middleware.py first seen with mtime 1689162639.030103
DEBUG 2023-08-09 03:18:55,485 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\zipfile.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,485 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\formatter.py first seen with mtime 1689162641.7954774
DEBUG 2023-08-09 03:18:55,486 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\_pydev_tipper_common.py first seen with mtime 1691124227.8678675
DEBUG 2023-08-09 03:18:55,487 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\decimal.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,487 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\regex_helper.py first seen with mtime 1689162640.6122663
DEBUG 2023-08-09 03:18:55,488 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_utils.py first seen with mtime 1691124228.0393739
DEBUG 2023-08-09 03:18:55,488 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\exceptions.py first seen with mtime 1689162640.2856288
DEBUG 2023-08-09 03:18:55,494 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\serializers\__init__.py first seen with mtime 1689162640.3434741
DEBUG 2023-08-09 03:18:55,501 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\sessions\__init__.py first seen with mtime 1689162639.9492862
DEBUG 2023-08-09 03:18:55,503 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydevd_plugins\extensions\types\pydevd_helpers.py first seen with mtime 1691124228.3335824
DEBUG 2023-08-09 03:18:55,504 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\extern\__init__.py first seen with mtime 1689162641.169776
DEBUG 2023-08-09 03:18:55,504 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\conf\locale\__init__.py first seen with mtime 1689162638.2146976
DEBUG 2023-08-09 03:18:55,524 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\fields\json.py first seen with mtime 1689162640.4491923
DEBUG 2023-08-09 03:18:55,525 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\loaders\app_directories.py first seen with mtime 1689162640.5529163
DEBUG 2023-08-09 03:18:55,525 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\asgiref\__init__.py first seen with mtime 1689162638.192757
DEBUG 2023-08-09 03:18:55,526 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\keyword.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,526 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\numberformat.py first seen with mtime 1689162640.6112695
DEBUG 2023-08-09 03:18:55,527 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydevd_plugins\extensions\__init__.py first seen with mtime 1691124228.3305905
DEBUG 2023-08-09 03:18:55,528 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\streams.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,528 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\xml\parsers\expat.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,529 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\more_itertools\recipes.py first seen with mtime 1689162641.1448421
DEBUG 2023-08-09 03:18:55,529 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\base\client.py first seen with mtime 1689162640.3644178
DEBUG 2023-08-09 03:18:55,530 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\_parseaddr.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,530 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\wsgiref\handlers.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,531 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\cache\backends\filebased.py first seen with mtime 1689162640.2377577
DEBUG 2023-08-09 03:18:55,531 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\concurrent\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,532 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\_collections_abc.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,532 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\unittest\case.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,533 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admindocs\utils.py first seen with mtime 1689162638.9084282
DEBUG 2023-08-09 03:18:55,533 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\sessions\models.py first seen with mtime 1689162640.0749516
DEBUG 2023-08-09 03:18:55,534 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\security\base.py first seen with mtime 1689162640.2796445
DEBUG 2023-08-09 03:18:55,535 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\backends\base.py first seen with mtime 1689162640.5439408
DEBUG 2023-08-09 03:18:55,536 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\stringprep.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,537 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\templatetags\admin_list.py first seen with mtime 1689162638.8037095
DEBUG 2023-08-09 03:18:55,537 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydevd_plugins\jinja2_debug.py first seen with mtime 1691124228.3385694
DEBUG 2023-08-09 03:18:55,539 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\DLLs\_socket.pyd first seen with mtime 1686085294.0
DEBUG 2023-08-09 03:18:55,539 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\unittest\runner.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,540 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\pyparsing\common.py first seen with mtime 1689162641.1627948
DEBUG 2023-08-09 03:18:55,541 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_filtering.py first seen with mtime 1691124227.9974847
DEBUG 2023-08-09 03:18:55,542 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\utils\serializer_helpers.py first seen with mtime 1689162641.5805366
DEBUG 2023-08-09 03:18:55,543 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\staggered.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,543 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\concurrent\futures\_base.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,544 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\_pydev_filesystem_encoding.py first seen with mtime 1691124227.8678675
DEBUG 2023-08-09 03:18:55,544 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\management\__init__.py first seen with mtime 1689162639.027111
DEBUG 2023-08-09 03:18:55,545 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\timesince.py first seen with mtime 1689162640.6132631
DEBUG 2023-08-09 03:18:55,545 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\heapq.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,546 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\__init__.py first seen with mtime 1689162640.3564398
DEBUG 2023-08-09 03:18:55,547 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\lorem_ipsum.py first seen with mtime 1689162640.6112695
DEBUG 2023-08-09 03:18:55,549 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\serializers\base.py first seen with mtime 1689162640.347463
DEBUG 2023-08-09 03:18:55,550 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\utils.py first seen with mtime 1689162640.555418
DEBUG 2023-08-09 03:18:55,551 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\loaders\filesystem.py first seen with mtime 1689162640.5544212
DEBUG 2023-08-09 03:18:55,551 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\staticfiles\__init__.py first seen with mtime 1689162640.2078376
DEBUG 2023-08-09 03:18:55,552 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\mail\utils.py first seen with mtime 1689162640.3135538
DEBUG 2023-08-09 03:18:55,552 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_command_line_handling.py first seen with mtime 1691124227.9303524
DEBUG 2023-08-09 03:18:55,553 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\pkgutil.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,553 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pytz\exceptions.py first seen with mtime 1689162641.1777537
DEBUG 2023-08-09 03:18:55,554 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\views\decorators.py first seen with mtime 1689162638.8076992
DEBUG 2023-08-09 03:18:55,555 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\__init__.py first seen with mtime 1689162640.3524497
DEBUG 2023-08-09 03:18:55,556 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_net_command.py first seen with mtime 1691124228.0154364
DEBUG 2023-08-09 03:18:55,557 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\templatetags\__init__.py first seen with mtime 1689162640.555418
DEBUG 2023-08-09 03:18:55,557 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\headerregistry.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,558 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\DLLs\pyexpat.pyd first seen with mtime 1686085296.0
DEBUG 2023-08-09 03:18:55,559 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\subprocess.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,559 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\public_api.py first seen with mtime 1691124228.3704839
DEBUG 2023-08-09 03:18:55,559 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_bytecode_utils.py first seen with mtime 1691124227.914731
DEBUG 2023-08-09 03:18:55,560 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\fields\__init__.py first seen with mtime 1689162640.441213
DEBUG 2023-08-09 03:18:55,561 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\filters\right_margin.py first seen with mtime 1689162641.7954774
DEBUG 2023-08-09 03:18:55,562 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\html\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,562 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\sqlite3\operations.py first seen with mtime 1689162640.4053085
DEBUG 2023-08-09 03:18:55,563 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\models.py first seen with mtime 1689162639.0380814
DEBUG 2023-08-09 03:18:55,564 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\files\images.py first seen with mtime 1689162640.2916143
DEBUG 2023-08-09 03:18:55,564 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\http.py first seen with mtime 1689162640.6072798
DEBUG 2023-08-09 03:18:55,565 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\utils\humanize_datetime.py first seen with mtime 1689162641.5795393
DEBUG 2023-08-09 03:18:55,566 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_console.py first seen with mtime 1691124227.9303524
DEBUG 2023-08-09 03:18:55,566 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_version.py first seen with mtime 1691124228.3455498
DEBUG 2023-08-09 03:18:55,567 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_daemon_thread.py first seen with mtime 1691124227.991501
DEBUG 2023-08-09 03:18:55,567 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\files\uploadhandler.py first seen with mtime 1689162640.299591
DEBUG 2023-08-09 03:18:55,568 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\__init__.py first seen with mtime 1689162640.6202445
DEBUG 2023-08-09 03:18:55,568 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\multiprocessing\reduction.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,569 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\generic\detail.py first seen with mtime 1689162640.6372
DEBUG 2023-08-09 03:18:55,569 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\abc.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,570 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\handlers\asgi.py first seen with mtime 1689162640.3025835
DEBUG 2023-08-09 03:18:55,570 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\codecs.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,571 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\generator.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,572 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydev_ipython\__init__.py first seen with mtime 1691124228.0982149
DEBUG 2023-08-09 03:18:55,572 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_process_net_command.py first seen with mtime 1691124228.0184283
DEBUG 2023-08-09 03:18:55,573 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\manager.py first seen with mtime 1689162640.4601629
DEBUG 2023-08-09 03:18:55,574 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\re\_constants.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,575 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_timeout.py first seen with mtime 1691124228.0343862
DEBUG 2023-08-09 03:18:55,576 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\message.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,577 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\utils.py first seen with mtime 1689162641.798469
DEBUG 2023-08-09 03:18:55,578 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\json\scanner.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,578 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\xmlrpc\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,579 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\migrations\state.py first seen with mtime 1689162640.4242585
DEBUG 2023-08-09 03:18:55,579 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\pydev_console_utils.py first seen with mtime 1691124227.883489
DEBUG 2023-08-09 03:18:55,580 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\utils.py first seen with mtime 1689162640.4721303
DEBUG 2023-08-09 03:18:55,580 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\ipv6.py first seen with mtime 1689162640.6092741
DEBUG 2023-08-09 03:18:55,581 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\_pydev_imports_tipper.py first seen with mtime 1691124227.8678675
DEBUG 2023-08-09 03:18:55,581 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\sql\constants.py first seen with mtime 1689162640.4691381
DEBUG 2023-08-09 03:18:55,582 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\DLLs\_uuid.pyd first seen with mtime 1686085294.0
DEBUG 2023-08-09 03:18:55,583 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\settings.py first seen with mtime 1689162641.4997537
DEBUG 2023-08-09 03:18:55,584 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\urls\utils.py first seen with mtime 1689162640.5773592
DEBUG 2023-08-09 03:18:55,584 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\wsgiref\simple_server.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,585 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\autoreload.py first seen with mtime 1689162640.5993018
DEBUG 2023-08-09 03:18:55,585 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\queue.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,586 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_safe_repr.py first seen with mtime 1691124228.023415
DEBUG 2023-08-09 03:18:55,587 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\_pydev_calltip_util.py first seen with mtime 1691124227.8678675
DEBUG 2023-08-09 03:18:55,588 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\os.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,589 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\http\server.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,590 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\shutil.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,591 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\migrations\operations\special.py first seen with mtime 1689162640.4222643
DEBUG 2023-08-09 03:18:55,591 autoreload File C:\Users\Alice\Desktop\djangogram\content\__init__.py first seen with mtime 1689588102.7972496
DEBUG 2023-08-09 03:18:55,592 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\middleware\cache.py first seen with mtime 1689162640.5289783
DEBUG 2023-08-09 03:18:55,592 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\base\creation.py first seen with mtime 1689162640.3644178
DEBUG 2023-08-09 03:18:55,593 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\filters\output.py first seen with mtime 1689162641.7944798
DEBUG 2023-08-09 03:18:55,593 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\zoneinfo\_common.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,594 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\defaulttags.py first seen with mtime 1689162640.5479302
DEBUG 2023-08-09 03:18:55,594 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\paginator.py first seen with mtime 1689162640.3424768
DEBUG 2023-08-09 03:18:55,595 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\dispatch\dispatcher.py first seen with mtime 1689162640.475124
DEBUG 2023-08-09 03:18:55,596 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\validators.py first seen with mtime 1689162639.0410738
DEBUG 2023-08-09 03:18:55,596 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\io.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,597 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\mime\message.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,597 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\site.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,598 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\signals.py first seen with mtime 1689162640.3973305
DEBUG 2023-08-09 03:18:55,598 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\secrets.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,599 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\contextlib.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,599 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\mixins.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,600 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\importlib\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,602 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\translation.py first seen with mtime 1689162640.2806416
DEBUG 2023-08-09 03:18:55,603 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\trsock.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,603 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\datastructures.py first seen with mtime 1689162640.601295
DEBUG 2023-08-09 03:18:55,604 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\reverse.py first seen with mtime 1689162641.4917753
DEBUG 2023-08-09 03:18:55,605 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\proactor_events.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,605 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\types.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,606 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\__init__.py first seen with mtime 1691124227.8627706
DEBUG 2023-08-09 03:18:55,606 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\module_loading.py first seen with mtime 1689162640.6112695
DEBUG 2023-08-09 03:18:55,607 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\decorators.py first seen with mtime 1689162638.4887347
DEBUG 2023-08-09 03:18:55,608 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\wsgi.py first seen with mtime 1689162640.3524497
DEBUG 2023-08-09 03:18:55,608 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\opcode.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,609 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\constants.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,609 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_runpy.py first seen with mtime 1691124228.0224178
DEBUG 2023-08-09 03:18:55,610 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\migrations\operations\__init__.py first seen with mtime 1689162640.4172764
DEBUG 2023-08-09 03:18:55,611 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\apps\registry.py first seen with mtime 1689162638.2097106
DEBUG 2023-08-09 03:18:55,611 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\ipaddress.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,612 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\parsers.py first seen with mtime 1689162641.4887824
DEBUG 2023-08-09 03:18:55,612 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\generic\list.py first seen with mtime 1689162640.6381977
DEBUG 2023-08-09 03:18:55,613 autoreload File C:\Users\Alice\Desktop\djangogram\user\urls.py first seen with mtime 1691061938.8338814
DEBUG 2023-08-09 03:18:55,614 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\autoreload.py first seen with mtime 1689162640.5399508
DEBUG 2023-08-09 03:18:55,615 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\__init__.py first seen with mtime 1689162638.4767666
DEBUG 2023-08-09 03:18:55,617 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\random.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,617 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\connection.py first seen with mtime 1689162640.6002982
DEBUG 2023-08-09 03:18:55,618 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_extension_api.py first seen with mtime 1691124227.9964867
DEBUG 2023-08-09 03:18:55,619 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\multiprocessing\context.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,619 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\generic\dates.py first seen with mtime 1689162640.6372
DEBUG 2023-08-09 03:18:55,620 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_frame_eval\vendored\bytecode\flags.py first seen with mtime 1691124228.0812604
DEBUG 2023-08-09 03:18:55,621 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\apps.py first seen with mtime 1689162638.4867404
DEBUG 2023-08-09 03:18:55,621 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\contenttypes\management\__init__.py first seen with mtime 1689162639.13981
DEBUG 2023-08-09 03:18:55,622 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\sessions\base_session.py first seen with mtime 1689162639.9582627
DEBUG 2023-08-09 03:18:55,622 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\signing.py first seen with mtime 1689162640.3514526
DEBUG 2023-08-09 03:18:55,623 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\locale.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,624 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\schemas\utils.py first seen with mtime 1689162641.4977577
DEBUG 2023-08-09 03:18:55,625 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\templatetags\admin_modify.py first seen with mtime 1689162638.8037095
DEBUG 2023-08-09 03:18:55,625 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\string.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,626 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\contenttypes\forms.py first seen with mtime 1689162639.046061
DEBUG 2023-08-09 03:18:55,627 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_additional_thread_info.py first seen with mtime 1691124227.914731
DEBUG 2023-08-09 03:18:55,628 autoreload File C:\Users\Alice\Desktop\djangogram\user\views.py first seen with mtime 1691518656.8734665
DEBUG 2023-08-09 03:18:55,629 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_source_mapping.py first seen with mtime 1691124228.0284026
DEBUG 2023-08-09 03:18:55,631 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\sessions\backends\__init__.py first seen with mtime 1689162639.9522784
DEBUG 2023-08-09 03:18:55,631 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\defaults.py first seen with mtime 1689162640.6322124
DEBUG 2023-08-09 03:18:55,632 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\jaraco\context.py first seen with mtime 1689162641.1368635
DEBUG 2023-08-09 03:18:55,632 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\utils\encoders.py first seen with mtime 1689162641.5775445
DEBUG 2023-08-09 03:18:55,633 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\forms\__init__.py first seen with mtime 1689162640.4761243
DEBUG 2023-08-09 03:18:55,634 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\re\_compiler.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,634 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\_weakrefset.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,635 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\genericpath.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,635 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\cache.py first seen with mtime 1689162640.6002982
DEBUG 2023-08-09 03:18:55,636 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\zoneinfo\_tzpath.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,636 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\dis.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,637 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\transaction.py first seen with mtime 1689162640.4721303
DEBUG 2023-08-09 03:18:55,637 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\encodings\latin_1.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,638 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\migrations\operations\base.py first seen with mtime 1689162640.4202693
DEBUG 2023-08-09 03:18:55,638 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\__init__.py first seen with mtime 1689162641.4007916
DEBUG 2023-08-09 03:18:55,639 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\DLLs\unicodedata.pyd first seen with mtime 1686085296.0
DEBUG 2023-08-09 03:18:55,639 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\tokenize.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,640 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\re\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,641 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\staticfiles\management\__init__.py first seen with mtime 1689162640.2148178
DEBUG 2023-08-09 03:18:55,642 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\concurrent\futures\thread.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,643 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\messages\apps.py first seen with mtime 1689162639.7149136
DEBUG 2023-08-09 03:18:55,644 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\decorators\common.py first seen with mtime 1689162640.6302183
DEBUG 2023-08-09 03:18:55,644 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\packaging\utils.py first seen with mtime 1689162641.1528208
DEBUG 2023-08-09 03:18:55,645 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\http\client.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,645 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\indexes.py first seen with mtime 1689162640.4591644
DEBUG 2023-08-09 03:18:55,646 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\deletion.py first seen with mtime 1689162640.4392185
DEBUG 2023-08-09 03:18:55,646 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\glob.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,647 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\_distutils_hack\__init__.py first seen with mtime 1689162638.1877713
DEBUG 2023-08-09 03:18:55,648 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\platform.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,648 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_net_command_factory_json.py first seen with mtime 1691124228.0124445
DEBUG 2023-08-09 03:18:55,649 autoreload File C:\Users\Alice\Desktop\djangogram\user\apps.py first seen with mtime 1690158871.1172419
DEBUG 2023-08-09 03:18:55,649 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\events.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,650 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\contenttypes\checks.py first seen with mtime 1689162639.046061
DEBUG 2023-08-09 03:18:55,650 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\renderers.py first seen with mtime 1689162641.4897802
DEBUG 2023-08-09 03:18:55,651 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\model_checks.py first seen with mtime 1689162640.2756565
DEBUG 2023-08-09 03:18:55,651 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\forms\fields.py first seen with mtime 1689162640.4831007
DEBUG 2023-08-09 03:18:55,652 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_trace_dispatch_regular.py first seen with mtime 1691124228.0363808
DEBUG 2023-08-09 03:18:55,652 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\context.py first seen with mtime 1689162640.5459354
DEBUG 2023-08-09 03:18:55,653 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\lookups.py first seen with mtime 1689162640.4591644
DEBUG 2023-08-09 03:18:55,654 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_dont_trace_files.py first seen with mtime 1691124227.9934955
DEBUG 2023-08-09 03:18:55,655 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_comm_constants.py first seen with mtime 1691124227.914731
DEBUG 2023-08-09 03:18:55,656 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\mixins.py first seen with mtime 1689162641.486788
DEBUG 2023-08-09 03:18:55,657 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\datetime.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:18:55,657 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\engine.py first seen with mtime 1689162640.5479302
DEBUG 2023-08-09 03:18:55,659 autoreload File C:\Users\Alice\Desktop\djangogram\templates\content first seen with mtime 1690887057.5277188
DEBUG 2023-08-09 03:18:55,660 autoreload File C:\Users\Alice\Desktop\djangogram\templates\user first seen with mtime 1690446394.5396945
DEBUG 2023-08-09 03:18:55,661 autoreload File C:\Users\Alice\Desktop\djangogram\templates\content\main.html first seen with mtime 1691512990.1833732
DEBUG 2023-08-09 03:18:55,661 autoreload File C:\Users\Alice\Desktop\djangogram\templates\content\post.html first seen with mtime 1691512995.8036351
DEBUG 2023-08-09 03:18:55,662 autoreload File C:\Users\Alice\Desktop\djangogram\templates\content\profile_content.html first seen with mtime 1691513375.56431
DEBUG 2023-08-09 03:18:55,662 autoreload File C:\Users\Alice\Desktop\djangogram\templates\content\profile_main.html first seen with mtime 1691516198.7313457
DEBUG 2023-08-09 03:18:55,663 autoreload File C:\Users\Alice\Desktop\djangogram\templates\content\sidenav.html first seen with mtime 1691513187.8117442
DEBUG 2023-08-09 03:18:55,664 autoreload File C:\Users\Alice\Desktop\djangogram\templates\content\suggestions.html first seen with mtime 1691513011.6882043
DEBUG 2023-08-09 03:18:55,664 autoreload File C:\Users\Alice\Desktop\djangogram\templates\content\timeline.html first seen with mtime 1690676331.3021076
DEBUG 2023-08-09 03:18:55,666 autoreload File C:\Users\Alice\Desktop\djangogram\templates\user\join_base.html first seen with mtime 1691495672.8161757
DEBUG 2023-08-09 03:18:55,667 autoreload File C:\Users\Alice\Desktop\djangogram\templates\user\login.html first seen with mtime 1690515390.7666788
DEBUG 2023-08-09 03:18:55,668 autoreload File C:\Users\Alice\Desktop\djangogram\templates\user\singup.html first seen with mtime 1690513657.008595
DEBUG 2023-08-09 03:18:56,983 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\sessions\backends\base.py first seen with mtime 1689162639.955271
DEBUG 2023-08-09 03:18:56,984 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\migrations\0006_require_contenttypes_0002.py first seen with mtime 1689162639.0320976
DEBUG 2023-08-09 03:18:56,987 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\migrations\0003_logentry_add_action_flag_choices.py first seen with mtime 1689162638.7348933
DEBUG 2023-08-09 03:18:56,988 autoreload File C:\Users\Alice\Desktop\djangogram\user\migrations\__init__.py first seen with mtime 1690158869.4604592
DEBUG 2023-08-09 03:18:56,989 autoreload File C:\Users\Alice\Desktop\djangogram\content\migrations\0003_rename_profile_name_feed_profile_image.py first seen with mtime 1689591899.277307
DEBUG 2023-08-09 03:18:56,992 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\migrations\0009_alter_user_last_name_max_length.py first seen with mtime 1689162639.0330954
DEBUG 2023-08-09 03:18:56,994 autoreload File C:\Users\Alice\Desktop\djangogram\content\migrations\0006_remove_feed_like_count.py first seen with mtime 1690962764.3762681
DEBUG 2023-08-09 03:18:56,996 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\migrations\executor.py first seen with mtime 1689162640.4152825
DEBUG 2023-08-09 03:18:56,996 autoreload File C:\Users\Alice\Desktop\djangogram\content\migrations\__init__.py first seen with mtime 1689588102.7982476
DEBUG 2023-08-09 03:18:56,999 autoreload File C:\Users\Alice\Desktop\djangogram\content\migrations\0004_remove_feed_profile_image_remove_feed_user_id_and_more.py first seen with mtime 1690871683.1068006
DEBUG 2023-08-09 03:18:57,000 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\middleware\common.py first seen with mtime 1689162640.5299757
DEBUG 2023-08-09 03:18:57,001 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\sql\compiler.py first seen with mtime 1689162640.4691381
DEBUG 2023-08-09 03:18:57,004 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\migrations\0001_initial.py first seen with mtime 1689162639.030103
DEBUG 2023-08-09 03:18:57,005 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\migrations\__init__.py first seen with mtime 1689162638.7348933
DEBUG 2023-08-09 03:18:57,006 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\sessions\migrations\__init__.py first seen with mtime 1689162640.0739548
DEBUG 2023-08-09 03:18:57,010 autoreload File C:\Users\Alice\Desktop\djangogram\djangogram\wsgi.py first seen with mtime 1688886626.079336
DEBUG 2023-08-09 03:18:57,011 autoreload File C:\Users\Alice\Desktop\djangogram\user\migrations\0001_initial.py first seen with mtime 1690164952.9216428
DEBUG 2023-08-09 03:18:57,013 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\migrations\0011_update_proxy_permissions.py first seen with mtime 1689162639.0330954
DEBUG 2023-08-09 03:18:57,014 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\migrations\0005_alter_user_last_login_null.py first seen with mtime 1689162639.0320976
DEBUG 2023-08-09 03:18:57,017 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\contenttypes\migrations\0001_initial.py first seen with mtime 1689162639.1428015
DEBUG 2023-08-09 03:18:57,018 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\contenttypes\migrations\__init__.py first seen with mtime 1689162639.1428015
DEBUG 2023-08-09 03:18:57,019 autoreload File C:\Users\Alice\Desktop\djangogram\user\migrations\0002_alter_user_email_alter_user_nickname.py first seen with mtime 1690165177.3373196
DEBUG 2023-08-09 03:18:57,022 autoreload File C:\Users\Alice\Desktop\djangogram\content\migrations\0001_initial.py first seen with mtime 1689588646.1414492
DEBUG 2023-08-09 03:18:57,023 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\migrations\0012_alter_user_first_name_max_length.py first seen with mtime 1689162639.034093
DEBUG 2023-08-09 03:18:57,026 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\migrations\0007_alter_validators_add_error_messages.py first seen with mtime 1689162639.0320976
DEBUG 2023-08-09 03:18:57,027 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\migrations\recorder.py first seen with mtime 1689162640.4232655
DEBUG 2023-08-09 03:18:57,031 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\migrations\0001_initial.py first seen with mtime 1689162638.7338955
DEBUG 2023-08-09 03:18:57,032 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\sessions\migrations\0001_initial.py first seen with mtime 1689162640.0739548
DEBUG 2023-08-09 03:18:57,033 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\migrations\loader.py first seen with mtime 1689162640.4162793
DEBUG 2023-08-09 03:18:57,035 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\messages\middleware.py first seen with mtime 1689162639.7159107
DEBUG 2023-08-09 03:18:57,035 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\migrations\0002_logentry_remove_auto_add.py first seen with mtime 1689162638.7348933
DEBUG 2023-08-09 03:18:57,036 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\migrations\0010_alter_group_name_max_length.py first seen with mtime 1689162639.0330954
DEBUG 2023-08-09 03:18:57,043 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\migrations\0008_alter_user_username_max_length.py first seen with mtime 1689162639.0320976
DEBUG 2023-08-09 03:18:57,045 autoreload File C:\Users\Alice\Desktop\djangogram\content\migrations\0005_bookmark_like_reply.py first seen with mtime 1690880206.1680546
DEBUG 2023-08-09 03:18:57,047 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\migrations\graph.py first seen with mtime 1689162640.4162793
DEBUG 2023-08-09 03:18:57,048 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\migrations\0004_alter_user_username_opts.py first seen with mtime 1689162639.0311003
DEBUG 2023-08-09 03:18:57,049 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\migrations\0002_alter_permission_name_max_length.py first seen with mtime 1689162639.0311003
DEBUG 2023-08-09 03:18:57,049 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\middleware\clickjacking.py first seen with mtime 1689162640.5289783
DEBUG 2023-08-09 03:18:57,051 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\migrations\0003_alter_user_email_max_length.py first seen with mtime 1689162639.0311003
DEBUG 2023-08-09 03:18:57,053 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\sessions\exceptions.py first seen with mtime 1689162639.9592602
DEBUG 2023-08-09 03:18:57,056 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\sessions\backends\db.py first seen with mtime 1689162639.957266
DEBUG 2023-08-09 03:18:57,060 autoreload File C:\Users\Alice\Desktop\djangogram\content\migrations\0002_alter_feed_like_count.py first seen with mtime 1689591285.9031875
DEBUG 2023-08-09 03:18:57,061 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\migrations\__init__.py first seen with mtime 1689162639.034093
DEBUG 2023-08-09 03:18:57,062 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\contenttypes\migrations\0002_remove_content_type_name.py first seen with mtime 1689162639.1428015
DEBUG 2023-08-09 03:19:11,830 autoreload File C:\Users\Alice\Desktop\djangogram\user\views.py previous mtime: 1691518656.8734665, current mtime: 1691518751.6691892
DEBUG 2023-08-09 03:19:11,831 autoreload C:\Users\Alice\Desktop\djangogram\user\views.py notified as changed. Signal results: [(<function template_changed at 0x00000280A4E9A5C0>, None), (<function translation_file_changed at 0x00000280A68C3420>, None)].
INFO 2023-08-09 03:19:11,832 autoreload C:\Users\Alice\Desktop\djangogram\user\views.py changed, reloading.
INFO 2023-08-09 03:19:13,711 autoreload Watching for file changes with StatReloader
DEBUG 2023-08-09 03:19:13,716 autoreload Waiting for apps ready_event.
DEBUG 2023-08-09 03:19:13,859 autoreload Apps ready_event triggered. Sending autoreload_started signal.
DEBUG 2023-08-09 03:19:13,902 autoreload Watching dir C:\Users\Alice\Desktop\djangogram\templates with glob **/*.
DEBUG 2023-08-09 03:19:13,903 autoreload Watching dir C:\Users\Alice\Desktop\djangogram\locale with glob **/*.mo.
DEBUG 2023-08-09 03:19:13,904 autoreload Watching dir C:\Users\Alice\Desktop\djangogram\content\locale with glob **/*.mo.
DEBUG 2023-08-09 03:19:13,905 autoreload Watching dir C:\Users\Alice\Desktop\djangogram\user\locale with glob **/*.mo.
DEBUG 2023-08-09 03:19:13,977 utils (0.000)
SELECT name, type FROM sqlite_master
WHERE type in ('table', 'view') AND NOT name='sqlite_sequence'
ORDER BY name; args=None; alias=default
DEBUG 2023-08-09 03:19:13,984 utils (0.000) SELECT "django_migrations"."id", "django_migrations"."app", "django_migrations"."name", "django_migrations"."applied" FROM "django_migrations"; args=(); alias=default
DEBUG 2023-08-09 03:19:14,241 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\header.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,241 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_import_class.py first seen with mtime 1691124228.0074582
DEBUG 2023-08-09 03:19:14,242 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\pyparsing\util.py first seen with mtime 1689162641.1687787
DEBUG 2023-08-09 03:19:14,242 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\helpers.py first seen with mtime 1689162638.4897325
DEBUG 2023-08-09 03:19:14,243 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\conf\urls\__init__.py first seen with mtime 1689162638.474773
DEBUG 2023-08-09 03:19:14,243 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\importlib\machinery.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,244 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\_pydev_filesystem_encoding.py first seen with mtime 1691124227.8678675
DEBUG 2023-08-09 03:19:14,245 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\functools.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,246 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\files\__init__.py first seen with mtime 1689162640.2856288
DEBUG 2023-08-09 03:19:14,246 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\translation\trans_real.py first seen with mtime 1689162640.619247
DEBUG 2023-08-09 03:19:14,247 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\iterators.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,247 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\context.py first seen with mtime 1689162640.5459354
DEBUG 2023-08-09 03:19:14,248 autoreload File C:\Users\Alice\Desktop\djangogram\user\__init__.py first seen with mtime 1690158869.4594593
DEBUG 2023-08-09 03:19:14,249 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\test\__init__.py first seen with mtime 1689162640.561402
DEBUG 2023-08-09 03:19:14,250 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\constraints.py first seen with mtime 1689162640.4392185
DEBUG 2023-08-09 03:19:14,250 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_daemon_thread.py first seen with mtime 1691124227.991501
DEBUG 2023-08-09 03:19:14,251 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_reload.py first seen with mtime 1691124228.020423
DEBUG 2023-08-09 03:19:14,252 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\library.py first seen with mtime 1689162640.5489273
DEBUG 2023-08-09 03:19:14,253 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\templatetags\static.py first seen with mtime 1689162640.5604048
DEBUG 2023-08-09 03:19:14,253 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\backends\django.py first seen with mtime 1689162640.5439408
DEBUG 2023-08-09 03:19:14,254 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydevconsole.py first seen with mtime 1691124228.106012
DEBUG 2023-08-09 03:19:14,254 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\sites\__init__.py first seen with mtime 1689162640.0829291
DEBUG 2023-08-09 03:19:14,255 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\conf\__init__.py first seen with mtime 1689162638.2107084
DEBUG 2023-08-09 03:19:14,256 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_console.py first seen with mtime 1691124227.9303524
DEBUG 2023-08-09 03:19:14,256 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\fields\mixins.py first seen with mtime 1689162640.4491923
DEBUG 2023-08-09 03:19:14,257 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_frame_eval\vendored\bytecode\flags.py first seen with mtime 1691124228.0812604
DEBUG 2023-08-09 03:19:14,258 autoreload File C:\Users\Alice\Desktop\djangogram\djangogram\settings.py first seen with mtime 1691518732.4214175
DEBUG 2023-08-09 03:19:14,258 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\messages\utils.py first seen with mtime 1689162639.720897
DEBUG 2023-08-09 03:19:14,259 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\secrets.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,259 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\cache.py first seen with mtime 1689162640.6002982
DEBUG 2023-08-09 03:19:14,260 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\admin\views\main.py first seen with mtime 1689162638.8086958
DEBUG 2023-08-09 03:19:14,260 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\mime\base.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,261 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\unittest\suite.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,261 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\taskgroups.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,262 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\generic\base.py first seen with mtime 1689162640.6362023
DEBUG 2023-08-09 03:19:14,263 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\pyparsing\helpers.py first seen with mtime 1689162641.1667843
DEBUG 2023-08-09 03:19:14,263 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\rest_framework\utils\representation.py first seen with mtime 1689162641.5805366
DEBUG 2023-08-09 03:19:14,264 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\mail\__init__.py first seen with mtime 1689162640.3055756
DEBUG 2023-08-09 03:19:14,265 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\files.py first seen with mtime 1689162640.2756565
DEBUG 2023-08-09 03:19:14,265 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\connection.py first seen with mtime 1689162640.6002982
DEBUG 2023-08-09 03:19:14,266 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\http\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,267 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydevd_plugins\extensions\types\__init__.py first seen with mtime 1691124228.3325849
DEBUG 2023-08-09 03:19:14,268 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\messages\api.py first seen with mtime 1689162639.7149136
DEBUG 2023-08-09 03:19:14,268 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\paginator.py first seen with mtime 1689162640.3424768
DEBUG 2023-08-09 03:19:14,269 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\pkg_resources\_vendor\packaging\requirements.py first seen with mtime 1689162641.151824
DEBUG 2023-08-09 03:19:14,269 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\selector_events.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,270 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_runfiles\__init__.py first seen with mtime 1691124227.883489
DEBUG 2023-08-09 03:19:14,271 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\functions\__init__.py first seen with mtime 1689162640.4531813
DEBUG 2023-08-09 03:19:14,271 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\_compat_pickle.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,272 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\ast.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,272 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\tasks.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,273 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\importlib\util.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,273 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\duration.py first seen with mtime 1689162640.6042871
DEBUG 2023-08-09 03:19:14,274 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\test\client.py first seen with mtime 1689162640.567386
DEBUG 2023-08-09 03:19:14,274 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\files\utils.py first seen with mtime 1689162640.299591
DEBUG 2023-08-09 03:19:14,275 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\sqlite3\schema.py first seen with mtime 1689162640.4053085
DEBUG 2023-08-09 03:19:14,276 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\urllib\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,277 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\auth\admin.py first seen with mtime 1689162638.9184015
DEBUG 2023-08-09 03:19:14,278 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\glob.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,279 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\__init__.py first seen with mtime 1689162641.7795196
DEBUG 2023-08-09 03:19:14,279 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\xmlrpc\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,280 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\test\utils.py first seen with mtime 1689162640.5713754
DEBUG 2023-08-09 03:19:14,281 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\async_checks.py first seen with mtime 1689162640.2716668
DEBUG 2023-08-09 03:19:14,281 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\inspect.py first seen with mtime 1689162640.608277
DEBUG 2023-08-09 03:19:14,282 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\email\quoprimime.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,283 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\http\request.py first seen with mtime 1689162640.5229945
DEBUG 2023-08-09 03:19:14,283 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\urls\converters.py first seen with mtime 1689162640.5763624
DEBUG 2023-08-09 03:19:14,284 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\checks\security\__init__.py first seen with mtime 1689162640.2766528
DEBUG 2023-08-09 03:19:14,284 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\asyncio\events.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,285 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\backends\sqlite3\base.py first seen with mtime 1689162640.4033136
DEBUG 2023-08-09 03:19:14,285 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\utils\itercompat.py first seen with mtime 1689162640.6092741
DEBUG 2023-08-09 03:19:14,286 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\asgiref\local.py first seen with mtime 1689162638.2027295
DEBUG 2023-08-09 03:19:14,286 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\pydevd_plugins\extensions\__init__.py first seen with mtime 1691124228.3305905
DEBUG 2023-08-09 03:19:14,287 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\encodings\__init__.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,288 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\migrations\operations\base.py first seen with mtime 1689162640.4202693
DEBUG 2023-08-09 03:19:14,288 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_plugin_utils.py first seen with mtime 1691124228.0164335
DEBUG 2023-08-09 03:19:14,289 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_concurrency_analyser\pydevd_thread_wrappers.py first seen with mtime 1691124227.9303524
DEBUG 2023-08-09 03:19:14,290 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_constants.py first seen with mtime 1691124227.9303524
DEBUG 2023-08-09 03:19:14,291 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\__init__.py first seen with mtime 1689162640.5329678
DEBUG 2023-08-09 03:19:14,292 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\views\generic\list.py first seen with mtime 1689162640.6381977
DEBUG 2023-08-09 03:19:14,293 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\sqlparse\exceptions.py first seen with mtime 1689162641.7894933
DEBUG 2023-08-09 03:19:14,293 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\unittest\main.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,294 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\contextlib.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,294 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_dont_trace_files.py first seen with mtime 1691124227.9934955
DEBUG 2023-08-09 03:19:14,295 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydev_bundle\pydev_umd.py first seen with mtime 1691124227.883489
DEBUG 2023-08-09 03:19:14,295 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_utils.py first seen with mtime 1691124228.0393739
DEBUG 2023-08-09 03:19:14,296 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\contrib\sites\shortcuts.py first seen with mtime 1689162640.2068396
DEBUG 2023-08-09 03:19:14,297 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_resolver.py first seen with mtime 1691124228.0214205
DEBUG 2023-08-09 03:19:14,297 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\encodings\latin_1.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,298 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\sql\query.py first seen with mtime 1689162640.4711335
DEBUG 2023-08-09 03:19:14,298 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\db\models\functions\datetime.py first seen with mtime 1689162640.4571702
DEBUG 2023-08-09 03:19:14,299 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\unittest\signals.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,299 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\mail\utils.py first seen with mtime 1689162640.3135538
DEBUG 2023-08-09 03:19:14,300 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\core\files\storage\filesystem.py first seen with mtime 1689162640.2965994
DEBUG 2023-08-09 03:19:14,300 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\http\cookie.py first seen with mtime 1689162640.5219965
DEBUG 2023-08-09 03:19:14,301 autoreload File C:\Users\Alice\Desktop\djangogram\.venv\Lib\site-packages\django\template\exceptions.py first seen with mtime 1689162640.5489273
DEBUG 2023-08-09 03:19:14,301 autoreload File C:\Users\Alice\.vscode\extensions\ms-python.python-2023.14.0\pythonFiles\lib\python\debugpy\_vendored\pydevd\_pydevd_bundle\pydevd_defaults.py first seen with mtime 1691124227.9924972
DEBUG 2023-08-09 03:19:14,302 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\getpass.py first seen with mtime 1686085218.0
DEBUG 2023-08-09 03:19:14,303 autoreload File C:\Users\Alice\AppData\Local\Programs\Python\Python311\Lib\multiprocessing\context.py first seen with mtime 1686085218.0