-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy path.nbgrader.log
2635 lines (2619 loc) · 240 KB
/
.nbgrader.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
[NotebookApp | WARNING] No nbgrader_config.py file found (rerun with --debug to see where nbgrader is looking)
[NotebookApp | INFO] Loading the validate_assignment nbgrader serverextension
[NotebookApp | INFO] Serving notebooks from local directory: /Users/shannonellis/Desktop/Teaching/COGS18/Materials
[NotebookApp | INFO] The Jupyter Notebook is running at:
[NotebookApp | INFO] http://localhost:8888/?token=09353a8631631315e84fb8cc725c193ff2cf89677c697471
[NotebookApp | INFO] or http://127.0.0.1:8888/?token=09353a8631631315e84fb8cc725c193ff2cf89677c697471
[NotebookApp | INFO] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[NotebookApp | CRITICAL]
To access the notebook, open this file in a browser:
file:///Users/shannonellis/Library/Jupyter/runtime/nbserver-37338-open.html
Or copy and paste one of these URLs:
http://localhost:8888/?token=09353a8631631315e84fb8cc725c193ff2cf89677c697471
or http://127.0.0.1:8888/?token=09353a8631631315e84fb8cc725c193ff2cf89677c697471
[NotebookApp | INFO] Kernel started: 23d1f2a4-bb87-4e57-aff0-bdcafa96c1f1
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 23d1f2a4-bb87-4e57-aff0-bdcafa96c1f1) to 5.3 (client).
[NotebookApp | INFO] Kernel started: 98408491-e1ed-4d15-9e47-90c5a030220c
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 98408491-e1ed-4d15-9e47-90c5a030220c) to 5.3 (client).
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Starting buffering for 98408491-e1ed-4d15-9e47-90c5a030220c:5a8c942840a04f8e880743aac1fa6c7a
[NotebookApp | INFO] Starting buffering for 23d1f2a4-bb87-4e57-aff0-bdcafa96c1f1:dc0df8c56d7441f3873bc134772a9840
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 23d1f2a4-bb87-4e57-aff0-bdcafa96c1f1) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 23d1f2a4-bb87-4e57-aff0-bdcafa96c1f1:dc0df8c56d7441f3873bc134772a9840
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 98408491-e1ed-4d15-9e47-90c5a030220c) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 98408491-e1ed-4d15-9e47-90c5a030220c:5a8c942840a04f8e880743aac1fa6c7a
[NotebookApp | INFO] Starting buffering for 98408491-e1ed-4d15-9e47-90c5a030220c:5a8c942840a04f8e880743aac1fa6c7a
[NotebookApp | INFO] Starting buffering for 23d1f2a4-bb87-4e57-aff0-bdcafa96c1f1:dc0df8c56d7441f3873bc134772a9840
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 98408491-e1ed-4d15-9e47-90c5a030220c) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 98408491-e1ed-4d15-9e47-90c5a030220c:5a8c942840a04f8e880743aac1fa6c7a
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 23d1f2a4-bb87-4e57-aff0-bdcafa96c1f1) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 23d1f2a4-bb87-4e57-aff0-bdcafa96c1f1:dc0df8c56d7441f3873bc134772a9840
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1): No such file or directory: rise.css
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1) 8.76ms referer=http://localhost:8888/notebooks/05-Conditionals.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/05-Conditionals.css (::1): No such file or directory: 05-Conditionals.css
[NotebookApp | WARNING] 404 GET /notebooks/05-Conditionals.css (::1) 1.75ms referer=http://localhost:8888/notebooks/05-Conditionals.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/04-Operators.css (::1): No such file or directory: 04-Operators.css
[NotebookApp | WARNING] 404 GET /notebooks/04-Operators.css (::1) 1.70ms referer=http://localhost:8888/notebooks/04-Operators.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1): No such file or directory: rise.css
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1) 1.70ms referer=http://localhost:8888/notebooks/04-Operators.ipynb
[NotebookApp | INFO] Saving file at /04-Operators.ipynb
[NotebookApp | INFO] Saving file at /04-Operators.ipynb
[NotebookApp | INFO] Saving file at /04-Operators.ipynb
[NotebookApp | INFO] Saving file at /04-Operators.ipynb
[NotebookApp | INFO] Saving file at /04-Operators.ipynb
[NotebookApp | INFO] Saving file at /04-Operators.ipynb
[NotebookApp | INFO] Saving file at /04-Operators.ipynb
[NotebookApp | INFO] Saving file at /04-Operators.ipynb
[NotebookApp | INFO] Saving file at /04-Operators.ipynb
[NotebookApp | INFO] Saving file at /04-Operators.ipynb
[NotebookApp | INFO] Saving file at /04-Operators.ipynb
[NotebookApp | INFO] Saving file at /04-Operators.ipynb
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Starting buffering for 98408491-e1ed-4d15-9e47-90c5a030220c:5a8c942840a04f8e880743aac1fa6c7a
[NotebookApp | INFO] Starting buffering for 23d1f2a4-bb87-4e57-aff0-bdcafa96c1f1:dc0df8c56d7441f3873bc134772a9840
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 98408491-e1ed-4d15-9e47-90c5a030220c) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 98408491-e1ed-4d15-9e47-90c5a030220c:5a8c942840a04f8e880743aac1fa6c7a
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 23d1f2a4-bb87-4e57-aff0-bdcafa96c1f1) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 23d1f2a4-bb87-4e57-aff0-bdcafa96c1f1:dc0df8c56d7441f3873bc134772a9840
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Starting buffering for 98408491-e1ed-4d15-9e47-90c5a030220c:5a8c942840a04f8e880743aac1fa6c7a
[NotebookApp | INFO] Kernel shutdown: 98408491-e1ed-4d15-9e47-90c5a030220c
[NotebookApp | INFO] Saving file at /04-Operators.ipynb
[NotebookApp | INFO] Starting buffering for 23d1f2a4-bb87-4e57-aff0-bdcafa96c1f1:dc0df8c56d7441f3873bc134772a9840
[NotebookApp | INFO] Kernel shutdown: 23d1f2a4-bb87-4e57-aff0-bdcafa96c1f1
[NotebookApp | INFO] Kernel started: 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Kernel started: 4b489b37-60ba-4078-a93c-d0743faf7164
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 4b489b37-60ba-4078-a93c-d0743faf7164) to 5.3 (client).
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Kernel started: 8324ceee-18b2-40c1-a687-41ce904a66f4
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 8324ceee-18b2-40c1-a687-41ce904a66f4) to 5.3 (client).
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Starting buffering for 8324ceee-18b2-40c1-a687-41ce904a66f4:f8b7af67702d4ee8a7957f4f3c0733f4
[NotebookApp | INFO] Starting buffering for 4b489b37-60ba-4078-a93c-d0743faf7164:eb0b3ef665bf489b80345a67ab8db6d0
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 4b489b37-60ba-4078-a93c-d0743faf7164) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 4b489b37-60ba-4078-a93c-d0743faf7164:eb0b3ef665bf489b80345a67ab8db6d0
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 8324ceee-18b2-40c1-a687-41ce904a66f4) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 8324ceee-18b2-40c1-a687-41ce904a66f4:f8b7af67702d4ee8a7957f4f3c0733f4
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Starting buffering for 8324ceee-18b2-40c1-a687-41ce904a66f4:f8b7af67702d4ee8a7957f4f3c0733f4
[NotebookApp | INFO] Starting buffering for 4b489b37-60ba-4078-a93c-d0743faf7164:eb0b3ef665bf489b80345a67ab8db6d0
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 8324ceee-18b2-40c1-a687-41ce904a66f4) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 8324ceee-18b2-40c1-a687-41ce904a66f4:f8b7af67702d4ee8a7957f4f3c0733f4
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 4b489b37-60ba-4078-a93c-d0743faf7164) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 4b489b37-60ba-4078-a93c-d0743faf7164:eb0b3ef665bf489b80345a67ab8db6d0
[NotebookApp | INFO] Starting buffering for 4b489b37-60ba-4078-a93c-d0743faf7164:eb0b3ef665bf489b80345a67ab8db6d0
[NotebookApp | INFO] Starting buffering for 8324ceee-18b2-40c1-a687-41ce904a66f4:f8b7af67702d4ee8a7957f4f3c0733f4
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 4b489b37-60ba-4078-a93c-d0743faf7164) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 4b489b37-60ba-4078-a93c-d0743faf7164:eb0b3ef665bf489b80345a67ab8db6d0
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 8324ceee-18b2-40c1-a687-41ce904a66f4) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 8324ceee-18b2-40c1-a687-41ce904a66f4:f8b7af67702d4ee8a7957f4f3c0733f4
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Kernel restarted: 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Replaying 6 buffered messages
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Starting buffering for 8324ceee-18b2-40c1-a687-41ce904a66f4:f8b7af67702d4ee8a7957f4f3c0733f4
[NotebookApp | INFO] Starting buffering for 4b489b37-60ba-4078-a93c-d0743faf7164:eb0b3ef665bf489b80345a67ab8db6d0
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 8324ceee-18b2-40c1-a687-41ce904a66f4) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 8324ceee-18b2-40c1-a687-41ce904a66f4:f8b7af67702d4ee8a7957f4f3c0733f4
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 4b489b37-60ba-4078-a93c-d0743faf7164) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 4b489b37-60ba-4078-a93c-d0743faf7164:eb0b3ef665bf489b80345a67ab8db6d0
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1): No such file or directory: rise.css
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1) 17.25ms referer=http://localhost:8888/notebooks/06-DataTypes.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/06-DataTypes.css (::1): No such file or directory: 06-DataTypes.css
[NotebookApp | WARNING] 404 GET /notebooks/06-DataTypes.css (::1) 1.26ms referer=http://localhost:8888/notebooks/06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1): No such file or directory: rise.css
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1) 1.51ms referer=http://localhost:8888/notebooks/06-DataTypes.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/06-DataTypes.css (::1): No such file or directory: 06-DataTypes.css
[NotebookApp | WARNING] 404 GET /notebooks/06-DataTypes.css (::1) 1.79ms referer=http://localhost:8888/notebooks/06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1): No such file or directory: rise.css
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1) 1.65ms referer=http://localhost:8888/notebooks/06-DataTypes.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/06-DataTypes.css (::1): No such file or directory: 06-DataTypes.css
[NotebookApp | WARNING] 404 GET /notebooks/06-DataTypes.css (::1) 1.59ms referer=http://localhost:8888/notebooks/06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Kernel restarted: 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Replaying 6 buffered messages
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Starting buffering for 8324ceee-18b2-40c1-a687-41ce904a66f4:f8b7af67702d4ee8a7957f4f3c0733f4
[NotebookApp | INFO] Kernel shutdown: 8324ceee-18b2-40c1-a687-41ce904a66f4
[NotebookApp | INFO] Starting buffering for 4b489b37-60ba-4078-a93c-d0743faf7164:eb0b3ef665bf489b80345a67ab8db6d0
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 4b489b37-60ba-4078-a93c-d0743faf7164) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 4b489b37-60ba-4078-a93c-d0743faf7164:eb0b3ef665bf489b80345a67ab8db6d0
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Starting buffering for 4b489b37-60ba-4078-a93c-d0743faf7164:eb0b3ef665bf489b80345a67ab8db6d0
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 4b489b37-60ba-4078-a93c-d0743faf7164) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 4b489b37-60ba-4078-a93c-d0743faf7164:eb0b3ef665bf489b80345a67ab8db6d0
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1): No such file or directory: rise.css
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1) 2.08ms referer=http://localhost:8888/notebooks/06-DataTypes.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/06-DataTypes.css (::1): No such file or directory: 06-DataTypes.css
[NotebookApp | WARNING] 404 GET /notebooks/06-DataTypes.css (::1) 1.72ms referer=http://localhost:8888/notebooks/06-DataTypes.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1): No such file or directory: rise.css
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1) 1.43ms referer=http://localhost:8888/notebooks/05-Conditionals.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/05-Conditionals.css (::1): No such file or directory: 05-Conditionals.css
[NotebookApp | WARNING] 404 GET /notebooks/05-Conditionals.css (::1) 1.68ms referer=http://localhost:8888/notebooks/05-Conditionals.ipynb
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1): No such file or directory: rise.css
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1) 1.39ms referer=http://localhost:8888/notebooks/06-DataTypes.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/06-DataTypes.css (::1): No such file or directory: 06-DataTypes.css
[NotebookApp | WARNING] 404 GET /notebooks/06-DataTypes.css (::1) 1.16ms referer=http://localhost:8888/notebooks/06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Starting buffering for 4b489b37-60ba-4078-a93c-d0743faf7164:eb0b3ef665bf489b80345a67ab8db6d0
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 4b489b37-60ba-4078-a93c-d0743faf7164) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 4b489b37-60ba-4078-a93c-d0743faf7164:eb0b3ef665bf489b80345a67ab8db6d0
[NotebookApp | INFO] Kernel started: 14fe1e40-48fc-4eb1-87d4-0f341113f63b
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Starting buffering for 4b489b37-60ba-4078-a93c-d0743faf7164:eb0b3ef665bf489b80345a67ab8db6d0
[NotebookApp | INFO] Kernel shutdown: 4b489b37-60ba-4078-a93c-d0743faf7164
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Kernel restarted: 14fe1e40-48fc-4eb1-87d4-0f341113f63b
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Replaying 6 buffered messages
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Kernel started: 3d480b42-0f61-4cdd-84cf-85a15a3a1344
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 3d480b42-0f61-4cdd-84cf-85a15a3a1344) to 5.3 (client).
[NotebookApp | INFO] Starting buffering for 3d480b42-0f61-4cdd-84cf-85a15a3a1344:bd29d50defa04b7e8a13e43f8086ae7f
[NotebookApp | INFO] Kernel shutdown: 3d480b42-0f61-4cdd-84cf-85a15a3a1344
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1): No such file or directory: rise.css
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1) 1.81ms referer=http://localhost:8888/notebooks/06-DataTypes.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/06-DataTypes.css (::1): No such file or directory: 06-DataTypes.css
[NotebookApp | WARNING] 404 GET /notebooks/06-DataTypes.css (::1) 1.52ms referer=http://localhost:8888/notebooks/06-DataTypes.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/07-Loops.css (::1): No such file or directory: 07-Loops.css
[NotebookApp | WARNING] 404 GET /notebooks/07-Loops.css (::1) 1.39ms referer=http://localhost:8888/notebooks/07-Loops.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1): No such file or directory: rise.css
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1) 1.72ms referer=http://localhost:8888/notebooks/07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1): No such file or directory: rise.css
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1) 1.80ms referer=http://localhost:8888/notebooks/07-Loops.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/07-Loops.css (::1): No such file or directory: 07-Loops.css
[NotebookApp | WARNING] 404 GET /notebooks/07-Loops.css (::1) 1.47ms referer=http://localhost:8888/notebooks/07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Copying 05-Conditionals.ipynb to
[NotebookApp | WARNING] 404 PATCH /api/contents/05-Conditionals-Copy1.ipynb (::1): ../pythonbook/content/02-basics/05-Conditionals-Copy1.ipynb is outside root contents directory
[NotebookApp | WARNING] ../pythonbook/content/02-basics/05-Conditionals-Copy1.ipynb is outside root contents directory
[NotebookApp | WARNING] 404 PATCH /api/contents/05-Conditionals-Copy1.ipynb (::1) 4.80ms referer=http://localhost:8888/tree
[NotebookApp | WARNING] delete /05-Conditionals-Copy1.ipynb
[NotebookApp | WARNING] Notebook A1-Syntax.ipynb is not trusted
[NotebookApp | INFO] Kernel started: 96e8ac00-acf1-4fe2-8d4c-9544eaf627a1
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 96e8ac00-acf1-4fe2-8d4c-9544eaf627a1) to 5.3 (client).
[NotebookApp | WARNING] Notebook A2-Examples.ipynb is not trusted
[NotebookApp | INFO] Kernel started: 3943c47f-e6d8-4de3-9f66-2fce6019068a
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 3943c47f-e6d8-4de3-9f66-2fce6019068a) to 5.3 (client).
[NotebookApp | INFO] Saving file at /A2-Examples.ipynb
[NotebookApp | WARNING] Notebook A2-Examples.ipynb is not trusted
[NotebookApp | INFO] Saving file at /A2-Examples.ipynb
[NotebookApp | WARNING] Notebook A2-Examples.ipynb is not trusted
[NotebookApp | WARNING] Notebook Midterm-Review.ipynb is not trusted
[NotebookApp | INFO] Kernel started: 7ab065fa-c764-43b6-a208-e2a5aa7f2a35
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 7ab065fa-c764-43b6-a208-e2a5aa7f2a35) to 5.3 (client).
[NotebookApp | INFO] Kernel started: 222a33f1-4388-4627-aac9-5ff64841204a
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 222a33f1-4388-4627-aac9-5ff64841204a) to 5.3 (client).
[NotebookApp | INFO] Saving file at /Midterm-Review.ipynb
[NotebookApp | WARNING] Notebook Midterm-Review.ipynb is not trusted
[NotebookApp | INFO] Saving file at /MidtermPractice.ipynb
[NotebookApp | INFO] Copying MidtermPractice.ipynb to
[NotebookApp | INFO] Kernel started: ffffe053-51d1-44b7-b9ed-de8b8df908c0
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel ffffe053-51d1-44b7-b9ed-de8b8df908c0) to 5.3 (client).
[NotebookApp | INFO] Saving file at /Exam2_Practice.ipynb
[NotebookApp | INFO] Starting buffering for ffffe053-51d1-44b7-b9ed-de8b8df908c0:55ae9cc275074c96891ea1cd97105724
[NotebookApp | INFO] Kernel shutdown: ffffe053-51d1-44b7-b9ed-de8b8df908c0
[NotebookApp | INFO] Saving file at /Exam1_Practice.ipynb
[NotebookApp | INFO] Saving file at /Exam1-Review.ipynb
[NotebookApp | WARNING] Notebook Exam1-Review.ipynb is not trusted
[NotebookApp | INFO] Copying Exam1-Review.ipynb to
[NotebookApp | WARNING] Notebook Exam1-Review.ipynb is not trusted
[NotebookApp | WARNING] Notebook Exam1-Review-Copy1.ipynb is not trusted
[NotebookApp | WARNING] Notebook Exam1-Review-Copy1.ipynb is not trusted
[NotebookApp | INFO] Kernel started: 9ef1be17-3da2-4ce6-adb9-9cf489549928
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 9ef1be17-3da2-4ce6-adb9-9cf489549928) to 5.3 (client).
[NotebookApp | INFO] Saving file at /Exam2-Review.ipynb
[NotebookApp | WARNING] Notebook Exam2-Review.ipynb is not trusted
[NotebookApp | INFO] Saving file at /Exam2-Review.ipynb
[NotebookApp | WARNING] Notebook Exam2-Review.ipynb is not trusted
[NotebookApp | INFO] Starting buffering for 9ef1be17-3da2-4ce6-adb9-9cf489549928:55092994277647f5950d24e3a6ddab5c
[NotebookApp | INFO] Kernel shutdown: 9ef1be17-3da2-4ce6-adb9-9cf489549928
[NotebookApp | INFO] Saving file at /Exam1-Review.ipynb
[NotebookApp | WARNING] Notebook Exam1-Review.ipynb is not trusted
[NotebookApp | WARNING] Notebook Exam2-Review.ipynb is not trusted
[NotebookApp | INFO] Kernel started: c95d0b97-27a6-4aff-be0b-1e300eed0a69
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel c95d0b97-27a6-4aff-be0b-1e300eed0a69) to 5.3 (client).
[NotebookApp | INFO] Starting buffering for c95d0b97-27a6-4aff-be0b-1e300eed0a69:347e8f42408e49da846ad15fdadcf3c6
[NotebookApp | INFO] Kernel restarted: c95d0b97-27a6-4aff-be0b-1e300eed0a69
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel c95d0b97-27a6-4aff-be0b-1e300eed0a69) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for c95d0b97-27a6-4aff-be0b-1e300eed0a69:347e8f42408e49da846ad15fdadcf3c6
[NotebookApp | INFO] Replaying 6 buffered messages
[NotebookApp | INFO] Starting buffering for 7ab065fa-c764-43b6-a208-e2a5aa7f2a35:58ef899bfdf945aeace85fcb512d69a4
[NotebookApp | INFO] Kernel restarted: 7ab065fa-c764-43b6-a208-e2a5aa7f2a35
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 7ab065fa-c764-43b6-a208-e2a5aa7f2a35) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 7ab065fa-c764-43b6-a208-e2a5aa7f2a35:58ef899bfdf945aeace85fcb512d69a4
[NotebookApp | INFO] Replaying 6 buffered messages
[NotebookApp | INFO] Saving file at /Exam1-Review.ipynb
[NotebookApp | INFO] Kernel started: e6f70f44-fec8-408e-b8cf-7e2e69ddd6f7
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel e6f70f44-fec8-408e-b8cf-7e2e69ddd6f7) to 5.3 (client).
[NotebookApp | ERROR] Uncaught exception GET /api/kernels/e6f70f44-fec8-408e-b8cf-7e2e69ddd6f7/channels?session_id=5c52d01571674690b09929b4c2b02681 (::1)
HTTPServerRequest(protocol='http', host='localhost:8888', method='GET', uri='/api/kernels/e6f70f44-fec8-408e-b8cf-7e2e69ddd6f7/channels?session_id=5c52d01571674690b09929b4c2b02681', version='HTTP/1.1', remote_ip='::1')
Traceback (most recent call last):
File "/anaconda3/lib/python3.6/site-packages/tornado/websocket.py", line 546, in _run_callback
File "/anaconda3/lib/python3.6/site-packages/notebook/services/kernels/handlers.py", line 274, in open
File "/anaconda3/lib/python3.6/site-packages/notebook/services/kernels/handlers.py", line 128, in create_stream
File "/anaconda3/lib/python3.6/site-packages/jupyter_client/multikernelmanager.py", line 33, in wrapped
File "/anaconda3/lib/python3.6/site-packages/jupyter_client/ioloop/manager.py", line 22, in wrapped
File "/anaconda3/lib/python3.6/site-packages/jupyter_client/connect.py", line 563, in connect_stdin
File "/anaconda3/lib/python3.6/site-packages/jupyter_client/connect.py", line 543, in _create_connected_socket
File "/anaconda3/lib/python3.6/site-packages/zmq/sugar/context.py", line 146, in socket
File "/anaconda3/lib/python3.6/site-packages/zmq/sugar/socket.py", line 59, in __init__
File "zmq/backend/cython/socket.pyx", line 328, in zmq.backend.cython.socket.Socket.__init__
zmq.error.ZMQError: Too many open files
[NotebookApp | INFO] Starting buffering for e6f70f44-fec8-408e-b8cf-7e2e69ddd6f7:5c52d01571674690b09929b4c2b02681
[NotebookApp | ERROR] Uncaught exception GET /static/base/images/favicon-busy-1.ico (::1)
HTTPServerRequest(protocol='http', host='localhost:8888', method='GET', uri='/static/base/images/favicon-busy-1.ico', version='HTTP/1.1', remote_ip='::1')
Traceback (most recent call last):
File "/anaconda3/lib/python3.6/site-packages/tornado/web.py", line 1592, in _execute
File "/anaconda3/lib/python3.6/site-packages/tornado/gen.py", line 1133, in run
File "/anaconda3/lib/python3.6/site-packages/tornado/gen.py", line 326, in wrapper
File "/anaconda3/lib/python3.6/site-packages/tornado/web.py", line 2525, in get
File "/anaconda3/lib/python3.6/site-packages/tornado/web.py", line 2678, in get_content
OSError: [Errno 24] Too many open files: '/anaconda3/lib/python3.6/site-packages/notebook/static/base/images/favicon-busy-1.ico'
[NotebookApp | ERROR] Uncaught exception in write_error
Traceback (most recent call last):
File "/anaconda3/lib/python3.6/site-packages/tornado/web.py", line 1592, in _execute
File "/anaconda3/lib/python3.6/site-packages/tornado/gen.py", line 1133, in run
File "/anaconda3/lib/python3.6/site-packages/tornado/gen.py", line 326, in wrapper
File "/anaconda3/lib/python3.6/site-packages/tornado/web.py", line 2525, in get
File "/anaconda3/lib/python3.6/site-packages/tornado/web.py", line 2678, in get_content
OSError: [Errno 24] Too many open files: '/anaconda3/lib/python3.6/site-packages/notebook/static/base/images/favicon-busy-1.ico'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/anaconda3/lib/python3.6/site-packages/tornado/web.py", line 1112, in send_error
File "/anaconda3/lib/python3.6/site-packages/notebook/base/handlers.py", line 588, in write_error
File "/anaconda3/lib/python3.6/site-packages/notebook/base/handlers.py", line 518, in render_template
File "/anaconda3/lib/python3.6/site-packages/notebook/base/handlers.py", line 514, in get_template
File "/anaconda3/lib/python3.6/site-packages/jinja2/environment.py", line 830, in get_template
File "/anaconda3/lib/python3.6/site-packages/jinja2/environment.py", line 804, in _load_template
File "/anaconda3/lib/python3.6/site-packages/jinja2/loaders.py", line 113, in load
File "/anaconda3/lib/python3.6/site-packages/jinja2/loaders.py", line 171, in get_source
File "/anaconda3/lib/python3.6/site-packages/jinja2/utils.py", line 154, in open_if_exists
OSError: [Errno 24] Too many open files: '/anaconda3/lib/python3.6/site-packages/notebook/500.html'
[NotebookApp | ERROR] {
"Host": "localhost:8888",
"Connection": "keep-alive",
"Sec-Fetch-Mode": "no-cors",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36",
"Accept": "image/webp,image/apng,image/*,*/*;q=0.8",
"Sec-Fetch-Site": "same-origin",
"Referer": "http://localhost:8888/notebooks/08-Encodings.ipynb",
"Accept-Encoding": "gzip, deflate, br",
"Accept-Language": "en-US,en;q=0.9",
"Cookie": "_xsrf=2|1b71b4a9|f726d001fd955fe187f22ccc9667c9a6|1570377811; username-localhost-8888=\"2|1:0|10:1570629710|23:username-localhost-8888|44:MjQxZGFkZDJkY2ZlNDNjOWJjYjZkYTRjMjUzNjI4Mzg=|3e5e43159f4c888a8ce38a53f4e685a2bd724c694972e25216fdbd3a55a2582a\"; username-localhost-8890=\"2|1:0|10:1571073800|23:username-localhost-8890|44:MWVkYzZiNTEzZjNlNGE2MGE4MGYyNDQyMWE1MzUyZmM=|8c45abed8e5588858687bd9a1c1c9baa6c3d4f79746426b36de2ff70569977b1\""
}
[NotebookApp | ERROR] 500 GET /static/base/images/favicon-busy-1.ico (::1) 2.36ms referer=http://localhost:8888/notebooks/08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | ERROR] Error while saving file: 08-Encodings.ipynb unable to open database file
Traceback (most recent call last):
File "/anaconda3/lib/python3.6/site-packages/notebook/services/contents/filemanager.py", line 470, in save
File "/anaconda3/lib/python3.6/site-packages/notebook/services/contents/manager.py", line 492, in check_and_sign
File "/anaconda3/lib/python3.6/site-packages/nbformat/sign.py", line 449, in sign
File "/anaconda3/lib/python3.6/site-packages/nbformat/sign.py", line 211, in store_signature
sqlite3.OperationalError: unable to open database file
[NotebookApp | WARNING] 500 PUT /api/contents/08-Encodings.ipynb (::1): Unexpected error while saving file: 08-Encodings.ipynb unable to open database file
[NotebookApp | WARNING] Unexpected error while saving file: 08-Encodings.ipynb unable to open database file
[NotebookApp | ERROR] {
"Host": "localhost:8888",
"Connection": "keep-alive",
"Content-Length": "21451",
"Sec-Fetch-Mode": "cors",
"Origin": "http://localhost:8888",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36",
"Content-Type": "application/json",
"Accept": "application/json, text/javascript, */*; q=0.01",
"X-Requested-With": "XMLHttpRequest",
"X-Xsrftoken": "2|1b71b4a9|f726d001fd955fe187f22ccc9667c9a6|1570377811",
"Sec-Fetch-Site": "same-origin",
"Referer": "http://localhost:8888/notebooks/08-Encodings.ipynb",
"Accept-Encoding": "gzip, deflate, br",
"Accept-Language": "en-US,en;q=0.9",
"Cookie": "_xsrf=2|1b71b4a9|f726d001fd955fe187f22ccc9667c9a6|1570377811; username-localhost-8888=\"2|1:0|10:1570629710|23:username-localhost-8888|44:MjQxZGFkZDJkY2ZlNDNjOWJjYjZkYTRjMjUzNjI4Mzg=|3e5e43159f4c888a8ce38a53f4e685a2bd724c694972e25216fdbd3a55a2582a\"; username-localhost-8890=\"2|1:0|10:1571073800|23:username-localhost-8890|44:MWVkYzZiNTEzZjNlNGE2MGE4MGYyNDQyMWE1MzUyZmM=|8c45abed8e5588858687bd9a1c1c9baa6c3d4f79746426b36de2ff70569977b1\""
}
[NotebookApp | ERROR] 500 PUT /api/contents/08-Encodings.ipynb (::1) 7.67ms referer=http://localhost:8888/notebooks/08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /Exam1-Review.ipynb
[NotebookApp | ERROR] Error while saving file: Exam1-Review.ipynb unable to open database file
Traceback (most recent call last):
File "/anaconda3/lib/python3.6/site-packages/notebook/services/contents/filemanager.py", line 470, in save
File "/anaconda3/lib/python3.6/site-packages/notebook/services/contents/manager.py", line 492, in check_and_sign
File "/anaconda3/lib/python3.6/site-packages/nbformat/sign.py", line 449, in sign
File "/anaconda3/lib/python3.6/site-packages/nbformat/sign.py", line 207, in store_signature
File "/anaconda3/lib/python3.6/site-packages/nbformat/sign.py", line 239, in check_signature
sqlite3.OperationalError: unable to open database file
[NotebookApp | WARNING] 500 PUT /api/contents/Exam1-Review.ipynb (::1): Unexpected error while saving file: Exam1-Review.ipynb unable to open database file
[NotebookApp | WARNING] Unexpected error while saving file: Exam1-Review.ipynb unable to open database file
[NotebookApp | ERROR] {
"Host": "localhost:8888",
"Connection": "keep-alive",
"Content-Length": "9490",
"Sec-Fetch-Mode": "cors",
"Origin": "http://localhost:8888",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36",
"Content-Type": "application/json",
"Accept": "application/json, text/javascript, */*; q=0.01",
"X-Requested-With": "XMLHttpRequest",
"X-Xsrftoken": "2|1b71b4a9|f726d001fd955fe187f22ccc9667c9a6|1570377811",
"Sec-Fetch-Site": "same-origin",
"Referer": "http://localhost:8888/notebooks/Exam1-Review.ipynb",
"Accept-Encoding": "gzip, deflate, br",
"Accept-Language": "en-US,en;q=0.9",
"Cookie": "_xsrf=2|1b71b4a9|f726d001fd955fe187f22ccc9667c9a6|1570377811; username-localhost-8888=\"2|1:0|10:1570629710|23:username-localhost-8888|44:MjQxZGFkZDJkY2ZlNDNjOWJjYjZkYTRjMjUzNjI4Mzg=|3e5e43159f4c888a8ce38a53f4e685a2bd724c694972e25216fdbd3a55a2582a\"; username-localhost-8890=\"2|1:0|10:1571073800|23:username-localhost-8890|44:MWVkYzZiNTEzZjNlNGE2MGE4MGYyNDQyMWE1MzUyZmM=|8c45abed8e5588858687bd9a1c1c9baa6c3d4f79746426b36de2ff70569977b1\""
}
[NotebookApp | ERROR] 500 PUT /api/contents/Exam1-Review.ipynb (::1) 19.21ms referer=http://localhost:8888/notebooks/Exam1-Review.ipynb
[NotebookApp | INFO] Kernel shutdown: e6f70f44-fec8-408e-b8cf-7e2e69ddd6f7
[NotebookApp | INFO] Kernel started: 60111d48-ab27-4024-997e-550f88062c3f
[NotebookApp | ERROR] Uncaught exception GET /api/kernels/60111d48-ab27-4024-997e-550f88062c3f/channels?session_id=bd9e6a36fd0e4e6a97ace8a8d34d197c (::1)
HTTPServerRequest(protocol='http', host='localhost:8888', method='GET', uri='/api/kernels/60111d48-ab27-4024-997e-550f88062c3f/channels?session_id=bd9e6a36fd0e4e6a97ace8a8d34d197c', version='HTTP/1.1', remote_ip='::1')
Traceback (most recent call last):
File "/anaconda3/lib/python3.6/site-packages/notebook/services/kernels/handlers.py", line 137, in request_kernel_info
future = kernel._kernel_info_future
AttributeError: 'IOLoopKernelManager' object has no attribute '_kernel_info_future'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/anaconda3/lib/python3.6/site-packages/tornado/web.py", line 1592, in _execute
result = yield result
File "/anaconda3/lib/python3.6/site-packages/tornado/gen.py", line 1133, in run
value = future.result()
File "/anaconda3/lib/python3.6/site-packages/tornado/gen.py", line 1141, in run
yielded = self.gen.throw(*exc_info)
File "/anaconda3/lib/python3.6/site-packages/notebook/services/kernels/handlers.py", line 239, in get
yield super(ZMQChannelsHandler, self).get(kernel_id=kernel_id)
File "/anaconda3/lib/python3.6/site-packages/tornado/gen.py", line 1133, in run
value = future.result()
File "/anaconda3/lib/python3.6/site-packages/tornado/gen.py", line 1141, in run
yielded = self.gen.throw(*exc_info)
File "/anaconda3/lib/python3.6/site-packages/notebook/base/zmqhandlers.py", line 291, in get
yield maybe_future(res)
File "/anaconda3/lib/python3.6/site-packages/tornado/gen.py", line 1133, in run
value = future.result()
File "/anaconda3/lib/python3.6/site-packages/tornado/gen.py", line 1147, in run
yielded = self.gen.send(value)
File "/anaconda3/lib/python3.6/site-packages/notebook/services/kernels/handlers.py", line 223, in pre_get
future = self.request_kernel_info()
File "/anaconda3/lib/python3.6/site-packages/notebook/services/kernels/handlers.py", line 143, in request_kernel_info
self.kernel_info_channel = km.connect_shell(self.kernel_id)
File "/anaconda3/lib/python3.6/site-packages/jupyter_client/multikernelmanager.py", line 33, in wrapped
r = method(*args, **kwargs)
File "/anaconda3/lib/python3.6/site-packages/jupyter_client/ioloop/manager.py", line 22, in wrapped
socket = f(self, *args, **kwargs)
File "/anaconda3/lib/python3.6/site-packages/jupyter_client/connect.py", line 559, in connect_shell
return self._create_connected_socket('shell', identity=identity)
File "/anaconda3/lib/python3.6/site-packages/jupyter_client/connect.py", line 543, in _create_connected_socket
sock = self.context.socket(socket_type)
File "/anaconda3/lib/python3.6/site-packages/zmq/sugar/context.py", line 146, in socket
s = self._socket_class(self, socket_type, **kwargs)
File "/anaconda3/lib/python3.6/site-packages/zmq/sugar/socket.py", line 59, in __init__
super(Socket, self).__init__(*a, **kw)
File "zmq/backend/cython/socket.pyx", line 328, in zmq.backend.cython.socket.Socket.__init__
zmq.error.ZMQError: Too many open files
[NotebookApp | ERROR] {
"Host": "localhost:8888",
"Connection": "Upgrade",
"Pragma": "no-cache",
"Cache-Control": "no-cache",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36",
"Upgrade": "websocket",
"Origin": "http://localhost:8888",
"Sec-Websocket-Version": "13",
"Accept-Encoding": "gzip, deflate, br",
"Accept-Language": "en-US,en;q=0.9",
"Cookie": "_xsrf=2|1b71b4a9|f726d001fd955fe187f22ccc9667c9a6|1570377811; username-localhost-8888=\"2|1:0|10:1570629710|23:username-localhost-8888|44:MjQxZGFkZDJkY2ZlNDNjOWJjYjZkYTRjMjUzNjI4Mzg=|3e5e43159f4c888a8ce38a53f4e685a2bd724c694972e25216fdbd3a55a2582a\"; username-localhost-8890=\"2|1:0|10:1571073800|23:username-localhost-8890|44:MWVkYzZiNTEzZjNlNGE2MGE4MGYyNDQyMWE1MzUyZmM=|8c45abed8e5588858687bd9a1c1c9baa6c3d4f79746426b36de2ff70569977b1\"",
"Sec-Websocket-Key": "Ro43RoPhDE+q8GOIFWM2mg==",
"Sec-Websocket-Extensions": "permessage-deflate; client_max_window_bits"
}
[NotebookApp | ERROR] 500 GET /api/kernels/60111d48-ab27-4024-997e-550f88062c3f/channels?session_id=bd9e6a36fd0e4e6a97ace8a8d34d197c (::1) 14.81ms referer=None
[NotebookApp | ERROR] Uncaught exception GET /static/base/images/favicon-busy-1.ico (::1)
HTTPServerRequest(protocol='http', host='localhost:8888', method='GET', uri='/static/base/images/favicon-busy-1.ico', version='HTTP/1.1', remote_ip='::1')
Traceback (most recent call last):
File "/anaconda3/lib/python3.6/site-packages/tornado/web.py", line 1592, in _execute
result = yield result
File "/anaconda3/lib/python3.6/site-packages/tornado/gen.py", line 1133, in run
value = future.result()
File "/anaconda3/lib/python3.6/site-packages/tornado/gen.py", line 326, in wrapper
yielded = next(result)
File "/anaconda3/lib/python3.6/site-packages/tornado/web.py", line 2525, in get
for chunk in content:
File "/anaconda3/lib/python3.6/site-packages/tornado/web.py", line 2678, in get_content
with open(abspath, "rb") as file:
OSError: [Errno 24] Too many open files: '/anaconda3/lib/python3.6/site-packages/notebook/static/base/images/favicon-busy-1.ico'
[NotebookApp | ERROR] Uncaught exception in write_error
Traceback (most recent call last):
File "/anaconda3/lib/python3.6/site-packages/tornado/web.py", line 1592, in _execute
result = yield result
File "/anaconda3/lib/python3.6/site-packages/tornado/gen.py", line 1133, in run
value = future.result()
File "/anaconda3/lib/python3.6/site-packages/tornado/gen.py", line 326, in wrapper
yielded = next(result)
File "/anaconda3/lib/python3.6/site-packages/tornado/web.py", line 2525, in get
for chunk in content:
File "/anaconda3/lib/python3.6/site-packages/tornado/web.py", line 2678, in get_content
with open(abspath, "rb") as file:
OSError: [Errno 24] Too many open files: '/anaconda3/lib/python3.6/site-packages/notebook/static/base/images/favicon-busy-1.ico'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/anaconda3/lib/python3.6/site-packages/tornado/web.py", line 1112, in send_error
self.write_error(status_code, **kwargs)
File "/anaconda3/lib/python3.6/site-packages/notebook/base/handlers.py", line 588, in write_error
File "/anaconda3/lib/python3.6/site-packages/notebook/base/handlers.py", line 518, in render_template
File "/anaconda3/lib/python3.6/site-packages/notebook/base/handlers.py", line 514, in get_template
File "/anaconda3/lib/python3.6/site-packages/jinja2/environment.py", line 830, in get_template
File "/anaconda3/lib/python3.6/site-packages/jinja2/environment.py", line 804, in _load_template
File "/anaconda3/lib/python3.6/site-packages/jinja2/loaders.py", line 113, in load
File "/anaconda3/lib/python3.6/site-packages/jinja2/loaders.py", line 171, in get_source
File "/anaconda3/lib/python3.6/site-packages/jinja2/utils.py", line 154, in open_if_exists
OSError: [Errno 24] Too many open files: '/anaconda3/lib/python3.6/site-packages/notebook/500.html'
[NotebookApp | ERROR] {
"Host": "localhost:8888",
"Connection": "keep-alive",
"Sec-Fetch-Mode": "no-cors",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36",
"Accept": "image/webp,image/apng,image/*,*/*;q=0.8",
"Sec-Fetch-Site": "same-origin",
"Referer": "http://localhost:8888/notebooks/08-Encodings.ipynb",
"Accept-Encoding": "gzip, deflate, br",
"Accept-Language": "en-US,en;q=0.9",
"Cookie": "_xsrf=2|1b71b4a9|f726d001fd955fe187f22ccc9667c9a6|1570377811; username-localhost-8888=\"2|1:0|10:1570629710|23:username-localhost-8888|44:MjQxZGFkZDJkY2ZlNDNjOWJjYjZkYTRjMjUzNjI4Mzg=|3e5e43159f4c888a8ce38a53f4e685a2bd724c694972e25216fdbd3a55a2582a\"; username-localhost-8890=\"2|1:0|10:1571073800|23:username-localhost-8890|44:MWVkYzZiNTEzZjNlNGE2MGE4MGYyNDQyMWE1MzUyZmM=|8c45abed8e5588858687bd9a1c1c9baa6c3d4f79746426b36de2ff70569977b1\""
}
[NotebookApp | ERROR] 500 GET /static/base/images/favicon-busy-1.ico (::1) 13.24ms referer=http://localhost:8888/notebooks/08-Encodings.ipynb
[NotebookApp | INFO] Kernel shutdown: 60111d48-ab27-4024-997e-550f88062c3f
[NotebookApp | INFO] Starting buffering for 222a33f1-4388-4627-aac9-5ff64841204a:e21fa174cd1549998c12b8ae1b7a674f
[NotebookApp | INFO] Kernel shutdown: 222a33f1-4388-4627-aac9-5ff64841204a
[NotebookApp | INFO] Starting buffering for c95d0b97-27a6-4aff-be0b-1e300eed0a69:347e8f42408e49da846ad15fdadcf3c6
[NotebookApp | INFO] Kernel shutdown: c95d0b97-27a6-4aff-be0b-1e300eed0a69
[NotebookApp | INFO] Saving file at /Exam2-Review.ipynb
[NotebookApp | INFO] Saving file at /Exam2-Review.ipynb
[NotebookApp | WARNING] 404 DELETE /api/sessions/30b7e597-b877-44f6-924b-bd65d9de94ee (::1): Session not found: session_id='30b7e597-b877-44f6-924b-bd65d9de94ee'
[NotebookApp | WARNING] Session not found: session_id='30b7e597-b877-44f6-924b-bd65d9de94ee'
[NotebookApp | WARNING] 404 DELETE /api/sessions/30b7e597-b877-44f6-924b-bd65d9de94ee (::1) 1.43ms referer=http://localhost:8888/notebooks/Exam2-Review.ipynb
[NotebookApp | INFO] Saving file at /Exam1-Review.ipynb
[NotebookApp | INFO] Starting buffering for 3943c47f-e6d8-4de3-9f66-2fce6019068a:529d278d482241cb8ae43f6f52c8cfdc
[NotebookApp | INFO] Kernel shutdown: 3943c47f-e6d8-4de3-9f66-2fce6019068a
[NotebookApp | INFO] Starting buffering for 96e8ac00-acf1-4fe2-8d4c-9544eaf627a1:e6010e2d645745a688dde037fbe509e4
[NotebookApp | INFO] Kernel shutdown: 96e8ac00-acf1-4fe2-8d4c-9544eaf627a1
[NotebookApp | INFO] Kernel started: 35980e70-b629-47f3-8870-f4ef4947c999
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 35980e70-b629-47f3-8870-f4ef4947c999) to 5.3 (client).
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Starting buffering for 35980e70-b629-47f3-8870-f4ef4947c999:6a3a9b3db17548c2953f2a984bf3b56d
[NotebookApp | INFO] Kernel shutdown: 35980e70-b629-47f3-8870-f4ef4947c999
[NotebookApp | INFO] Saving file at /Exam1-Review.ipynb
[NotebookApp | INFO] Saving file at /Exam1-Review.ipynb
[NotebookApp | INFO] Starting buffering for 7ab065fa-c764-43b6-a208-e2a5aa7f2a35:58ef899bfdf945aeace85fcb512d69a4
[NotebookApp | INFO] Kernel shutdown: 7ab065fa-c764-43b6-a208-e2a5aa7f2a35
[NotebookApp | INFO] Saving file at /06-DataTypes.ipynb
[NotebookApp | INFO] Starting buffering for 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3:8a6963646cef4c6988284945146cf6b6
[NotebookApp | INFO] Kernel shutdown: 6cdc7816-c405-4d4b-bc5c-c3aa03a530b3
[NotebookApp | INFO] Kernel started: d22f6f5d-740b-40e4-8d6f-49c17f075671
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel d22f6f5d-740b-40e4-8d6f-49c17f075671) to 5.3 (client).
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Kernel started: a4371d42-4ed7-422a-9727-2c8a4ff186af
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel a4371d42-4ed7-422a-9727-2c8a4ff186af) to 5.3 (client).
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Starting buffering for a4371d42-4ed7-422a-9727-2c8a4ff186af:5d040531f61d4066a5184f3e9e9b61d8
[NotebookApp | INFO] Starting buffering for d22f6f5d-740b-40e4-8d6f-49c17f075671:f1db2c6e53554cc080fc1cc8dc3306bc
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel d22f6f5d-740b-40e4-8d6f-49c17f075671) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for d22f6f5d-740b-40e4-8d6f-49c17f075671:f1db2c6e53554cc080fc1cc8dc3306bc
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel a4371d42-4ed7-422a-9727-2c8a4ff186af) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for a4371d42-4ed7-422a-9727-2c8a4ff186af:5d040531f61d4066a5184f3e9e9b61d8
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for a4371d42-4ed7-422a-9727-2c8a4ff186af:5d040531f61d4066a5184f3e9e9b61d8
[NotebookApp | INFO] Starting buffering for d22f6f5d-740b-40e4-8d6f-49c17f075671:f1db2c6e53554cc080fc1cc8dc3306bc
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel a4371d42-4ed7-422a-9727-2c8a4ff186af) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for a4371d42-4ed7-422a-9727-2c8a4ff186af:5d040531f61d4066a5184f3e9e9b61d8
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel d22f6f5d-740b-40e4-8d6f-49c17f075671) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for d22f6f5d-740b-40e4-8d6f-49c17f075671:f1db2c6e53554cc080fc1cc8dc3306bc
[NotebookApp | INFO] Starting buffering for d22f6f5d-740b-40e4-8d6f-49c17f075671:f1db2c6e53554cc080fc1cc8dc3306bc
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for a4371d42-4ed7-422a-9727-2c8a4ff186af:5d040531f61d4066a5184f3e9e9b61d8
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel d22f6f5d-740b-40e4-8d6f-49c17f075671) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for d22f6f5d-740b-40e4-8d6f-49c17f075671:f1db2c6e53554cc080fc1cc8dc3306bc
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel a4371d42-4ed7-422a-9727-2c8a4ff186af) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for a4371d42-4ed7-422a-9727-2c8a4ff186af:5d040531f61d4066a5184f3e9e9b61d8
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Starting buffering for a4371d42-4ed7-422a-9727-2c8a4ff186af:5d040531f61d4066a5184f3e9e9b61d8
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for d22f6f5d-740b-40e4-8d6f-49c17f075671:f1db2c6e53554cc080fc1cc8dc3306bc
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel a4371d42-4ed7-422a-9727-2c8a4ff186af) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for a4371d42-4ed7-422a-9727-2c8a4ff186af:5d040531f61d4066a5184f3e9e9b61d8
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel d22f6f5d-740b-40e4-8d6f-49c17f075671) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for d22f6f5d-740b-40e4-8d6f-49c17f075671:f1db2c6e53554cc080fc1cc8dc3306bc
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for d22f6f5d-740b-40e4-8d6f-49c17f075671:f1db2c6e53554cc080fc1cc8dc3306bc
[NotebookApp | INFO] Starting buffering for a4371d42-4ed7-422a-9727-2c8a4ff186af:5d040531f61d4066a5184f3e9e9b61d8
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel a4371d42-4ed7-422a-9727-2c8a4ff186af) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for a4371d42-4ed7-422a-9727-2c8a4ff186af:5d040531f61d4066a5184f3e9e9b61d8
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel d22f6f5d-740b-40e4-8d6f-49c17f075671) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for d22f6f5d-740b-40e4-8d6f-49c17f075671:f1db2c6e53554cc080fc1cc8dc3306bc
[NotebookApp | INFO] Starting buffering for d22f6f5d-740b-40e4-8d6f-49c17f075671:f1db2c6e53554cc080fc1cc8dc3306bc
[NotebookApp | INFO] Starting buffering for a4371d42-4ed7-422a-9727-2c8a4ff186af:5d040531f61d4066a5184f3e9e9b61d8
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel d22f6f5d-740b-40e4-8d6f-49c17f075671) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for d22f6f5d-740b-40e4-8d6f-49c17f075671:f1db2c6e53554cc080fc1cc8dc3306bc
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel a4371d42-4ed7-422a-9727-2c8a4ff186af) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for a4371d42-4ed7-422a-9727-2c8a4ff186af:5d040531f61d4066a5184f3e9e9b61d8
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Kernel started: 6d69a5be-1f69-4b0c-bff4-4d5ba98003fb
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 6d69a5be-1f69-4b0c-bff4-4d5ba98003fb) to 5.3 (client).
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Saving file at /05-Conditionals.ipynb
[NotebookApp | INFO] Starting buffering for 6d69a5be-1f69-4b0c-bff4-4d5ba98003fb:bc1be88bd64047fa9558bc0b7d5dea68
[NotebookApp | INFO] Kernel shutdown: 6d69a5be-1f69-4b0c-bff4-4d5ba98003fb
[NotebookApp | INFO] Starting buffering for a4371d42-4ed7-422a-9727-2c8a4ff186af:5d040531f61d4066a5184f3e9e9b61d8
[NotebookApp | INFO] Kernel shutdown: a4371d42-4ed7-422a-9727-2c8a4ff186af
[NotebookApp | INFO] Kernel started: defcafd9-fbe8-4639-b50e-e9ace995296a
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel defcafd9-fbe8-4639-b50e-e9ace995296a) to 5.3 (client).
[NotebookApp | INFO] Saving file at /03-Variables.ipynb
[NotebookApp | INFO] Starting buffering for defcafd9-fbe8-4639-b50e-e9ace995296a:7d9b35f7e1224e7e8ee30264d1c270f7
[NotebookApp | INFO] Kernel shutdown: defcafd9-fbe8-4639-b50e-e9ace995296a
[NotebookApp | INFO] Kernel started: fe9d25c7-ab92-4922-a3c5-74a84638b29a
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel fe9d25c7-ab92-4922-a3c5-74a84638b29a) to 5.3 (client).
[NotebookApp | INFO] Starting buffering for fe9d25c7-ab92-4922-a3c5-74a84638b29a:5c39cf49eee648fab1b67dd10b8d0ae7
[NotebookApp | INFO] Kernel shutdown: fe9d25c7-ab92-4922-a3c5-74a84638b29a
[NotebookApp | INFO] Kernel started: 1c85b658-c9ee-4acb-b528-2d9b708b4d58
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 1c85b658-c9ee-4acb-b528-2d9b708b4d58) to 5.3 (client).
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Saving file at /E1-Answers.ipynb
[NotebookApp | INFO] Starting buffering for d22f6f5d-740b-40e4-8d6f-49c17f075671:f1db2c6e53554cc080fc1cc8dc3306bc
[NotebookApp | INFO] Kernel shutdown: d22f6f5d-740b-40e4-8d6f-49c17f075671
[NotebookApp | INFO] Kernel started: b8a2d1f3-f1f5-4f27-ac99-38fa511a766e
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel b8a2d1f3-f1f5-4f27-ac99-38fa511a766e) to 5.3 (client).
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Kernel started: e0d83443-1fe4-43de-8780-baa09ca2989a
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel e0d83443-1fe4-43de-8780-baa09ca2989a) to 5.3 (client).
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | ERROR] Error while saving file: 08-Encodings.ipynb unable to open database file
Traceback (most recent call last):
File "/anaconda3/lib/python3.6/site-packages/notebook/services/contents/filemanager.py", line 470, in save
File "/anaconda3/lib/python3.6/site-packages/notebook/services/contents/manager.py", line 492, in check_and_sign
File "/anaconda3/lib/python3.6/site-packages/nbformat/sign.py", line 449, in sign
File "/anaconda3/lib/python3.6/site-packages/nbformat/sign.py", line 211, in store_signature
sqlite3.OperationalError: unable to open database file
[NotebookApp | WARNING] 500 PUT /api/contents/08-Encodings.ipynb (::1): Unexpected error while saving file: 08-Encodings.ipynb unable to open database file
[NotebookApp | WARNING] Unexpected error while saving file: 08-Encodings.ipynb unable to open database file
[NotebookApp | ERROR] {
"Host": "localhost:8888",
"Connection": "keep-alive",
"Content-Length": "19775",
"Sec-Fetch-Mode": "cors",
"Origin": "http://localhost:8888",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36",
"Content-Type": "application/json",
"Accept": "application/json, text/javascript, */*; q=0.01",
"X-Requested-With": "XMLHttpRequest",
"X-Xsrftoken": "2|1b71b4a9|f726d001fd955fe187f22ccc9667c9a6|1570377811",
"Sec-Fetch-Site": "same-origin",
"Referer": "http://localhost:8888/notebooks/08-Encodings.ipynb",
"Accept-Encoding": "gzip, deflate, br",
"Accept-Language": "en-US,en;q=0.9",
"Cookie": "_xsrf=2|1b71b4a9|f726d001fd955fe187f22ccc9667c9a6|1570377811; username-localhost-8888=\"2|1:0|10:1570629710|23:username-localhost-8888|44:MjQxZGFkZDJkY2ZlNDNjOWJjYjZkYTRjMjUzNjI4Mzg=|3e5e43159f4c888a8ce38a53f4e685a2bd724c694972e25216fdbd3a55a2582a\"; username-localhost-8890=\"2|1:0|10:1571073800|23:username-localhost-8890|44:MWVkYzZiNTEzZjNlNGE2MGE4MGYyNDQyMWE1MzUyZmM=|8c45abed8e5588858687bd9a1c1c9baa6c3d4f79746426b36de2ff70569977b1\""
}
[NotebookApp | ERROR] 500 PUT /api/contents/08-Encodings.ipynb (::1) 8.07ms referer=http://localhost:8888/notebooks/08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /09-FunctionsI.ipynb
[NotebookApp | ERROR] Error while saving file: 09-FunctionsI.ipynb unable to open database file
Traceback (most recent call last):
File "/anaconda3/lib/python3.6/site-packages/notebook/services/contents/filemanager.py", line 470, in save
File "/anaconda3/lib/python3.6/site-packages/notebook/services/contents/manager.py", line 492, in check_and_sign
File "/anaconda3/lib/python3.6/site-packages/nbformat/sign.py", line 449, in sign
File "/anaconda3/lib/python3.6/site-packages/nbformat/sign.py", line 211, in store_signature
sqlite3.OperationalError: unable to open database file
[NotebookApp | WARNING] 500 PUT /api/contents/09-FunctionsI.ipynb (::1): Unexpected error while saving file: 09-FunctionsI.ipynb unable to open database file
[NotebookApp | WARNING] Unexpected error while saving file: 09-FunctionsI.ipynb unable to open database file
[NotebookApp | ERROR] {
"Host": "localhost:8888",
"Connection": "keep-alive",
"Content-Length": "20739",
"Sec-Fetch-Mode": "cors",
"Origin": "http://localhost:8888",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36",
"Content-Type": "application/json",
"Accept": "application/json, text/javascript, */*; q=0.01",
"X-Requested-With": "XMLHttpRequest",
"X-Xsrftoken": "2|1b71b4a9|f726d001fd955fe187f22ccc9667c9a6|1570377811",
"Sec-Fetch-Site": "same-origin",
"Referer": "http://localhost:8888/notebooks/09-FunctionsI.ipynb",
"Accept-Encoding": "gzip, deflate, br",
"Accept-Language": "en-US,en;q=0.9",
"Cookie": "_xsrf=2|1b71b4a9|f726d001fd955fe187f22ccc9667c9a6|1570377811; username-localhost-8888=\"2|1:0|10:1570629710|23:username-localhost-8888|44:MjQxZGFkZDJkY2ZlNDNjOWJjYjZkYTRjMjUzNjI4Mzg=|3e5e43159f4c888a8ce38a53f4e685a2bd724c694972e25216fdbd3a55a2582a\"; username-localhost-8890=\"2|1:0|10:1571073800|23:username-localhost-8890|44:MWVkYzZiNTEzZjNlNGE2MGE4MGYyNDQyMWE1MzUyZmM=|8c45abed8e5588858687bd9a1c1c9baa6c3d4f79746426b36de2ff70569977b1\""
}
[NotebookApp | ERROR] 500 PUT /api/contents/09-FunctionsI.ipynb (::1) 7.51ms referer=http://localhost:8888/notebooks/09-FunctionsI.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | ERROR] Error while saving file: 08-Encodings.ipynb unable to open database file
Traceback (most recent call last):
File "/anaconda3/lib/python3.6/site-packages/notebook/services/contents/filemanager.py", line 470, in save
File "/anaconda3/lib/python3.6/site-packages/notebook/services/contents/manager.py", line 492, in check_and_sign
File "/anaconda3/lib/python3.6/site-packages/nbformat/sign.py", line 449, in sign
File "/anaconda3/lib/python3.6/site-packages/nbformat/sign.py", line 211, in store_signature
sqlite3.OperationalError: unable to open database file
[NotebookApp | WARNING] 500 PUT /api/contents/08-Encodings.ipynb (::1): Unexpected error while saving file: 08-Encodings.ipynb unable to open database file
[NotebookApp | WARNING] Unexpected error while saving file: 08-Encodings.ipynb unable to open database file
[NotebookApp | ERROR] {
"Host": "localhost:8888",
"Connection": "keep-alive",
"Content-Length": "19775",
"Sec-Fetch-Mode": "cors",
"Origin": "http://localhost:8888",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36",
"Content-Type": "application/json",
"Accept": "application/json, text/javascript, */*; q=0.01",
"X-Requested-With": "XMLHttpRequest",
"X-Xsrftoken": "2|1b71b4a9|f726d001fd955fe187f22ccc9667c9a6|1570377811",
"Sec-Fetch-Site": "same-origin",
"Referer": "http://localhost:8888/notebooks/08-Encodings.ipynb",
"Accept-Encoding": "gzip, deflate, br",
"Accept-Language": "en-US,en;q=0.9",
"Cookie": "_xsrf=2|1b71b4a9|f726d001fd955fe187f22ccc9667c9a6|1570377811; username-localhost-8888=\"2|1:0|10:1570629710|23:username-localhost-8888|44:MjQxZGFkZDJkY2ZlNDNjOWJjYjZkYTRjMjUzNjI4Mzg=|3e5e43159f4c888a8ce38a53f4e685a2bd724c694972e25216fdbd3a55a2582a\"; username-localhost-8890=\"2|1:0|10:1571073800|23:username-localhost-8890|44:MWVkYzZiNTEzZjNlNGE2MGE4MGYyNDQyMWE1MzUyZmM=|8c45abed8e5588858687bd9a1c1c9baa6c3d4f79746426b36de2ff70569977b1\""
}
[NotebookApp | ERROR] 500 PUT /api/contents/08-Encodings.ipynb (::1) 4.31ms referer=http://localhost:8888/notebooks/08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /09-FunctionsI.ipynb
[NotebookApp | ERROR] Error while saving file: 09-FunctionsI.ipynb unable to open database file
Traceback (most recent call last):
File "/anaconda3/lib/python3.6/site-packages/notebook/services/contents/filemanager.py", line 470, in save
File "/anaconda3/lib/python3.6/site-packages/notebook/services/contents/manager.py", line 492, in check_and_sign
File "/anaconda3/lib/python3.6/site-packages/nbformat/sign.py", line 449, in sign
File "/anaconda3/lib/python3.6/site-packages/nbformat/sign.py", line 211, in store_signature
sqlite3.OperationalError: unable to open database file
[NotebookApp | WARNING] 500 PUT /api/contents/09-FunctionsI.ipynb (::1): Unexpected error while saving file: 09-FunctionsI.ipynb unable to open database file
[NotebookApp | WARNING] Unexpected error while saving file: 09-FunctionsI.ipynb unable to open database file
[NotebookApp | ERROR] {
"Host": "localhost:8888",
"Connection": "keep-alive",
"Content-Length": "20739",
"Sec-Fetch-Mode": "cors",
"Origin": "http://localhost:8888",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36",
"Content-Type": "application/json",
"Accept": "application/json, text/javascript, */*; q=0.01",
"X-Requested-With": "XMLHttpRequest",
"X-Xsrftoken": "2|1b71b4a9|f726d001fd955fe187f22ccc9667c9a6|1570377811",
"Sec-Fetch-Site": "same-origin",
"Referer": "http://localhost:8888/notebooks/09-FunctionsI.ipynb",
"Accept-Encoding": "gzip, deflate, br",
"Accept-Language": "en-US,en;q=0.9",
"Cookie": "_xsrf=2|1b71b4a9|f726d001fd955fe187f22ccc9667c9a6|1570377811; username-localhost-8888=\"2|1:0|10:1570629710|23:username-localhost-8888|44:MjQxZGFkZDJkY2ZlNDNjOWJjYjZkYTRjMjUzNjI4Mzg=|3e5e43159f4c888a8ce38a53f4e685a2bd724c694972e25216fdbd3a55a2582a\"; username-localhost-8890=\"2|1:0|10:1571073800|23:username-localhost-8890|44:MWVkYzZiNTEzZjNlNGE2MGE4MGYyNDQyMWE1MzUyZmM=|8c45abed8e5588858687bd9a1c1c9baa6c3d4f79746426b36de2ff70569977b1\""
}
[NotebookApp | ERROR] 500 PUT /api/contents/09-FunctionsI.ipynb (::1) 4.47ms referer=http://localhost:8888/notebooks/09-FunctionsI.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /09-FunctionsI.ipynb
[NotebookApp | INFO] Starting buffering for e0d83443-1fe4-43de-8780-baa09ca2989a:752066e45d674a2ea52b888438099cda
[NotebookApp | INFO] Starting buffering for 1c85b658-c9ee-4acb-b528-2d9b708b4d58:afec62487d9d4d0a852e180b278443e7
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for b8a2d1f3-f1f5-4f27-ac99-38fa511a766e:275d2a12433c45728bec8b1f61334a11
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel e0d83443-1fe4-43de-8780-baa09ca2989a) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for e0d83443-1fe4-43de-8780-baa09ca2989a:752066e45d674a2ea52b888438099cda
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 1c85b658-c9ee-4acb-b528-2d9b708b4d58) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 1c85b658-c9ee-4acb-b528-2d9b708b4d58:afec62487d9d4d0a852e180b278443e7
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel b8a2d1f3-f1f5-4f27-ac99-38fa511a766e) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for b8a2d1f3-f1f5-4f27-ac99-38fa511a766e:275d2a12433c45728bec8b1f61334a11
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Starting buffering for b8a2d1f3-f1f5-4f27-ac99-38fa511a766e:275d2a12433c45728bec8b1f61334a11
[NotebookApp | INFO] Kernel restarted: b8a2d1f3-f1f5-4f27-ac99-38fa511a766e
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel b8a2d1f3-f1f5-4f27-ac99-38fa511a766e) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for b8a2d1f3-f1f5-4f27-ac99-38fa511a766e:275d2a12433c45728bec8b1f61334a11
[NotebookApp | INFO] Replaying 6 buffered messages
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Starting buffering for e0d83443-1fe4-43de-8780-baa09ca2989a:752066e45d674a2ea52b888438099cda
[NotebookApp | INFO] Kernel shutdown: e0d83443-1fe4-43de-8780-baa09ca2989a
[NotebookApp | INFO] Starting buffering for b8a2d1f3-f1f5-4f27-ac99-38fa511a766e:275d2a12433c45728bec8b1f61334a11
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for 1c85b658-c9ee-4acb-b528-2d9b708b4d58:afec62487d9d4d0a852e180b278443e7
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel b8a2d1f3-f1f5-4f27-ac99-38fa511a766e) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for b8a2d1f3-f1f5-4f27-ac99-38fa511a766e:275d2a12433c45728bec8b1f61334a11
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 1c85b658-c9ee-4acb-b528-2d9b708b4d58) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 1c85b658-c9ee-4acb-b528-2d9b708b4d58:afec62487d9d4d0a852e180b278443e7
[NotebookApp | INFO] Starting buffering for 1c85b658-c9ee-4acb-b528-2d9b708b4d58:afec62487d9d4d0a852e180b278443e7
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for b8a2d1f3-f1f5-4f27-ac99-38fa511a766e:275d2a12433c45728bec8b1f61334a11
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 1c85b658-c9ee-4acb-b528-2d9b708b4d58) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 1c85b658-c9ee-4acb-b528-2d9b708b4d58:afec62487d9d4d0a852e180b278443e7
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel b8a2d1f3-f1f5-4f27-ac99-38fa511a766e) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for b8a2d1f3-f1f5-4f27-ac99-38fa511a766e:275d2a12433c45728bec8b1f61334a11
[NotebookApp | WARNING] 404 GET /notebooks/08-Encodings.css (::1): No such file or directory: 08-Encodings.css
[NotebookApp | WARNING] 404 GET /notebooks/08-Encodings.css (::1) 2.96ms referer=http://localhost:8888/notebooks/08-Encodings.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1): No such file or directory: rise.css
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1) 1.84ms referer=http://localhost:8888/notebooks/08-Encodings.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1): No such file or directory: rise.css
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1) 2.05ms referer=http://localhost:8888/notebooks/07-Loops.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/07-Loops.css (::1): No such file or directory: 07-Loops.css
[NotebookApp | WARNING] 404 GET /notebooks/07-Loops.css (::1) 1.20ms referer=http://localhost:8888/notebooks/07-Loops.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1): No such file or directory: rise.css
[NotebookApp | WARNING] 404 GET /notebooks/rise.css (::1) 2.59ms referer=http://localhost:8888/notebooks/07-Loops.ipynb
[NotebookApp | WARNING] 404 GET /notebooks/07-Loops.css (::1): No such file or directory: 07-Loops.css
[NotebookApp | WARNING] 404 GET /notebooks/07-Loops.css (::1) 2.27ms referer=http://localhost:8888/notebooks/07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /07-Loops.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Saving file at /08-Encodings.ipynb
[NotebookApp | INFO] Starting buffering for b8a2d1f3-f1f5-4f27-ac99-38fa511a766e:275d2a12433c45728bec8b1f61334a11
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for 1c85b658-c9ee-4acb-b528-2d9b708b4d58:afec62487d9d4d0a852e180b278443e7
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel b8a2d1f3-f1f5-4f27-ac99-38fa511a766e) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for b8a2d1f3-f1f5-4f27-ac99-38fa511a766e:275d2a12433c45728bec8b1f61334a11
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 14fe1e40-48fc-4eb1-87d4-0f341113f63b) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 1c85b658-c9ee-4acb-b528-2d9b708b4d58) to 5.3 (client).
[NotebookApp | INFO] Restoring connection for 1c85b658-c9ee-4acb-b528-2d9b708b4d58:afec62487d9d4d0a852e180b278443e7
[NotebookApp | INFO] Starting buffering for 1c85b658-c9ee-4acb-b528-2d9b708b4d58:afec62487d9d4d0a852e180b278443e7
[NotebookApp | INFO] Starting buffering for 14fe1e40-48fc-4eb1-87d4-0f341113f63b:50dd69180d2846688ad6442f393c3a99
[NotebookApp | INFO] Starting buffering for b8a2d1f3-f1f5-4f27-ac99-38fa511a766e:275d2a12433c45728bec8b1f61334a11
[NotebookApp | INFO] Adapting from protocol version 5.1 (kernel 1c85b658-c9ee-4acb-b528-2d9b708b4d58) to 5.3 (client).