-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspider_log.log
2899 lines (2899 loc) · 248 KB
/
spider_log.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
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/10.html?client=cpb&type=1 HTTP/1.1" 200 2181
INFO:root:I am downloading book number 9140 page 11
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/11.html?client=cpb&type=1 HTTP/1.1" 200 4523
INFO:root:I am downloading book number 9140 page 12
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/12.html?client=cpb&type=1 HTTP/1.1" 200 4785
INFO:root:I am downloading book number 9140 page 13
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/13.html?client=cpb&type=1 HTTP/1.1" 200 5949
INFO:root:I am downloading book number 9140 page 14
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/14.html?client=cpb&type=1 HTTP/1.1" 200 5109
INFO:root:I am downloading book number 9140 page 15
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/15.html?client=cpb&type=1 HTTP/1.1" 200 4856
INFO:root:I am downloading book number 9140 page 16
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/16.html?client=cpb&type=1 HTTP/1.1" 200 1526
INFO:root:I am downloading book number 9140 page 17
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/17.html?client=cpb&type=1 HTTP/1.1" 200 5332
INFO:root:I am downloading book number 9140 page 18
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/18.html?client=cpb&type=1 HTTP/1.1" 200 3767
INFO:root:I am downloading book number 9140 page 19
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/19.html?client=cpb&type=1 HTTP/1.1" 200 4884
INFO:root:I am downloading book number 9140 page 20
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/20.html?client=cpb&type=1 HTTP/1.1" 200 8679
INFO:root:I am downloading book number 9140 page 21
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/21.html?client=cpb&type=1 HTTP/1.1" 200 6052
INFO:root:I am downloading book number 9140 page 22
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/22.html?client=cpb&type=1 HTTP/1.1" 200 9089
INFO:root:I am downloading book number 9140 page 23
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/23.html?client=cpb&type=1 HTTP/1.1" 200 5460
INFO:root:I am downloading book number 9140 page 24
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/24.html?client=cpb&type=1 HTTP/1.1" 200 5694
INFO:root:I am downloading book number 9140 page 25
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/25.html?client=cpb&type=1 HTTP/1.1" 200 5978
INFO:root:I am downloading book number 9140 page 26
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/26.html?client=cpb&type=1 HTTP/1.1" 200 7719
INFO:root:I am downloading book number 9140 page 27
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/27.html?client=cpb&type=1 HTTP/1.1" 200 6068
INFO:root:I am downloading book number 9140 page 28
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/28.html?client=cpb&type=1 HTTP/1.1" 200 5268
INFO:root:I am downloading book number 9140 page 29
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/29.html?client=cpb&type=1 HTTP/1.1" 200 6593
INFO:root:I am downloading book number 9140 page 30
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/30.html?client=cpb&type=1 HTTP/1.1" 200 7410
INFO:root:I am downloading book number 9140 page 31
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/31.html?client=cpb&type=1 HTTP/1.1" 200 7721
INFO:root:I am downloading book number 9140 page 32
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/32.html?client=cpb&type=1 HTTP/1.1" 200 6173
INFO:root:I am downloading book number 9140 page 33
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/33.html?client=cpb&type=1 HTTP/1.1" 200 6141
INFO:root:I am downloading book number 9140 page 34
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/34.html?client=cpb&type=1 HTTP/1.1" 200 6209
INFO:root:I am downloading book number 9140 page 35
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/35.html?client=cpb&type=1 HTTP/1.1" 200 7316
INFO:root:I am downloading book number 9140 page 36
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/36.html?client=cpb&type=1 HTTP/1.1" 200 7183
INFO:root:I am downloading book number 9140 page 37
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/37.html?client=cpb&type=1 HTTP/1.1" 200 5484
INFO:root:I am downloading book number 9140 page 38
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/38.html?client=cpb&type=1 HTTP/1.1" 200 6531
INFO:root:I am downloading book number 9140 page 39
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/39.html?client=cpb&type=1 HTTP/1.1" 200 7794
INFO:root:I am downloading book number 9140 page 40
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/40.html?client=cpb&type=1 HTTP/1.1" 200 8255
INFO:root:I am downloading book number 9140 page 41
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/41.html?client=cpb&type=1 HTTP/1.1" 200 6606
INFO:root:I am downloading book number 9140 page 42
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/42.html?client=cpb&type=1 HTTP/1.1" 200 6361
INFO:root:I am downloading book number 9140 page 43
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/43.html?client=cpb&type=1 HTTP/1.1" 200 6189
INFO:root:I am downloading book number 9140 page 44
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/44.html?client=cpb&type=1 HTTP/1.1" 200 7635
INFO:root:I am downloading book number 9140 page 45
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/45.html?client=cpb&type=1 HTTP/1.1" 200 5754
INFO:root:I am downloading book number 9140 page 46
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/46.html?client=cpb&type=1 HTTP/1.1" 200 6859
INFO:root:I am downloading book number 9140 page 47
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/47.html?client=cpb&type=1 HTTP/1.1" 200 5463
INFO:root:I am downloading book number 9140 page 48
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/48.html?client=cpb&type=1 HTTP/1.1" 200 7522
INFO:root:I am downloading book number 9140 page 49
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/49.html?client=cpb&type=1 HTTP/1.1" 200 5112
INFO:root:I am downloading book number 9140 page 50
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/0.html?client=cpb&type=1 HTTP/1.1" 200 1449
INFO:root:I am downloading book number 9140 page 1
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/1.html?client=cpb&type=1 HTTP/1.1" 200 2985
INFO:root:I am downloading book number 9140 page 2
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/2.html?client=cpb&type=1 HTTP/1.1" 200 5526
INFO:root:I am downloading book number 9140 page 3
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/3.html?client=cpb&type=1 HTTP/1.1" 200 6047
INFO:root:I am downloading book number 9140 page 4
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/4.html?client=cpb&type=1 HTTP/1.1" 200 5276
INFO:root:I am downloading book number 9140 page 5
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/5.html?client=cpb&type=1 HTTP/1.1" 200 4982
INFO:root:I am downloading book number 9140 page 6
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/6.html?client=cpb&type=1 HTTP/1.1" 200 9247
INFO:root:I am downloading book number 9140 page 7
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/7.html?client=cpb&type=1 HTTP/1.1" 200 7497
INFO:root:I am downloading book number 9140 page 8
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/8.html?client=cpb&type=1 HTTP/1.1" 200 9939
INFO:root:I am downloading book number 9140 page 9
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/9.html?client=cpb&type=1 HTTP/1.1" 200 9034
INFO:root:I am downloading book number 9140 page 10
INFO:root:Start downloading book 9140, start from page 0, to page 10
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/0.html?client=cpb&type=1 HTTP/1.1" 200 1449
INFO:root:I am downloading book number 9140 page 1
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/1.html?client=cpb&type=1 HTTP/1.1" 200 2985
INFO:root:I am downloading book number 9140 page 2
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/2.html?client=cpb&type=1 HTTP/1.1" 200 5526
INFO:root:I am downloading book number 9140 page 3
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/3.html?client=cpb&type=1 HTTP/1.1" 200 6047
INFO:root:I am downloading book number 9140 page 4
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/4.html?client=cpb&type=1 HTTP/1.1" 200 5276
INFO:root:I am downloading book number 9140 page 5
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/5.html?client=cpb&type=1 HTTP/1.1" 200 4982
INFO:root:I am downloading book number 9140 page 6
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/6.html?client=cpb&type=1 HTTP/1.1" 200 9247
INFO:root:I am downloading book number 9140 page 7
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/7.html?client=cpb&type=1 HTTP/1.1" 200 7497
INFO:root:I am downloading book number 9140 page 8
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/8.html?client=cpb&type=1 HTTP/1.1" 200 9939
INFO:root:I am downloading book number 9140 page 9
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/9.html?client=cpb&type=1 HTTP/1.1" 200 9034
INFO:root:I am downloading book number 9140 page 10
INFO:root:Start downloading book 9140, start from page 0, to page 200
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/0.html?client=cpb&type=1 HTTP/1.1" 200 1449
INFO:root:I am downloading book number 9140 page 1
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/1.html?client=cpb&type=1 HTTP/1.1" 200 2985
INFO:root:I am downloading book number 9140 page 2
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/2.html?client=cpb&type=1 HTTP/1.1" 200 5526
INFO:root:I am downloading book number 9140 page 3
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/3.html?client=cpb&type=1 HTTP/1.1" 200 6047
INFO:root:I am downloading book number 9140 page 4
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/4.html?client=cpb&type=1 HTTP/1.1" 200 5276
INFO:root:I am downloading book number 9140 page 5
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/5.html?client=cpb&type=1 HTTP/1.1" 200 4982
INFO:root:I am downloading book number 9140 page 6
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/6.html?client=cpb&type=1 HTTP/1.1" 200 9247
INFO:root:I am downloading book number 9140 page 7
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/7.html?client=cpb&type=1 HTTP/1.1" 200 7497
INFO:root:I am downloading book number 9140 page 8
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/8.html?client=cpb&type=1 HTTP/1.1" 200 9939
INFO:root:I am downloading book number 9140 page 9
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/9.html?client=cpb&type=1 HTTP/1.1" 200 9034
INFO:root:I am downloading book number 9140 page 10
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/10.html?client=cpb&type=1 HTTP/1.1" 200 2181
INFO:root:I am downloading book number 9140 page 11
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/11.html?client=cpb&type=1 HTTP/1.1" 200 4523
INFO:root:I am downloading book number 9140 page 12
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/12.html?client=cpb&type=1 HTTP/1.1" 200 4785
INFO:root:I am downloading book number 9140 page 13
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/13.html?client=cpb&type=1 HTTP/1.1" 200 5949
INFO:root:I am downloading book number 9140 page 14
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/14.html?client=cpb&type=1 HTTP/1.1" 200 5109
INFO:root:I am downloading book number 9140 page 15
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/15.html?client=cpb&type=1 HTTP/1.1" 200 4856
INFO:root:I am downloading book number 9140 page 16
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/16.html?client=cpb&type=1 HTTP/1.1" 200 1526
INFO:root:I am downloading book number 9140 page 17
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/17.html?client=cpb&type=1 HTTP/1.1" 200 5332
INFO:root:I am downloading book number 9140 page 18
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/18.html?client=cpb&type=1 HTTP/1.1" 200 3767
INFO:root:I am downloading book number 9140 page 19
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/19.html?client=cpb&type=1 HTTP/1.1" 200 4884
INFO:root:I am downloading book number 9140 page 20
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/20.html?client=cpb&type=1 HTTP/1.1" 200 8679
INFO:root:I am downloading book number 9140 page 21
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/21.html?client=cpb&type=1 HTTP/1.1" 200 6052
INFO:root:I am downloading book number 9140 page 22
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/22.html?client=cpb&type=1 HTTP/1.1" 200 9089
INFO:root:I am downloading book number 9140 page 23
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/23.html?client=cpb&type=1 HTTP/1.1" 200 5460
INFO:root:I am downloading book number 9140 page 24
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/24.html?client=cpb&type=1 HTTP/1.1" 200 5694
INFO:root:I am downloading book number 9140 page 25
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/25.html?client=cpb&type=1 HTTP/1.1" 200 5978
INFO:root:I am downloading book number 9140 page 26
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/26.html?client=cpb&type=1 HTTP/1.1" 200 7719
INFO:root:I am downloading book number 9140 page 27
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/27.html?client=cpb&type=1 HTTP/1.1" 200 6068
INFO:root:I am downloading book number 9140 page 28
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/28.html?client=cpb&type=1 HTTP/1.1" 200 5268
INFO:root:I am downloading book number 9140 page 29
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/29.html?client=cpb&type=1 HTTP/1.1" 200 6593
INFO:root:I am downloading book number 9140 page 30
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/30.html?client=cpb&type=1 HTTP/1.1" 200 7410
INFO:root:I am downloading book number 9140 page 31
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/31.html?client=cpb&type=1 HTTP/1.1" 200 7721
INFO:root:I am downloading book number 9140 page 32
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/32.html?client=cpb&type=1 HTTP/1.1" 200 6173
INFO:root:I am downloading book number 9140 page 33
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/33.html?client=cpb&type=1 HTTP/1.1" 200 6141
INFO:root:I am downloading book number 9140 page 34
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/34.html?client=cpb&type=1 HTTP/1.1" 200 6209
INFO:root:I am downloading book number 9140 page 35
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/35.html?client=cpb&type=1 HTTP/1.1" 200 7316
INFO:root:I am downloading book number 9140 page 36
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/36.html?client=cpb&type=1 HTTP/1.1" 200 7183
INFO:root:I am downloading book number 9140 page 37
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/37.html?client=cpb&type=1 HTTP/1.1" 200 5484
INFO:root:I am downloading book number 9140 page 38
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/38.html?client=cpb&type=1 HTTP/1.1" 200 6531
INFO:root:I am downloading book number 9140 page 39
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/39.html?client=cpb&type=1 HTTP/1.1" 200 7794
INFO:root:I am downloading book number 9140 page 40
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/40.html?client=cpb&type=1 HTTP/1.1" 200 8255
INFO:root:I am downloading book number 9140 page 41
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/41.html?client=cpb&type=1 HTTP/1.1" 200 6606
INFO:root:I am downloading book number 9140 page 42
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/42.html?client=cpb&type=1 HTTP/1.1" 200 6361
INFO:root:I am downloading book number 9140 page 43
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/43.html?client=cpb&type=1 HTTP/1.1" 200 6189
INFO:root:I am downloading book number 9140 page 44
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/44.html?client=cpb&type=1 HTTP/1.1" 200 7635
INFO:root:I am downloading book number 9140 page 45
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/45.html?client=cpb&type=1 HTTP/1.1" 200 5754
INFO:root:I am downloading book number 9140 page 46
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/46.html?client=cpb&type=1 HTTP/1.1" 200 6859
INFO:root:I am downloading book number 9140 page 47
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/47.html?client=cpb&type=1 HTTP/1.1" 200 5463
INFO:root:I am downloading book number 9140 page 48
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/48.html?client=cpb&type=1 HTTP/1.1" 200 7522
INFO:root:I am downloading book number 9140 page 49
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/49.html?client=cpb&type=1 HTTP/1.1" 200 5112
INFO:root:I am downloading book number 9140 page 50
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/50.html?client=cpb&type=1 HTTP/1.1" 200 6591
INFO:root:I am downloading book number 9140 page 51
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/51.html?client=cpb&type=1 HTTP/1.1" 200 5749
INFO:root:I am downloading book number 9140 page 52
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/52.html?client=cpb&type=1 HTTP/1.1" 200 5390
INFO:root:I am downloading book number 9140 page 53
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/53.html?client=cpb&type=1 HTTP/1.1" 200 5243
INFO:root:I am downloading book number 9140 page 54
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/54.html?client=cpb&type=1 HTTP/1.1" 200 6162
INFO:root:I am downloading book number 9140 page 55
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/55.html?client=cpb&type=1 HTTP/1.1" 200 5690
INFO:root:I am downloading book number 9140 page 56
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/56.html?client=cpb&type=1 HTTP/1.1" 200 4459
INFO:root:I am downloading book number 9140 page 57
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/57.html?client=cpb&type=1 HTTP/1.1" 200 3335
INFO:root:I am downloading book number 9140 page 58
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/58.html?client=cpb&type=1 HTTP/1.1" 200 320
INFO:root:I am downloading book number 9140 page 59
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/59.html?client=cpb&type=1 HTTP/1.1" 200 5489
INFO:root:I am downloading book number 9140 page 60
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/60.html?client=cpb&type=1 HTTP/1.1" 200 2773
INFO:root:I am downloading book number 9140 page 61
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/61.html?client=cpb&type=1 HTTP/1.1" 200 5948
INFO:root:I am downloading book number 9140 page 62
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/62.html?client=cpb&type=1 HTTP/1.1" 200 8764
INFO:root:I am downloading book number 9140 page 63
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/63.html?client=cpb&type=1 HTTP/1.1" 200 7311
INFO:root:I am downloading book number 9140 page 64
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/64.html?client=cpb&type=1 HTTP/1.1" 200 7424
INFO:root:I am downloading book number 9140 page 65
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/65.html?client=cpb&type=1 HTTP/1.1" 200 6569
INFO:root:I am downloading book number 9140 page 66
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/66.html?client=cpb&type=1 HTTP/1.1" 200 7600
INFO:root:I am downloading book number 9140 page 67
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/67.html?client=cpb&type=1 HTTP/1.1" 200 6212
INFO:root:I am downloading book number 9140 page 68
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/68.html?client=cpb&type=1 HTTP/1.1" 200 7190
INFO:root:I am downloading book number 9140 page 69
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/69.html?client=cpb&type=1 HTTP/1.1" 200 8776
INFO:root:I am downloading book number 9140 page 70
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/70.html?client=cpb&type=1 HTTP/1.1" 200 5195
INFO:root:I am downloading book number 9140 page 71
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/71.html?client=cpb&type=1 HTTP/1.1" 200 5111
INFO:root:I am downloading book number 9140 page 72
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/72.html?client=cpb&type=1 HTTP/1.1" 200 5608
INFO:root:I am downloading book number 9140 page 73
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/73.html?client=cpb&type=1 HTTP/1.1" 200 5147
INFO:root:I am downloading book number 9140 page 74
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/74.html?client=cpb&type=1 HTTP/1.1" 200 6970
INFO:root:I am downloading book number 9140 page 75
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/75.html?client=cpb&type=1 HTTP/1.1" 200 6240
INFO:root:I am downloading book number 9140 page 76
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/76.html?client=cpb&type=1 HTTP/1.1" 200 7519
INFO:root:I am downloading book number 9140 page 77
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/77.html?client=cpb&type=1 HTTP/1.1" 200 6550
INFO:root:I am downloading book number 9140 page 78
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/78.html?client=cpb&type=1 HTTP/1.1" 200 7386
INFO:root:I am downloading book number 9140 page 79
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/79.html?client=cpb&type=1 HTTP/1.1" 200 6527
INFO:root:I am downloading book number 9140 page 80
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/80.html?client=cpb&type=1 HTTP/1.1" 200 6239
INFO:root:I am downloading book number 9140 page 81
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/81.html?client=cpb&type=1 HTTP/1.1" 200 6171
INFO:root:I am downloading book number 9140 page 82
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/82.html?client=cpb&type=1 HTTP/1.1" 200 7479
INFO:root:I am downloading book number 9140 page 83
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/83.html?client=cpb&type=1 HTTP/1.1" 200 6808
INFO:root:I am downloading book number 9140 page 84
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/84.html?client=cpb&type=1 HTTP/1.1" 200 7481
INFO:root:I am downloading book number 9140 page 85
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/85.html?client=cpb&type=1 HTTP/1.1" 200 6662
INFO:root:I am downloading book number 9140 page 86
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/86.html?client=cpb&type=1 HTTP/1.1" 200 6263
INFO:root:I am downloading book number 9140 page 87
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/87.html?client=cpb&type=1 HTTP/1.1" 200 7626
INFO:root:I am downloading book number 9140 page 88
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/88.html?client=cpb&type=1 HTTP/1.1" 200 4607
INFO:root:I am downloading book number 9140 page 89
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/89.html?client=cpb&type=1 HTTP/1.1" 200 7842
INFO:root:I am downloading book number 9140 page 90
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/90.html?client=cpb&type=1 HTTP/1.1" 200 6285
INFO:root:I am downloading book number 9140 page 91
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/91.html?client=cpb&type=1 HTTP/1.1" 200 5920
INFO:root:I am downloading book number 9140 page 92
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/92.html?client=cpb&type=1 HTTP/1.1" 200 6913
INFO:root:I am downloading book number 9140 page 93
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/93.html?client=cpb&type=1 HTTP/1.1" 200 7512
INFO:root:I am downloading book number 9140 page 94
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/94.html?client=cpb&type=1 HTTP/1.1" 200 6593
INFO:root:I am downloading book number 9140 page 95
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/95.html?client=cpb&type=1 HTTP/1.1" 200 6239
INFO:root:I am downloading book number 9140 page 96
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/96.html?client=cpb&type=1 HTTP/1.1" 200 6576
INFO:root:I am downloading book number 9140 page 97
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/97.html?client=cpb&type=1 HTTP/1.1" 200 6827
INFO:root:I am downloading book number 9140 page 98
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/98.html?client=cpb&type=1 HTTP/1.1" 200 6764
INFO:root:I am downloading book number 9140 page 99
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/99.html?client=cpb&type=1 HTTP/1.1" 200 6859
INFO:root:I am downloading book number 9140 page 100
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/100.html?client=cpb&type=1 HTTP/1.1" 200 7890
INFO:root:I am downloading book number 9140 page 101
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/101.html?client=cpb&type=1 HTTP/1.1" 200 5919
INFO:root:I am downloading book number 9140 page 102
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/102.html?client=cpb&type=1 HTTP/1.1" 200 7325
INFO:root:I am downloading book number 9140 page 103
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/103.html?client=cpb&type=1 HTTP/1.1" 200 8907
INFO:root:I am downloading book number 9140 page 104
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/104.html?client=cpb&type=1 HTTP/1.1" 200 8236
INFO:root:I am downloading book number 9140 page 105
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/105.html?client=cpb&type=1 HTTP/1.1" 200 6116
INFO:root:I am downloading book number 9140 page 106
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/106.html?client=cpb&type=1 HTTP/1.1" 200 7158
INFO:root:I am downloading book number 9140 page 107
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/107.html?client=cpb&type=1 HTTP/1.1" 200 7573
INFO:root:I am downloading book number 9140 page 108
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/108.html?client=cpb&type=1 HTTP/1.1" 200 6948
INFO:root:I am downloading book number 9140 page 109
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/109.html?client=cpb&type=1 HTTP/1.1" 200 5433
INFO:root:I am downloading book number 9140 page 110
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/110.html?client=cpb&type=1 HTTP/1.1" 200 5645
INFO:root:I am downloading book number 9140 page 111
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/111.html?client=cpb&type=1 HTTP/1.1" 200 5427
INFO:root:I am downloading book number 9140 page 112
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/112.html?client=cpb&type=1 HTTP/1.1" 200 6582
INFO:root:I am downloading book number 9140 page 113
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/113.html?client=cpb&type=1 HTTP/1.1" 200 6453
INFO:root:I am downloading book number 9140 page 114
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/114.html?client=cpb&type=1 HTTP/1.1" 200 6477
INFO:root:I am downloading book number 9140 page 115
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/115.html?client=cpb&type=1 HTTP/1.1" 200 5521
INFO:root:I am downloading book number 9140 page 116
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/116.html?client=cpb&type=1 HTTP/1.1" 200 6269
INFO:root:I am downloading book number 9140 page 117
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/117.html?client=cpb&type=1 HTTP/1.1" 200 6320
INFO:root:I am downloading book number 9140 page 118
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/118.html?client=cpb&type=1 HTTP/1.1" 200 6201
INFO:root:I am downloading book number 9140 page 119
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/119.html?client=cpb&type=1 HTTP/1.1" 200 6363
INFO:root:I am downloading book number 9140 page 120
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/120.html?client=cpb&type=1 HTTP/1.1" 200 6156
INFO:root:I am downloading book number 9140 page 121
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/121.html?client=cpb&type=1 HTTP/1.1" 200 5710
INFO:root:I am downloading book number 9140 page 122
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/122.html?client=cpb&type=1 HTTP/1.1" 200 6758
INFO:root:I am downloading book number 9140 page 123
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/123.html?client=cpb&type=1 HTTP/1.1" 200 7367
INFO:root:I am downloading book number 9140 page 124
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/124.html?client=cpb&type=1 HTTP/1.1" 200 6932
INFO:root:I am downloading book number 9140 page 125
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/125.html?client=cpb&type=1 HTTP/1.1" 200 6680
INFO:root:I am downloading book number 9140 page 126
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/126.html?client=cpb&type=1 HTTP/1.1" 200 7708
INFO:root:I am downloading book number 9140 page 127
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/127.html?client=cpb&type=1 HTTP/1.1" 200 4359
INFO:root:I am downloading book number 9140 page 128
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/128.html?client=cpb&type=1 HTTP/1.1" 200 5840
INFO:root:I am downloading book number 9140 page 129
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/129.html?client=cpb&type=1 HTTP/1.1" 200 5492
INFO:root:I am downloading book number 9140 page 130
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/130.html?client=cpb&type=1 HTTP/1.1" 200 5512
INFO:root:I am downloading book number 9140 page 131
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/131.html?client=cpb&type=1 HTTP/1.1" 200 6872
INFO:root:I am downloading book number 9140 page 132
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/132.html?client=cpb&type=1 HTTP/1.1" 200 4843
INFO:root:I am downloading book number 9140 page 133
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/133.html?client=cpb&type=1 HTTP/1.1" 200 6418
INFO:root:I am downloading book number 9140 page 134
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/134.html?client=cpb&type=1 HTTP/1.1" 200 3961
INFO:root:I am downloading book number 9140 page 135
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/135.html?client=cpb&type=1 HTTP/1.1" 200 5001
INFO:root:I am downloading book number 9140 page 136
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/136.html?client=cpb&type=1 HTTP/1.1" 200 5096
INFO:root:I am downloading book number 9140 page 137
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/137.html?client=cpb&type=1 HTTP/1.1" 200 3614
INFO:root:I am downloading book number 9140 page 138
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/138.html?client=cpb&type=1 HTTP/1.1" 200 321
INFO:root:I am downloading book number 9140 page 139
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/139.html?client=cpb&type=1 HTTP/1.1" 200 4700
INFO:root:I am downloading book number 9140 page 140
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/140.html?client=cpb&type=1 HTTP/1.1" 200 2485
INFO:root:I am downloading book number 9140 page 141
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/141.html?client=cpb&type=1 HTTP/1.1" 200 5866
INFO:root:I am downloading book number 9140 page 142
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/142.html?client=cpb&type=1 HTTP/1.1" 200 6618
INFO:root:I am downloading book number 9140 page 143
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/143.html?client=cpb&type=1 HTTP/1.1" 200 7232
INFO:root:I am downloading book number 9140 page 144
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/144.html?client=cpb&type=1 HTTP/1.1" 200 5932
INFO:root:I am downloading book number 9140 page 145
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/145.html?client=cpb&type=1 HTTP/1.1" 200 6888
INFO:root:I am downloading book number 9140 page 146
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/146.html?client=cpb&type=1 HTTP/1.1" 200 7212
INFO:root:I am downloading book number 9140 page 147
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/147.html?client=cpb&type=1 HTTP/1.1" 200 5990
INFO:root:I am downloading book number 9140 page 148
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/148.html?client=cpb&type=1 HTTP/1.1" 200 5092
INFO:root:I am downloading book number 9140 page 149
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/149.html?client=cpb&type=1 HTTP/1.1" 200 6033
INFO:root:I am downloading book number 9140 page 150
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/150.html?client=cpb&type=1 HTTP/1.1" 200 6402
INFO:root:I am downloading book number 9140 page 151
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/151.html?client=cpb&type=1 HTTP/1.1" 200 5252
INFO:root:I am downloading book number 9140 page 152
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/152.html?client=cpb&type=1 HTTP/1.1" 200 5661
INFO:root:I am downloading book number 9140 page 153
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/153.html?client=cpb&type=1 HTTP/1.1" 200 5139
INFO:root:I am downloading book number 9140 page 154
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/154.html?client=cpb&type=1 HTTP/1.1" 200 5759
INFO:root:I am downloading book number 9140 page 155
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/155.html?client=cpb&type=1 HTTP/1.1" 200 6096
INFO:root:I am downloading book number 9140 page 156
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/156.html?client=cpb&type=1 HTTP/1.1" 200 7677
INFO:root:I am downloading book number 9140 page 157
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/157.html?client=cpb&type=1 HTTP/1.1" 200 6396
INFO:root:I am downloading book number 9140 page 158
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/158.html?client=cpb&type=1 HTTP/1.1" 200 5748
INFO:root:I am downloading book number 9140 page 159
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/159.html?client=cpb&type=1 HTTP/1.1" 200 6615
INFO:root:I am downloading book number 9140 page 160
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/160.html?client=cpb&type=1 HTTP/1.1" 200 5969
INFO:root:I am downloading book number 9140 page 161
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/161.html?client=cpb&type=1 HTTP/1.1" 200 6779
INFO:root:I am downloading book number 9140 page 162
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/162.html?client=cpb&type=1 HTTP/1.1" 200 5852
INFO:root:I am downloading book number 9140 page 163
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/163.html?client=cpb&type=1 HTTP/1.1" 200 6917
INFO:root:I am downloading book number 9140 page 164
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/164.html?client=cpb&type=1 HTTP/1.1" 200 6645
INFO:root:I am downloading book number 9140 page 165
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/165.html?client=cpb&type=1 HTTP/1.1" 200 5923
INFO:root:I am downloading book number 9140 page 166
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/166.html?client=cpb&type=1 HTTP/1.1" 200 7653
INFO:root:I am downloading book number 9140 page 167
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/167.html?client=cpb&type=1 HTTP/1.1" 200 6514
INFO:root:I am downloading book number 9140 page 168
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/168.html?client=cpb&type=1 HTTP/1.1" 200 5910
INFO:root:I am downloading book number 9140 page 169
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/169.html?client=cpb&type=1 HTTP/1.1" 200 6976
INFO:root:I am downloading book number 9140 page 170
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/170.html?client=cpb&type=1 HTTP/1.1" 200 5343
INFO:root:I am downloading book number 9140 page 171
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/171.html?client=cpb&type=1 HTTP/1.1" 200 6557
INFO:root:I am downloading book number 9140 page 172
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/172.html?client=cpb&type=1 HTTP/1.1" 200 6443
INFO:root:I am downloading book number 9140 page 173
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/173.html?client=cpb&type=1 HTTP/1.1" 200 7033
INFO:root:I am downloading book number 9140 page 174
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/174.html?client=cpb&type=1 HTTP/1.1" 200 6909
INFO:root:I am downloading book number 9140 page 175
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/175.html?client=cpb&type=1 HTTP/1.1" 200 5895
INFO:root:I am downloading book number 9140 page 176
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/176.html?client=cpb&type=1 HTTP/1.1" 200 8023
INFO:root:I am downloading book number 9140 page 177
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/177.html?client=cpb&type=1 HTTP/1.1" 200 6469
INFO:root:I am downloading book number 9140 page 178
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/178.html?client=cpb&type=1 HTTP/1.1" 200 5405
INFO:root:I am downloading book number 9140 page 179
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/179.html?client=cpb&type=1 HTTP/1.1" 200 7238
INFO:root:I am downloading book number 9140 page 180
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/180.html?client=cpb&type=1 HTTP/1.1" 200 6503
INFO:root:I am downloading book number 9140 page 181
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/181.html?client=cpb&type=1 HTTP/1.1" 200 5037
INFO:root:I am downloading book number 9140 page 182
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/182.html?client=cpb&type=1 HTTP/1.1" 200 5433
INFO:root:I am downloading book number 9140 page 183
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/183.html?client=cpb&type=1 HTTP/1.1" 200 6050
INFO:root:I am downloading book number 9140 page 184
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/184.html?client=cpb&type=1 HTTP/1.1" 200 6638
INFO:root:I am downloading book number 9140 page 185
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/185.html?client=cpb&type=1 HTTP/1.1" 200 7091
INFO:root:I am downloading book number 9140 page 186
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/186.html?client=cpb&type=1 HTTP/1.1" 200 5547
INFO:root:I am downloading book number 9140 page 187
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/187.html?client=cpb&type=1 HTTP/1.1" 200 5301
INFO:root:I am downloading book number 9140 page 188
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/188.html?client=cpb&type=1 HTTP/1.1" 200 6516
INFO:root:I am downloading book number 9140 page 189
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/189.html?client=cpb&type=1 HTTP/1.1" 200 5050
INFO:root:I am downloading book number 9140 page 190
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/190.html?client=cpb&type=1 HTTP/1.1" 200 6077
INFO:root:I am downloading book number 9140 page 191
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/191.html?client=cpb&type=1 HTTP/1.1" 200 7659
INFO:root:I am downloading book number 9140 page 192
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/192.html?client=cpb&type=1 HTTP/1.1" 200 6779
INFO:root:I am downloading book number 9140 page 193
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/193.html?client=cpb&type=1 HTTP/1.1" 200 5568
INFO:root:I am downloading book number 9140 page 194
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/194.html?client=cpb&type=1 HTTP/1.1" 200 4935
INFO:root:I am downloading book number 9140 page 195
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/195.html?client=cpb&type=1 HTTP/1.1" 200 6478
INFO:root:I am downloading book number 9140 page 196
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/196.html?client=cpb&type=1 HTTP/1.1" 200 6051
INFO:root:I am downloading book number 9140 page 197
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/197.html?client=cpb&type=1 HTTP/1.1" 200 5449
INFO:root:I am downloading book number 9140 page 198
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/198.html?client=cpb&type=1 HTTP/1.1" 200 6444
INFO:root:I am downloading book number 9140 page 199
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/199.html?client=cpb&type=1 HTTP/1.1" 200 6215
INFO:root:I am downloading book number 9140 page 200
INFO:root:Start downloading book 9140, start from page 0, to page 200
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/0.html?client=cpb&type=1 HTTP/1.1" 200 1449
INFO:root:I am downloading book number 9140 page 1
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/1.html?client=cpb&type=1 HTTP/1.1" 200 2985
INFO:root:I am downloading book number 9140 page 2
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/2.html?client=cpb&type=1 HTTP/1.1" 200 5526
INFO:root:I am downloading book number 9140 page 3
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/3.html?client=cpb&type=1 HTTP/1.1" 200 6047
INFO:root:I am downloading book number 9140 page 4
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/4.html?client=cpb&type=1 HTTP/1.1" 200 5276
INFO:root:I am downloading book number 9140 page 5
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/5.html?client=cpb&type=1 HTTP/1.1" 200 4982
INFO:root:I am downloading book number 9140 page 6
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/6.html?client=cpb&type=1 HTTP/1.1" 200 9247
INFO:root:I am downloading book number 9140 page 7
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/7.html?client=cpb&type=1 HTTP/1.1" 200 7497
INFO:root:I am downloading book number 9140 page 8
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/8.html?client=cpb&type=1 HTTP/1.1" 200 9939
INFO:root:I am downloading book number 9140 page 9
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/9.html?client=cpb&type=1 HTTP/1.1" 200 9034
INFO:root:I am downloading book number 9140 page 10
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/10.html?client=cpb&type=1 HTTP/1.1" 200 2181
INFO:root:I am downloading book number 9140 page 11
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/11.html?client=cpb&type=1 HTTP/1.1" 200 4523
INFO:root:I am downloading book number 9140 page 12
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/12.html?client=cpb&type=1 HTTP/1.1" 200 4785
INFO:root:I am downloading book number 9140 page 13
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/13.html?client=cpb&type=1 HTTP/1.1" 200 5949
INFO:root:I am downloading book number 9140 page 14
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/14.html?client=cpb&type=1 HTTP/1.1" 200 5109
INFO:root:I am downloading book number 9140 page 15
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/15.html?client=cpb&type=1 HTTP/1.1" 200 4856
INFO:root:I am downloading book number 9140 page 16
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/16.html?client=cpb&type=1 HTTP/1.1" 200 1526
INFO:root:I am downloading book number 9140 page 17
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/17.html?client=cpb&type=1 HTTP/1.1" 200 5332
INFO:root:I am downloading book number 9140 page 18
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/18.html?client=cpb&type=1 HTTP/1.1" 200 3767
INFO:root:I am downloading book number 9140 page 19
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/19.html?client=cpb&type=1 HTTP/1.1" 200 4884
INFO:root:I am downloading book number 9140 page 20
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/20.html?client=cpb&type=1 HTTP/1.1" 200 8679
INFO:root:I am downloading book number 9140 page 21
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/21.html?client=cpb&type=1 HTTP/1.1" 200 6052
INFO:root:I am downloading book number 9140 page 22
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/22.html?client=cpb&type=1 HTTP/1.1" 200 9089
INFO:root:I am downloading book number 9140 page 23
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/23.html?client=cpb&type=1 HTTP/1.1" 200 5460
INFO:root:I am downloading book number 9140 page 24
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/24.html?client=cpb&type=1 HTTP/1.1" 200 5694
INFO:root:I am downloading book number 9140 page 25
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/25.html?client=cpb&type=1 HTTP/1.1" 200 5978
INFO:root:I am downloading book number 9140 page 26
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/26.html?client=cpb&type=1 HTTP/1.1" 200 7719
INFO:root:I am downloading book number 9140 page 27
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/27.html?client=cpb&type=1 HTTP/1.1" 200 6068
INFO:root:I am downloading book number 9140 page 28
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/28.html?client=cpb&type=1 HTTP/1.1" 200 5268
INFO:root:I am downloading book number 9140 page 29
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/29.html?client=cpb&type=1 HTTP/1.1" 200 6593
INFO:root:I am downloading book number 9140 page 30
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/30.html?client=cpb&type=1 HTTP/1.1" 200 7410
INFO:root:I am downloading book number 9140 page 31
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/31.html?client=cpb&type=1 HTTP/1.1" 200 7721
INFO:root:I am downloading book number 9140 page 32
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/32.html?client=cpb&type=1 HTTP/1.1" 200 6173
INFO:root:I am downloading book number 9140 page 33
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/33.html?client=cpb&type=1 HTTP/1.1" 200 6141
INFO:root:I am downloading book number 9140 page 34
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/34.html?client=cpb&type=1 HTTP/1.1" 200 6209
INFO:root:I am downloading book number 9140 page 35
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/35.html?client=cpb&type=1 HTTP/1.1" 200 7316
INFO:root:I am downloading book number 9140 page 36
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/36.html?client=cpb&type=1 HTTP/1.1" 200 7183
INFO:root:I am downloading book number 9140 page 37
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/37.html?client=cpb&type=1 HTTP/1.1" 200 5484
INFO:root:I am downloading book number 9140 page 38
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/38.html?client=cpb&type=1 HTTP/1.1" 200 6531
INFO:root:I am downloading book number 9140 page 39
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/39.html?client=cpb&type=1 HTTP/1.1" 200 7794
INFO:root:I am downloading book number 9140 page 40
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/40.html?client=cpb&type=1 HTTP/1.1" 200 8255
INFO:root:I am downloading book number 9140 page 41
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/41.html?client=cpb&type=1 HTTP/1.1" 200 6606
INFO:root:I am downloading book number 9140 page 42
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/42.html?client=cpb&type=1 HTTP/1.1" 200 6361
INFO:root:I am downloading book number 9140 page 43
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/43.html?client=cpb&type=1 HTTP/1.1" 200 6189
INFO:root:I am downloading book number 9140 page 44
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/44.html?client=cpb&type=1 HTTP/1.1" 200 7635
INFO:root:I am downloading book number 9140 page 45
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/45.html?client=cpb&type=1 HTTP/1.1" 200 5754
INFO:root:I am downloading book number 9140 page 46
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/46.html?client=cpb&type=1 HTTP/1.1" 200 6859
INFO:root:I am downloading book number 9140 page 47
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/47.html?client=cpb&type=1 HTTP/1.1" 200 5463
INFO:root:I am downloading book number 9140 page 48
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/48.html?client=cpb&type=1 HTTP/1.1" 200 7522
INFO:root:I am downloading book number 9140 page 49
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/49.html?client=cpb&type=1 HTTP/1.1" 200 5112
INFO:root:I am downloading book number 9140 page 50
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/50.html?client=cpb&type=1 HTTP/1.1" 200 6591
INFO:root:I am downloading book number 9140 page 51
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/51.html?client=cpb&type=1 HTTP/1.1" 200 5749
INFO:root:I am downloading book number 9140 page 52
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/52.html?client=cpb&type=1 HTTP/1.1" 200 5390
INFO:root:I am downloading book number 9140 page 53
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/53.html?client=cpb&type=1 HTTP/1.1" 200 5243
INFO:root:I am downloading book number 9140 page 54
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/54.html?client=cpb&type=1 HTTP/1.1" 200 6162
INFO:root:I am downloading book number 9140 page 55
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/55.html?client=cpb&type=1 HTTP/1.1" 200 5690
INFO:root:I am downloading book number 9140 page 56
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/56.html?client=cpb&type=1 HTTP/1.1" 200 4459
INFO:root:I am downloading book number 9140 page 57
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/57.html?client=cpb&type=1 HTTP/1.1" 200 3335
INFO:root:I am downloading book number 9140 page 58
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/58.html?client=cpb&type=1 HTTP/1.1" 200 320
INFO:root:I am downloading book number 9140 page 59
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/59.html?client=cpb&type=1 HTTP/1.1" 200 5489
INFO:root:I am downloading book number 9140 page 60
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/60.html?client=cpb&type=1 HTTP/1.1" 200 2773
INFO:root:I am downloading book number 9140 page 61
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/61.html?client=cpb&type=1 HTTP/1.1" 200 5948
INFO:root:I am downloading book number 9140 page 62
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/62.html?client=cpb&type=1 HTTP/1.1" 200 8764
INFO:root:I am downloading book number 9140 page 63
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/63.html?client=cpb&type=1 HTTP/1.1" 200 7311
INFO:root:I am downloading book number 9140 page 64
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/64.html?client=cpb&type=1 HTTP/1.1" 200 7424
INFO:root:I am downloading book number 9140 page 65
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/65.html?client=cpb&type=1 HTTP/1.1" 200 6569
INFO:root:I am downloading book number 9140 page 66
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/66.html?client=cpb&type=1 HTTP/1.1" 200 7600
INFO:root:I am downloading book number 9140 page 67
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/67.html?client=cpb&type=1 HTTP/1.1" 200 6212
INFO:root:I am downloading book number 9140 page 68
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/68.html?client=cpb&type=1 HTTP/1.1" 200 7190
INFO:root:I am downloading book number 9140 page 69
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/69.html?client=cpb&type=1 HTTP/1.1" 200 8776
INFO:root:I am downloading book number 9140 page 70
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/70.html?client=cpb&type=1 HTTP/1.1" 200 5195
INFO:root:I am downloading book number 9140 page 71
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443
DEBUG:urllib3.connectionpool:https://cambridgepub.com:443 "GET /ereader/103/9140/71.html?client=cpb&type=1 HTTP/1.1" 200 5111
INFO:root:I am downloading book number 9140 page 72
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): cambridgepub.com:443