-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHQX.log
2296 lines (2296 loc) · 611 KB
/
HQX.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
2018-06-17 10:01:30 [scrapy.utils.log] INFO: Scrapy 1.5.0 started (bot: hqxrb)
2018-06-17 10:01:30 [scrapy.utils.log] INFO: Versions: lxml 3.5.0.0, libxml2 2.9.3, cssselect 1.0.3, parsel 1.4.0, w3lib 1.19.0, Twisted 18.4.0, Python 3.5.2 (default, Nov 17 2016, 17:05:23) - [GCC 5.4.0 20160609], pyOpenSSL 18.0.0 (OpenSSL 1.0.2g 1 Mar 2016), cryptography 2.2.2, Platform Linux-4.4.0-31-generic-x86_64-with-Ubuntu-16.04-xenial
2018-06-17 10:01:30 [scrapy.crawler] INFO: Overridden settings: {'NEWSPIDER_MODULE': 'hqxrb.spiders', 'USER_AGENT': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36', 'SPIDER_MODULES': ['hqxrb.spiders'], 'BOT_NAME': 'hqxrb', 'LOG_FILE': 'HQX.log'}
2018-06-17 10:01:30 [scrapy.middleware] INFO: Enabled extensions:
['scrapy.extensions.logstats.LogStats',
'scrapy.extensions.corestats.CoreStats',
'scrapy.extensions.telnet.TelnetConsole',
'scrapy.extensions.memusage.MemoryUsage']
2018-06-17 10:01:30 [scrapy.middleware] INFO: Enabled downloader middlewares:
['scrapy.downloadermiddlewares.httpauth.HttpAuthMiddleware',
'scrapy.downloadermiddlewares.downloadtimeout.DownloadTimeoutMiddleware',
'scrapy.downloadermiddlewares.defaultheaders.DefaultHeadersMiddleware',
'scrapy.downloadermiddlewares.useragent.UserAgentMiddleware',
'scrapy.downloadermiddlewares.retry.RetryMiddleware',
'scrapy.downloadermiddlewares.redirect.MetaRefreshMiddleware',
'scrapy.downloadermiddlewares.httpcompression.HttpCompressionMiddleware',
'scrapy.downloadermiddlewares.redirect.RedirectMiddleware',
'scrapy.downloadermiddlewares.cookies.CookiesMiddleware',
'scrapy.downloadermiddlewares.httpproxy.HttpProxyMiddleware',
'scrapy.downloadermiddlewares.stats.DownloaderStats']
2018-06-17 10:01:30 [scrapy.middleware] INFO: Enabled spider middlewares:
['scrapy.spidermiddlewares.httperror.HttpErrorMiddleware',
'scrapy.spidermiddlewares.offsite.OffsiteMiddleware',
'scrapy.spidermiddlewares.referer.RefererMiddleware',
'scrapy.spidermiddlewares.urllength.UrlLengthMiddleware',
'scrapy.spidermiddlewares.depth.DepthMiddleware']
2018-06-17 10:01:30 [scrapy.middleware] INFO: Enabled item pipelines:
['hqxrb.pipelines.HqxrbPipeline']
2018-06-17 10:01:30 [scrapy.core.engine] INFO: Spider opened
2018-06-17 10:01:30 [scrapy.extensions.logstats] INFO: Crawled 0 pages (at 0 pages/min), scraped 0 items (at 0 items/min)
2018-06-17 10:01:30 [scrapy.extensions.telnet] DEBUG: Telnet console listening on 127.0.0.1:6023
2018-06-17 10:01:31 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/1/0.json> (referer: None)
2018-06-17 10:01:31 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/5/0.json> (referer: None)
2018-06-17 10:01:31 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/19/0.json> (referer: None)
2018-06-17 10:01:31 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/4/0.json> (referer: None)
2018-06-17 10:01:31 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/3/0.json> (referer: None)
2018-06-17 10:01:31 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/22/0.json> (referer: None)
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/0.json>
{"image": "http://img.qdaily.com/article/banner/20180608153136vizAS7fhwLesHEaB.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54099, "publish_time": "2018-06-17 07:10:06", "type": "长文章", "comment_count": 8, "praise_count": 69, "title": "100 年以来,对人类社会产生最宏大深刻影响的,或许是城市化进程", "url": "http://app3.qdaily.com/app3/articles/detail/54099.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/0.json>
{"image": "http://img.qdaily.com/article/banner/201806160244353dE0MOgwAcxFrybU.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54347, "publish_time": "2018-06-16 07:27:00", "type": "长文章", "comment_count": 233, "praise_count": 1360, "title": "我们说一说教育平等的问题 | 关于阶层流动和我们对城市的理解之一", "url": "http://app3.qdaily.com/app3/articles/detail/54347.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/0.json>
{"image": "http://img.qdaily.com/article/banner/201806150126033LDf9GF7tAp1JIvl.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54301, "publish_time": "2018-06-15 14:37:14", "type": "长文章", "comment_count": 20, "praise_count": 553, "title": "罗伯特·麦基:故事浅薄,往往是因为作者认为受欢迎比真实更重要 | 书房", "url": "http://app3.qdaily.com/app3/articles/detail/54301.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/0.json>
{"image": "http://img.qdaily.com/article/banner/20180614170833ovpcXNfjdr6I5t0K.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54277, "publish_time": "2018-06-14 17:14:28", "type": "长文章", "comment_count": 127, "praise_count": 455, "title": "美容仪成了中国年轻消费者的新玩具,它是怎样流行起来的?", "url": "http://app3.qdaily.com/app3/articles/detail/54277.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/0.json>
{"image": "http://img.qdaily.com/article/banner/20180612205631SEGLbuRfBixW7YHO.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54207, "publish_time": "2018-06-13 14:48:48", "type": "长文章", "comment_count": 56, "praise_count": 472, "title": "约翰·拉塞特告别迪士尼和皮克斯,39 年来,这个天才都改变过什么?", "url": "http://app3.qdaily.com/app3/articles/detail/54207.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/0.json>
{"image": "http://img.qdaily.com/article/banner/20180613084633mYzxWMdTwIci4qpC.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54210, "publish_time": "2018-06-13 05:53:19", "type": "长文章", "comment_count": 61, "praise_count": 894, "title": "正念冥想成了一门数十亿美元的生意,它因剥离宗教而流行,却成了一种宗教式的信仰", "url": "http://app3.qdaily.com/app3/articles/detail/54210.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/0.json>
{"image": "http://img.qdaily.com/article/banner/20180612030922wiVRcynLBF6g41oh.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54170, "publish_time": "2018-06-12 14:50:38", "type": "长文章", "comment_count": 32, "praise_count": 647, "title": "张大春,“地狱在我们自己身上。是什么?是我失去了解释这个世界的兴趣” | 访谈录", "url": "http://app3.qdaily.com/app3/articles/detail/54170.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/0.json>
{"image": "http://img.qdaily.com/article/banner/20180611173352tTsrC4LyQUPopnlR.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54161, "publish_time": "2018-06-12 06:57:58", "type": "长文章", "comment_count": 185, "praise_count": 802, "title": "人口它是个问题 | 天津低估了自己户口的价值,但缺人是真的", "url": "http://app3.qdaily.com/app3/articles/detail/54161.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/0.json>
{"image": "http://img.qdaily.com/article/banner/20180611151312bRJO1nf3Hl56kCY2.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54148, "publish_time": "2018-06-11 15:23:43", "type": "长文章", "comment_count": 23, "praise_count": 327, "title": "又一年“民主设计大会”,宜家从来没和潮流走得这么近过,它好像有点急", "url": "http://app3.qdaily.com/app3/articles/detail/54148.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/0.json>
{"image": "http://img.qdaily.com/article/banner/20180610235220NTlwYiU1E3tB9Cdv.JPG?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54130, "publish_time": "2018-06-11 06:32:01", "type": "长文章", "comment_count": 278, "praise_count": 619, "title": "休业一年之后,大理洱海民宿为何依然难逃关停命运?", "url": "http://app3.qdaily.com/app3/articles/detail/54130.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/0.json>
{"image": "http://img.qdaily.com/article/banner/201805221306326WxzOo0GdLXCZQey.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53464, "publish_time": "2018-06-10 07:05:16", "type": "长文章", "comment_count": 48, "praise_count": 287, "title": "纽约住房危机:房东变化之后,监管为何缺位,法庭为何无力?", "url": "http://app3.qdaily.com/app3/articles/detail/53464.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/0.json>
{"image": "http://img.qdaily.com/article/banner/20180608124434nMv7Fz23j0QoaRcV.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54077, "publish_time": "2018-06-08 14:53:53", "type": "长文章", "comment_count": 68, "praise_count": 416, "title": "索马里“仲裁者”和他的办公室,广州的索马里社区中心|“低端全球化”③", "url": "http://app3.qdaily.com/app3/articles/detail/54077.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/0.json>
{"image": "http://img.qdaily.com/article/article_show/2018061615510461FO2QsjZKTxBh5r.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54352, "publish_time": "2018-06-17 07:11:17", "type": "城市", "comment_count": 0, "praise_count": 20, "title": "阿根廷众议院辩论 23小时,总算通过堕胎除罪化", "url": "http://app3.qdaily.com/app3/articles/detail/54352.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/0.json>
{"image": "http://img.qdaily.com/article/article_show/2018061613364098gyuGhP4OYIHjQK.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 54350, "publish_time": "2018-06-17 07:11:11", "type": "城市", "comment_count": 12, "praise_count": 20, "title": "性病患病率大幅提高,人们对性行为显然放松了警惕", "url": "http://app3.qdaily.com/app3/articles/detail/54350.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/0.json>
{"image": "http://img.qdaily.com/article/banner/20180608153136vizAS7fhwLesHEaB.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54099, "publish_time": "2018-06-17 07:10:06", "type": "城市", "comment_count": 8, "praise_count": 68, "title": "100 年以来,对人类社会产生最宏大深刻影响的,或许是城市化进程", "url": "http://app3.qdaily.com/app3/articles/detail/54099.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/0.json>
{"image": "http://img.qdaily.com/article/article_show/201806122229488gvokKx1cPHjbiT9.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54212, "publish_time": "2018-06-17 07:09:21", "type": "城市", "comment_count": 0, "praise_count": 18, "title": "「去看展」包括浮世绘,600 年的亚欧经典版画都在这里", "url": "http://app3.qdaily.com/app3/articles/detail/54212.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180616135445ZwWRamyOhlNqfcu9.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54351, "publish_time": "2018-06-17 07:07:33", "type": "城市", "comment_count": 2, "praise_count": 7, "title": "青少年性行为和吸毒减少,但抑郁和自杀想法增多", "url": "http://app3.qdaily.com/app3/articles/detail/54351.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180616094038HQDFZ2JIcmoAKq8V.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54348, "publish_time": "2018-06-16 09:46:07", "type": "城市", "comment_count": 56, "praise_count": 84, "title": "看图:这里是过去24小时内发生的重要的事", "url": "http://app3.qdaily.com/app3/articles/detail/54348.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180615170718OCzjWwMDa83luXqg.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54336, "publish_time": "2018-06-16 07:28:12", "type": "城市", "comment_count": 42, "praise_count": 125, "title": "孔子,无主金句的失物招领处 | 好奇心辞典", "url": "http://app3.qdaily.com/app3/articles/detail/54336.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/0.json>
{"image": "http://img.qdaily.com/article/banner/201806160244353dE0MOgwAcxFrybU.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54347, "publish_time": "2018-06-16 07:27:00", "type": "城市", "comment_count": 232, "praise_count": 1358, "title": "我们说一说教育平等的问题 | 关于阶层流动和我们对城市的理解之一", "url": "http://app3.qdaily.com/app3/articles/detail/54347.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/0.json>
{"image": "http://img.qdaily.com/article/article_show/201806152029563ei2XCpBzndQygMt.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 54342, "publish_time": "2018-06-16 07:24:49", "type": "城市", "comment_count": 37, "praise_count": 228, "title": "当代恋爱还在用“装高冷”的套路,可能是不太好使了", "url": "http://app3.qdaily.com/app3/articles/detail/54342.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180616070954yGPNHW4u8fo0gxlk.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54344, "publish_time": "2018-06-16 07:24:30", "type": "城市", "comment_count": 2, "praise_count": 58, "title": "「万物简史」战争的贸易预期推手", "url": "http://app3.qdaily.com/app3/articles/detail/54344.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180614235112VjHR92nFdz1wlvJy.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54278, "publish_time": "2018-06-16 07:24:14", "type": "城市", "comment_count": 38, "praise_count": 41, "title": "为了应对老龄化问题,日本将成人年龄从 20 岁降低到 18 岁", "url": "http://app3.qdaily.com/app3/articles/detail/54278.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180615135103xFPui4wjCNr5bg7e.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54323, "publish_time": "2018-06-15 15:47:26", "type": "城市", "comment_count": 5, "praise_count": 18, "title": "「这世界」世界杯的爆款勺,以及其它我们可以说道说道的事", "url": "http://app3.qdaily.com/app3/articles/detail/54323.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/0.json>
{"image": "http://img.qdaily.com/article/banner/20180607135227MgidJhqnxDc3oeym.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54037, "publish_time": "2018-06-17 07:09:47", "type": "时尚", "comment_count": 0, "praise_count": 13, "title": "Marc Jacobs 如何在时尚界站稳脚跟,又如何坠落神坛?", "url": "http://app3.qdaily.com/app3/articles/detail/54037.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/0.json>
{"image": "http://img.qdaily.com/article/banner/20180615131945wyQKW1bkG9fo2tET.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54314, "publish_time": "2018-06-15 13:47:34", "type": "时尚", "comment_count": 0, "praise_count": 9, "title": "Dries Van Noten 被收购,以及,2018 秋冬男装有这三个趋势 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/54314.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/0.json>
{"image": "http://img.qdaily.com/article/banner/20180614142427olRr8sZf26wkYTKD.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54255, "publish_time": "2018-06-14 14:35:30", "type": "时尚", "comment_count": 1, "praise_count": 17, "title": "Bottega Veneta 创意总监离职,以及,来看 Instagram 美妆排名 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/54255.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180613232020FiTlRQbto7U6pzVh.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54243, "publish_time": "2018-06-14 07:17:46", "type": "时尚", "comment_count": 0, "praise_count": 33, "title": "V&A博物馆要办“迷你裙之母”回顾展,展品都是大家捐的", "url": "http://app3.qdaily.com/app3/articles/detail/54243.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/0.json>
{"image": "http://img.qdaily.com/article/banner/20180613114354av9i1lHBzd8RGEgs.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54219, "publish_time": "2018-06-13 11:59:57", "type": "时尚", "comment_count": 1, "praise_count": 15, "title": "Instagram Stories 今日起开通购物功能,以及,LV 要在上海办艺术展 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/54219.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/0.json>
{"image": "http://img.qdaily.com/article/banner/20180612130111KEDyLwJaIzt7qBYR.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54180, "publish_time": "2018-06-12 13:15:22", "type": "时尚", "comment_count": 9, "praise_count": 21, "title": "耐克前高管任 Reebok 全球创意总监,以及,来看伦敦男装周上的中国设计师 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/54180.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/0.json>
{"image": "http://img.qdaily.com/article/banner/20180610215100HO3GKMERgWfQY0yd.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54128, "publish_time": "2018-06-11 10:00:43", "type": "时尚", "comment_count": 0, "praise_count": 20, "title": "“纯素美妆”受追捧,以及,Virgil Abloh 又陷入抄袭风波 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/54128.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/0.json>
{"image": "http://img.qdaily.com/article/banner/20180609171830GJzcLBuYPS7k5KtR.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54111, "publish_time": "2018-06-10 07:07:50", "type": "时尚", "comment_count": 42, "praise_count": 179, "title": "苏州 W 酒店开业,那个叫做“首映礼”的开业活动上都发生了什么?", "url": "http://app3.qdaily.com/app3/articles/detail/54111.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/0.json>
{"image": "http://img.qdaily.com/article/banner/20180608134753CxqFJkQYwcPmoy0G.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54082, "publish_time": "2018-06-08 14:37:57", "type": "时尚", "comment_count": 7, "praise_count": 22, "title": "Gucci 今年销售额计划过百亿,以及,Saint Laurent 创意总监第一场男装秀| 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/54082.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/0.json>
{"image": "http://img.qdaily.com/article/banner/201806071329101Jhp375CoVm9OIzv.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54040, "publish_time": "2018-06-07 13:29:29", "type": "时尚", "comment_count": 0, "praise_count": 22, "title": "LVMH Price 首次颁给了亚洲设计师,以及,Yoox 的世界杯胶囊系列挺好看 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/54040.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/0.json>
{"image": "http://img.qdaily.com/article/banner/20180606140224Upb72CcePV91oHjn.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53990, "publish_time": "2018-06-06 14:28:29", "type": "时尚", "comment_count": 5, "praise_count": 24, "title": "Kate Spade 去世,以及,Virgil Abloh 做了一只全透明旅行箱 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/53990.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180606085232F08gclYykvj3Dfsa.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53989, "publish_time": "2018-06-06 13:52:14", "type": "时尚", "comment_count": 6, "praise_count": 72, "title": "时尚设计师Kate Spade去世,她的名字是伶俐手袋的代名词", "url": "http://app3.qdaily.com/app3/articles/detail/53989.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180614171835rsTWCa97cIxRvSme.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54281, "publish_time": "2018-06-17 07:08:24", "type": "智能", "comment_count": 0, "praise_count": 11, "title": "把黑胶和 Wi-Fi 音箱做到一起后,这个团队推出了两款新品 | CES Asia", "url": "http://app3.qdaily.com/app3/articles/detail/54281.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180616155751uJ2CeI4hnGzoqvDK.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54353, "publish_time": "2018-06-17 07:07:37", "type": "智能", "comment_count": 1, "praise_count": 4, "title": "跑车制造商 Panoz 造出自修复油漆,车身被划可自动复原", "url": "http://app3.qdaily.com/app3/articles/detail/54353.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180615141232aeznk9jgdLf0YiWN.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54327, "publish_time": "2018-06-16 07:24:03", "type": "智能", "comment_count": 8, "praise_count": 49, "title": "为什么自动驾驶必须用高精度地图,高德解释了原因 | CES Asia", "url": "http://app3.qdaily.com/app3/articles/detail/54327.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180615100725GRw5yoEPfB86UmWQ.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54315, "publish_time": "2018-06-16 07:20:35", "type": "智能", "comment_count": 5, "praise_count": 27, "title": "马斯克“无聊公司”第一笔生意:在芝加哥建机场高速地下通道", "url": "http://app3.qdaily.com/app3/articles/detail/54315.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180615150342MeEhiNmqPul6DrW7.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54331, "publish_time": "2018-06-15 17:59:04", "type": "智能", "comment_count": 16, "praise_count": 49, "title": "美国证监会认为比特币以太币们不属于证券不用监管,价格立刻反弹", "url": "http://app3.qdaily.com/app3/articles/detail/54331.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180615102837RXN6Ow2eg1hnUSqM.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54317, "publish_time": "2018-06-15 12:51:01", "type": "智能", "comment_count": 28, "praise_count": 49, "title": "申通和韵达退出丰巢快递柜,巨头垄断和政策都在影响这个生意", "url": "http://app3.qdaily.com/app3/articles/detail/54317.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180615102621kO5YXLG8RzrgSv1b.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54316, "publish_time": "2018-06-15 11:11:11", "type": "智能", "comment_count": 90, "praise_count": 130, "title": "Steam 要推出中国版,这对玩家们来说不会是好消息", "url": "http://app3.qdaily.com/app3/articles/detail/54316.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180615091050VfTcuYHDr9odemGL.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54312, "publish_time": "2018-06-15 09:46:45", "type": "智能", "comment_count": 3, "praise_count": 12, "title": "丰田投资打车公司 Grab,传统车企都在找卖车以外的收入来源", "url": "http://app3.qdaily.com/app3/articles/detail/54312.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180614162854ZSefkHsn9Wdb1BGA.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54282, "publish_time": "2018-06-15 08:19:25", "type": "智能", "comment_count": 52, "praise_count": 97, "title": "苹果将修复一个破解手机的漏洞,美国警方很愤怒", "url": "http://app3.qdaily.com/app3/articles/detail/54282.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/0.json>
{"image": "http://img.qdaily.com/article/article_show/201806161747117CFnP0DRjpKNcUSM.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54354, "publish_time": "2018-06-17 07:11:14", "type": "娱乐", "comment_count": 5, "praise_count": 3, "title": "华谊兄弟公布了近一年半的片单,有《手机 2》等 20 部作品", "url": "http://app3.qdaily.com/app3/articles/detail/54354.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180614173353NJil0OXnBv7TWayR.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 54285, "publish_time": "2018-06-17 07:10:45", "type": "娱乐", "comment_count": 14, "praise_count": 55, "title": "这都多少年了,为什么我们喜欢的故事套路还这么相近?", "url": "http://app3.qdaily.com/app3/articles/detail/54285.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180616073257YednW4sTGFpXVAit.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54343, "publish_time": "2018-06-16 07:23:23", "type": "娱乐", "comment_count": 7, "praise_count": 68, "title": "苹果计划用一部动画片进军好莱坞,还指望着它拿奥斯卡", "url": "http://app3.qdaily.com/app3/articles/detail/54343.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180615110942gNzQkiyjhv6dL9A3.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54309, "publish_time": "2018-06-15 13:52:26", "type": "娱乐", "comment_count": 30, "praise_count": 28, "title": "「本周新片」《侏罗纪世界 2》没什么新意,视效倒是挺炫酷", "url": "http://app3.qdaily.com/app3/articles/detail/54309.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180615102055B6DnVFaTp4KEvRoJ.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54313, "publish_time": "2018-06-15 10:34:11", "type": "娱乐", "comment_count": 15, "praise_count": 30, "title": "今日娱乐:俄罗斯世界杯揭幕战,王家卫《阿飞正传》内地定档", "url": "http://app3.qdaily.com/app3/articles/detail/54313.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180614121558czxIl0mD6gZJvsVA.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54269, "publish_time": "2018-06-15 07:37:38", "type": "娱乐", "comment_count": 4, "praise_count": 30, "title": "由蒂姆·伯顿执导的真人版《小飞象》,发布了首支预告", "url": "http://app3.qdaily.com/app3/articles/detail/54269.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180614181856hKUfvOLHBCXQ72ai.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54288, "publish_time": "2018-06-15 07:37:26", "type": "娱乐", "comment_count": 36, "praise_count": 68, "title": "面对歧视指控,好莱坞还在用疤痕区分好人和坏人", "url": "http://app3.qdaily.com/app3/articles/detail/54288.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/0.json>
{"image": "http://img.qdaily.com/article/banner/20180615073647uWNHpA2hoSk75aGL.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54299, "publish_time": "2018-06-15 07:37:08", "type": "娱乐", "comment_count": 73, "praise_count": 553, "title": "NHK《纪实 72 小时》来到中国,展现一个“温暖、真实、复杂”的社会", "url": "http://app3.qdaily.com/app3/articles/detail/54299.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180614111902WEI1RLXYO290TNgC.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54261, "publish_time": "2018-06-14 13:18:05", "type": "娱乐", "comment_count": 14, "praise_count": 57, "title": "《招魂 2》里的恶魔修女出了预告片,本部由温子仁编剧", "url": "http://app3.qdaily.com/app3/articles/detail/54261.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180614113324ZXbTgdzO5KnAM4jQ.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54263, "publish_time": "2018-06-14 13:11:06", "type": "娱乐", "comment_count": 11, "praise_count": 43, "title": "达米恩·查泽雷的《第一人》,会用日常视角呈现人类首次登月", "url": "http://app3.qdaily.com/app3/articles/detail/54263.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180614101249BnwMaoKUO5viEeNS.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54254, "publish_time": "2018-06-14 10:38:34", "type": "娱乐", "comment_count": 11, "praise_count": 9, "title": "今日娱乐:康卡斯特竞购福斯资产,北美三国获得 2026 世界杯主办权", "url": "http://app3.qdaily.com/app3/articles/detail/54254.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180613210450tVlfJyPU45amgvk3.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54242, "publish_time": "2018-06-14 07:20:00", "type": "娱乐", "comment_count": 177, "praise_count": 148, "title": "抖音日活用户超过 1.5 亿,短视频成了视频网站的竞争对手?", "url": "http://app3.qdaily.com/app3/articles/detail/54242.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/0.json>
{"image": "http://img.qdaily.com/article/article_show/201806141419583ZHp4U2AWamo8Cyn.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54275, "publish_time": "2018-06-15 07:43:47", "type": "智能", "comment_count": 8, "praise_count": 19, "title": "深圳开始给电动物流车发放运营补贴,虽然它的效率还不如人意", "url": "http://app3.qdaily.com/app3/articles/detail/54275.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180614224248TBAv5rW7ZYRK639J.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54302, "publish_time": "2018-06-15 07:25:05", "type": "智能", "comment_count": 4, "praise_count": 38, "title": "花旗银行计划 5 年内让人工智能代替 1 万个工作岗位", "url": "http://app3.qdaily.com/app3/articles/detail/54302.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180614214719T7UdftVWHyvujQ3Z.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54297, "publish_time": "2018-06-15 07:09:58", "type": "智能", "comment_count": 14, "praise_count": 39, "title": "监控技术继续升级,中国将建立追踪汽车的电子识别系统", "url": "http://app3.qdaily.com/app3/articles/detail/54297.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/0.json>
{"image": "http://img.qdaily.com/article/banner/20180607095750LuSMBGokPv3AyZeT.JPG?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54029, "publish_time": "2018-06-07 05:57:18", "type": "10个图", "comment_count": 51, "praise_count": 599, "title": "证监会特批的富士康周五在 A 股上市,这个公司不是组装 iPhone 那么简单", "url": "http://app3.qdaily.com/app3/articles/detail/54029.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/0.json>
{"image": "http://img.qdaily.com/article/banner/201806011450590kDQa1hzTAmrqdUG.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53859, "publish_time": "2018-06-01 14:52:43", "type": "10个图", "comment_count": 52, "praise_count": 1460, "title": "每年最重要的那份互联网报告又来了,它也开始担心技术带来的问题", "url": "http://app3.qdaily.com/app3/articles/detail/53859.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/0.json>
{"image": "http://img.qdaily.com/article/banner/20180525093056Z2R0t5U1fhKXvmWB.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53592, "publish_time": "2018-05-25 05:57:51", "type": "10个图", "comment_count": 193, "praise_count": 1933, "title": "人口它是个问题 | 未来十年中国的年轻人可能会少 36%,11 张图告诉你城市抢人是怎么回事", "url": "http://app3.qdaily.com/app3/articles/detail/53592.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/0.json>
{"image": "http://img.qdaily.com/article/banner/20180514225101JsZvTgzNmIRD9hQ1.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53171, "publish_time": "2018-05-15 06:00:39", "type": "10个图", "comment_count": 35, "praise_count": 742, "title": "6 年 500 亿美元的大小收购之后,一个投资公司把咖啡市场变成了资本的游戏", "url": "http://app3.qdaily.com/app3/articles/detail/53171.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/0.json>
{"image": "http://img.qdaily.com/article/banner/20180424084909PaKI7fNdz3Gv6ZVk.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52472, "publish_time": "2018-04-24 06:05:51", "type": "10个图", "comment_count": 54, "praise_count": 766, "title": "中国人坐飞机没太大变化,但三大航空公司利润空前,13 张图带你看这个市场发生了什么", "url": "http://app3.qdaily.com/app3/articles/detail/52472.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/0.json>
{"image": "http://img.qdaily.com/article/banner/20180307164951DUp8qgZRbxtcrKwJ.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 50896, "publish_time": "2018-03-09 05:56:25", "type": "10个图", "comment_count": 173, "praise_count": 996, "title": "11 年、85 亿部之后,智能手机的增长到了尽头", "url": "http://app3.qdaily.com/app3/articles/detail/50896.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/0.json>
{"image": "http://img.qdaily.com/article/banner/20180301090304EoucSn6JkdNLh0ZO.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 50681, "publish_time": "2018-03-01 06:09:29", "type": "10个图", "comment_count": 132, "praise_count": 1022, "title": "一年亏损 37 亿的爱奇艺申请上市,这 9 张图告诉你中国互联网视频行业现在是什么样子", "url": "http://app3.qdaily.com/app3/articles/detail/50681.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/0.json>
{"image": "http://img.qdaily.com/article/banner/20180228001551qisDTAXbZjdVKWCL.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 50635, "publish_time": "2018-02-28 05:51:14", "type": "10个图", "comment_count": 90, "praise_count": 538, "title": "超过四分之一的中国人春节期间都去旅游了,大约 5368 亿元是怎么花出来的?", "url": "http://app3.qdaily.com/app3/articles/detail/50635.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/0.json>
{"image": "http://img.qdaily.com/article/banner/20180131110705S5KeMkCiz72sEY1o.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 49774, "publish_time": "2018-02-01 06:13:42", "type": "10个图", "comment_count": 44, "praise_count": 487, "title": "一边拯救好莱坞,一边对它落井下石,Netflix 如何靠全球化渠道改造了娱乐业?", "url": "http://app3.qdaily.com/app3/articles/detail/49774.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/0.json>
{"image": "http://img.qdaily.com/article/banner/20180129071834Kwog1dX4yfm6ikxO.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 49679, "publish_time": "2018-01-29 07:18:44", "type": "10个图", "comment_count": 31, "praise_count": 378, "title": "家乐福接受腾讯、永辉入股,这家在中国节节败退的公司手中还剩下什么?", "url": "http://app3.qdaily.com/app3/articles/detail/49679.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/0.json>
{"image": "http://img.qdaily.com/article/banner/20180101194047fwcK4zHOvLkUnsld.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 48787, "publish_time": "2018-01-02 07:05:51", "type": "10个图", "comment_count": 148, "praise_count": 667, "title": "2017 年,523 亿电影票房的背后都发生了什么?| 二零一七年度报告", "url": "http://app3.qdaily.com/app3/articles/detail/48787.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/0.json>
{"image": "http://img.qdaily.com/article/banner/20171225225141S2pJUY0wqQ8i17hf.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 48594, "publish_time": "2017-12-26 07:08:29", "type": "10个图", "comment_count": 37, "praise_count": 493, "title": "花了三年终于要上市的德邦,做的快运生意和顺丰们有什么不同?", "url": "http://app3.qdaily.com/app3/articles/detail/48594.json"}
2018-06-17 10:01:31 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/17/0.json> (referer: None)
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180616192615txNlR6ZDHauO5d1L.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54357, "publish_time": "2018-06-17 07:09:05", "type": "设计", "comment_count": 0, "praise_count": 10, "title": "街头长椅也是城市风景,用好了心情愉悦|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/54357.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/0.json>
{"image": "http://img.qdaily.com/article/banner/20180616074755n3uFdlMTY2pCDrck.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54245, "publish_time": "2018-06-16 07:48:02", "type": "设计", "comment_count": 3, "praise_count": 98, "title": "备受关注的蛇形画廊,今年在伦敦和北京做的定制建筑各自该如何解读?", "url": "http://app3.qdaily.com/app3/articles/detail/54245.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180614220345Cs02OgkAWnHu4tZ9.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54298, "publish_time": "2018-06-15 07:27:33", "type": "设计", "comment_count": 6, "praise_count": 46, "title": "这套家居香氛,有“五个季节”的香气|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/54298.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/0.json>
{"image": "http://img.qdaily.com/article/banner/20180609164851y4XrY39JPASBClN6.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54053, "publish_time": "2018-06-14 07:17:51", "type": "设计", "comment_count": 12, "praise_count": 231, "title": "杭州有一场蕾丝艺术展,想要打破你对蕾丝的既有认知", "url": "http://app3.qdaily.com/app3/articles/detail/54053.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180613232631ECxaBs73NILMzTgl.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54244, "publish_time": "2018-06-14 07:17:35", "type": "设计", "comment_count": 7, "praise_count": 114, "title": "什么样的彩色灯光,才不会让你家看起来像夜总会?|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/54244.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180612232941ldmVFRG1HuZ5wjy7.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54213, "publish_time": "2018-06-13 06:59:45", "type": "设计", "comment_count": 7, "praise_count": 39, "title": "Sonos 发布智能音响 Beam,小巧紧凑和电视很搭|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/54213.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180611235937qJ6IrS2TAsmfkNda.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54169, "publish_time": "2018-06-12 14:01:19", "type": "设计", "comment_count": 7, "praise_count": 92, "title": "首个 3D 打印的房屋将出现在荷兰,未来可以个性化定制", "url": "http://app3.qdaily.com/app3/articles/detail/54169.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180611215233ETg7B5NSALPaH2jX.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54167, "publish_time": "2018-06-12 07:04:35", "type": "设计", "comment_count": 3, "praise_count": 64, "title": "高度较低的座椅沙发会让人们更舒适放松吗?|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/54167.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180611165019r5ytBaRsvGTwmi2Y.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54159, "publish_time": "2018-06-12 06:57:21", "type": "设计", "comment_count": 2, "praise_count": 100, "title": "朋克文化对平面设计产生过什么样的影响?一个展览解释这事", "url": "http://app3.qdaily.com/app3/articles/detail/54159.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180610222659tKJky8ewqXNPOrz3.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54129, "publish_time": "2018-06-11 07:05:49", "type": "设计", "comment_count": 6, "praise_count": 85, "title": "一口气出8款特别款手工地毯,宜家这次跨界挺活跃|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/54129.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180609172807ik1CeAPJN0fMZX6u.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54117, "publish_time": "2018-06-10 07:14:13", "type": "设计", "comment_count": 4, "praise_count": 203, "title": "过去教堂常用的彩绘玻璃,现在成了时髦的设计元素|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/54117.json"}
2018-06-17 10:01:31 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180607213512a6sjlxAnEFgSyfwJ.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54063, "publish_time": "2018-06-08 07:25:39", "type": "设计", "comment_count": 6, "praise_count": 124, "title": "一个新设计品牌,想要赋予新家具老物件的味道|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/54063.json"}
2018-06-17 10:01:31 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/18/0.json> (referer: None)
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180615140937QsaJXnHVLr0WMvqb.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54325, "publish_time": "2018-06-17 07:07:54", "type": "商业", "comment_count": 4, "praise_count": 21, "title": "中国 5 月固定投资和社会消费增速再创新低,地产投资独木难支", "url": "http://app3.qdaily.com/app3/articles/detail/54325.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180617071908CKalyIJNFYtDhUHW.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54358, "publish_time": "2018-06-17 07:07:25", "type": "商业", "comment_count": 1, "praise_count": 4, "title": "怎么吃才健康依然难以捉摸,地中海饮食降低心脏病风险的重要研究被撤回", "url": "http://app3.qdaily.com/app3/articles/detail/54358.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180614203442uYVgbm4ZD2dOFPyL.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54293, "publish_time": "2018-06-16 07:26:04", "type": "商业", "comment_count": 29, "praise_count": 49, "title": "辽宁对房地产市场开展专项整治,大连和沈阳被单独点名", "url": "http://app3.qdaily.com/app3/articles/detail/54293.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/0.json>
{"image": "http://img.qdaily.com/article/article_show/2018061515430850NbCvfB8PeFJSuA.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 54332, "publish_time": "2018-06-16 07:24:12", "type": "商业", "comment_count": 12, "praise_count": 81, "title": "改善女性性欲的药物重新发售,可以在网上问诊并拿到处方", "url": "http://app3.qdaily.com/app3/articles/detail/54332.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/0.json>
{"image": "http://img.qdaily.com/article/article_show/201806151035377T0XMWQLBjbA9EU4.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54318, "publish_time": "2018-06-16 07:23:49", "type": "商业", "comment_count": 5, "praise_count": 38, "title": "开着花哨的大车在街上卖货,亚马逊这个营销游戏玩了三年", "url": "http://app3.qdaily.com/app3/articles/detail/54318.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180615171351IetrCU3TLGMJKQWh.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54341, "publish_time": "2018-06-16 07:16:02", "type": "商业", "comment_count": 9, "praise_count": 66, "title": "证监会问了小米 84 个问题,主要说了些什么?", "url": "http://app3.qdaily.com/app3/articles/detail/54341.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180615164830rFKmjvRNIXywnq8g.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54337, "publish_time": "2018-06-15 19:51:11", "type": "商业", "comment_count": 10, "praise_count": 28, "title": "New Balance 的第一届世界杯,赞助球星不够 YouTube 网红来凑", "url": "http://app3.qdaily.com/app3/articles/detail/54337.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/0.json>
{"image": "http://img.qdaily.com/article/article_show/201806151727135qOsryfZ2emHlVah.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54326, "publish_time": "2018-06-15 17:11:13", "type": "商业", "comment_count": 60, "praise_count": 144, "title": "世界杯昨日揭幕,中国队不在,但中国元素挺多", "url": "http://app3.qdaily.com/app3/articles/detail/54326.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180615131538O6lBzdhQSY4Nk8W2.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 54322, "publish_time": "2018-06-15 17:08:48", "type": "商业", "comment_count": 30, "praise_count": 71, "title": "京东和唯品会发了一份消费趋势报告,试图说明男性在京东不只买电子产品", "url": "http://app3.qdaily.com/app3/articles/detail/54322.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180614150748jfEwD7duULCiGlP1.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54276, "publish_time": "2018-06-15 15:52:35", "type": "商业", "comment_count": 6, "praise_count": 30, "title": "微信上线亲属卡代付功能,搜索信息流也增加了商品分类", "url": "http://app3.qdaily.com/app3/articles/detail/54276.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180615081316OaE9wYn1C8siDHyt.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54307, "publish_time": "2018-06-15 15:21:25", "type": "商业", "comment_count": 54, "praise_count": 98, "title": "大公司头条:北京发布外牌车管理新政,外地牌照每年最多只有 84 天能进六环;俄罗斯世界杯中国赞助商占 1/3,护旗手也是万达找的;海航拟出售海口 CBD 日月广场,原本计划要再投资 200 亿", "url": "http://app3.qdaily.com/app3/articles/detail/54307.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180615115122cqKXGh8kHxN4IUZV.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54321, "publish_time": "2018-06-15 13:24:26", "type": "商业", "comment_count": 10, "praise_count": 39, "title": "Zara 母公司业绩喜忧参半,它将继续关闭小店拓展线上业务", "url": "http://app3.qdaily.com/app3/articles/detail/54321.json"}
2018-06-17 10:01:32 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/54/0.json> (referer: None)
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180613165020Q0AqTPnSuVKpdWIO.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54235, "publish_time": "2018-06-14 07:19:50", "type": "游戏", "comment_count": 24, "praise_count": 41, "title": "Fortnite 移植到 Switch,全明星大乱斗有游戏史最大的交叉阵容", "url": "http://app3.qdaily.com/app3/articles/detail/54235.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180612130827hArjgpGsTqa6lVbv.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54179, "publish_time": "2018-06-12 13:34:43", "type": "游戏", "comment_count": 33, "praise_count": 107, "title": "靠干货取胜,PS4 末期仍然有最值得期待的游戏", "url": "http://app3.qdaily.com/app3/articles/detail/54179.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180611110114bdhElSV2fns38YLB.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54137, "publish_time": "2018-06-11 17:38:00", "type": "游戏", "comment_count": 23, "praise_count": 76, "title": "让人感慨的 B 社发布会,见证了单机向网游和手游的温和演化", "url": "http://app3.qdaily.com/app3/articles/detail/54137.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180611082803clYWeCKnhgZS9rwN.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54134, "publish_time": "2018-06-11 13:14:27", "type": "游戏", "comment_count": 59, "praise_count": 113, "title": "微软两小时秀了 15 款游戏,迈出了翻盘的重要一步", "url": "http://app3.qdaily.com/app3/articles/detail/54134.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180610200536Lwh78bc2iu3YXePO.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54127, "publish_time": "2018-06-11 07:04:17", "type": "游戏", "comment_count": 20, "praise_count": 96, "title": "平庸的 EA 发布会拉开了 E3 序幕,亮点可能是两部独立游戏", "url": "http://app3.qdaily.com/app3/articles/detail/54127.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180607175335m4e120aPGuNAfqLO.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54055, "publish_time": "2018-06-08 07:25:51", "type": "游戏", "comment_count": 26, "praise_count": 102, "title": "什么样的游戏不该上架?Steam 母公司已经决定不管了", "url": "http://app3.qdaily.com/app3/articles/detail/54055.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180604224803bkBl1NHnXWaEsFdD.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53940, "publish_time": "2018-06-05 07:05:31", "type": "游戏", "comment_count": 41, "praise_count": 100, "title": "今年这些 E3 基本确定出现的新游戏值得关注,但预购需谨慎", "url": "http://app3.qdaily.com/app3/articles/detail/53940.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180531161115Xt2v5ExfRQkUAFTh.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53825, "publish_time": "2018-05-31 16:55:33", "type": "游戏", "comment_count": 43, "praise_count": 224, "title": "任天堂再次圆了玩家梦想,是能随身携带的实体精灵球", "url": "http://app3.qdaily.com/app3/articles/detail/53825.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180531092002oFWlQDL9Oc5EVrI4.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53803, "publish_time": "2018-05-31 11:27:05", "type": "游戏", "comment_count": 23, "praise_count": 55, "title": "赶在 E3 之前预热,B 社公布了新作《辐射 76》预告片", "url": "http://app3.qdaily.com/app3/articles/detail/53803.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180528121104IU6qGZlpkAKbmCX3.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53669, "publish_time": "2018-05-28 12:27:50", "type": "游戏", "comment_count": 26, "praise_count": 109, "title": "新瓶旧酒《底特律:变人》,是人类对仿生人革命的表面解读", "url": "http://app3.qdaily.com/app3/articles/detail/53669.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180523134329lRkhxuAj2sO7QMD1.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53514, "publish_time": "2018-05-23 14:08:38", "type": "游戏", "comment_count": 28, "praise_count": 65, "title": "PS4 进入生涯末期,索尼将在之后三年注重月活用户发展", "url": "http://app3.qdaily.com/app3/articles/detail/53514.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180518191108OwgFibqYCNWHZnr4.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53367, "publish_time": "2018-05-20 07:08:14", "type": "游戏", "comment_count": 20, "praise_count": 100, "title": "设定在架空苏联的 FPS 《原子心》,像生化奇兵和辐射的孩子", "url": "http://app3.qdaily.com/app3/articles/detail/53367.json"}
2018-06-17 10:01:32 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/4/1529017798.json> (referer: http://app3.qdaily.com/app3/categories/index/4/0.json)
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1529017798.json>
{"image": "http://img.qdaily.com/article/article_show/201806141533452g3XODbFqIVZvdHs.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54279, "publish_time": "2018-06-15 07:02:09", "type": "智能", "comment_count": 6, "praise_count": 27, "title": "一度停滞的微软硬件业务又有了动静,HoloLens 和 Surface 会有集中更新", "url": "http://app3.qdaily.com/app3/articles/detail/54279.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1529017798.json>
{"image": "http://img.qdaily.com/article/article_show/20180614193408FDjWryVzCZE31Kih.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54283, "publish_time": "2018-06-14 19:37:27", "type": "智能", "comment_count": 24, "praise_count": 73, "title": "本田展示了外骨骼动力装置,我们穿上试了一下 | CES Asia", "url": "http://app3.qdaily.com/app3/articles/detail/54283.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1529017798.json>
{"image": "http://img.qdaily.com/article/article_show/20180614105101jouSMsLxPt3dWeV7.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54259, "publish_time": "2018-06-14 13:08:49", "type": "智能", "comment_count": 8, "praise_count": 58, "title": "Crispr 基因编辑疗法可能会引发癌症,相关股票价格大幅下挫", "url": "http://app3.qdaily.com/app3/articles/detail/54259.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1529017798.json>
{"image": "http://img.qdaily.com/article/article_show/20180614090032vyVi6srPFhZ1QulO.JPG?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54251, "publish_time": "2018-06-14 11:21:08", "type": "智能", "comment_count": 11, "praise_count": 65, "title": "车不好卖,设计独到的折叠电动自行车 Stigo 也要来中国做共享", "url": "http://app3.qdaily.com/app3/articles/detail/54251.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1529017798.json>
{"image": "http://img.qdaily.com/article/article_show/20180613143339xG0maRYTXiz5dD1p.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54225, "publish_time": "2018-06-13 18:25:42", "type": "智能", "comment_count": 11, "praise_count": 55, "title": "特斯拉将裁员 9%,影响约 4100 名员工", "url": "http://app3.qdaily.com/app3/articles/detail/54225.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1529017798.json>
{"image": "http://img.qdaily.com/article/article_show/20180613115332yEGdOBxnYqH5RF2S.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54223, "publish_time": "2018-06-13 14:22:32", "type": "智能", "comment_count": 2, "praise_count": 69, "title": "采集呼吸能检测癌症?英国公司希望用百元设备取代 CT 扫描", "url": "http://app3.qdaily.com/app3/articles/detail/54223.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1529017798.json>
{"image": "http://img.qdaily.com/article/article_show/20180612213941ItnLiwCvzPu1OZK8.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54211, "publish_time": "2018-06-13 07:09:29", "type": "智能", "comment_count": 15, "praise_count": 35, "title": "拜腾在上海发布了一辆概念车,离量产据说还有 4 年", "url": "http://app3.qdaily.com/app3/articles/detail/54211.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1529017798.json>
{"image": "http://img.qdaily.com/article/article_show/20180613072544sfn4ZoJdm62IU1He.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54205, "publish_time": "2018-06-13 07:02:01", "type": "智能", "comment_count": 61, "praise_count": 83, "title": "应对儿童失踪问题,广州将在出生证中加入 DNA 信息", "url": "http://app3.qdaily.com/app3/articles/detail/54205.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1529017798.json>
{"image": "http://img.qdaily.com/article/article_show/20180612223246cx6bW10LyhTRMni5.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54202, "publish_time": "2018-06-13 01:47:26", "type": "智能", "comment_count": 121, "praise_count": 77, "title": "vivo 推出了新的手机品牌 NEX,这次不请代言人了", "url": "http://app3.qdaily.com/app3/articles/detail/54202.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1529017798.json>
{"image": "http://img.qdaily.com/article/article_show/20180612173210cWSm30ofQ2vdMeag.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54201, "publish_time": "2018-06-12 20:41:08", "type": "智能", "comment_count": 23, "praise_count": 198, "title": "早期投资者大多套现,比特币成了投机游戏 | 好奇心小数据", "url": "http://app3.qdaily.com/app3/articles/detail/54201.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1529017798.json>
{"image": "http://img.qdaily.com/article/article_show/20180612110432J5KAtbiIUzPDrBwn.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54181, "publish_time": "2018-06-12 17:27:06", "type": "智能", "comment_count": 0, "praise_count": 40, "title": "亚马逊改造全食超市 1 年了,变化更大的其实是对手", "url": "http://app3.qdaily.com/app3/articles/detail/54181.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1529017798.json>
{"image": "http://img.qdaily.com/article/article_show/20180612160807TBRsA7SXDwQ5mO8L.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54190, "publish_time": "2018-06-12 17:22:19", "type": "智能", "comment_count": 50, "praise_count": 95, "title": "阿里巴巴又出了一个读书应用,说要做严肃文学", "url": "http://app3.qdaily.com/app3/articles/detail/54190.json"}
2018-06-17 10:01:32 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/1/1528440833.json> (referer: http://app3.qdaily.com/app3/categories/index/1/0.json)
2018-06-17 10:01:32 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/16/0.json> (referer: None)
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1528440833.json>
{"image": "http://img.qdaily.com/article/banner/20180607223629FTXrPuD4YdvhjCNg.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54065, "publish_time": "2018-06-08 06:05:55", "type": "长文章", "comment_count": 80, "praise_count": 677, "title": "“登上了珠峰又怎样?”一个“成熟”王石的诞生 | “十年” ⑦", "url": "http://app3.qdaily.com/app3/articles/detail/54065.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1528440833.json>
{"image": "http://img.qdaily.com/article/banner/20180607010336hz3omIMDplRSivb5.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54027, "publish_time": "2018-06-07 14:00:23", "type": "长文章", "comment_count": 58, "praise_count": 299, "title": "“警告父母,专辑内容不雅”,音乐里的“脏东西”真的应该为青少年行为负责吗?", "url": "http://app3.qdaily.com/app3/articles/detail/54027.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1528440833.json>
{"image": "http://img.qdaily.com/article/banner/201805311816410noBTRrO75fuisvY.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53827, "publish_time": "2018-06-06 14:04:52", "type": "长文章", "comment_count": 29, "praise_count": 342, "title": "1988年生作家钱佳楠,正在探索“一种能够穿越国界的世界文学” | 访谈录", "url": "http://app3.qdaily.com/app3/articles/detail/53827.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1528440833.json>
{"image": "http://img.qdaily.com/article/banner/20180606053916VSICvo8cFQZx2taJ.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53958, "publish_time": "2018-06-06 06:05:59", "type": "长文章", "comment_count": 82, "praise_count": 855, "title": "有想法的人都向往 706,因为它尝试各种可能 | 这里是五道口,年轻人很多②", "url": "http://app3.qdaily.com/app3/articles/detail/53958.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1528440833.json>
{"image": "http://img.qdaily.com/article/banner/20180604174832qSWtDYTjVux4BLnM.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53790, "publish_time": "2018-06-05 14:33:14", "type": "长文章", "comment_count": 101, "praise_count": 1257, "title": "夜店兴衰和混迹于其中的人们 | 这里是五道口,年轻人很多①", "url": "http://app3.qdaily.com/app3/articles/detail/53790.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1528440833.json>
{"image": "http://img.qdaily.com/article/banner/20180605072640XU8V73DRwmsvzqJt.JPG?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53943, "publish_time": "2018-06-05 06:34:02", "type": "长文章", "comment_count": 167, "praise_count": 731, "title": "iOS 12、防沉迷系统、自动提醒你涂防晒霜的 Siri,苹果发布会有十个值得关注的软件更新", "url": "http://app3.qdaily.com/app3/articles/detail/53943.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1528440833.json>
{"image": "http://img.qdaily.com/article/banner/20180514165208UGTt6C8uopwlad4b.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53144, "publish_time": "2018-06-04 14:27:23", "type": "长文章", "comment_count": 113, "praise_count": 481, "title": "这些给自己身体植入磁铁和 RFID 芯片的人看起来疯了,请叫他们医学朋克", "url": "http://app3.qdaily.com/app3/articles/detail/53144.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1528440833.json>
{"image": "http://img.qdaily.com/article/banner/20180604083148og6xpeP9qWsvctKl.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53837, "publish_time": "2018-06-04 05:43:06", "type": "长文章", "comment_count": 87, "praise_count": 861, "title": "苹果冲向万亿市值,它是怎么做到的,这又意味着什么?", "url": "http://app3.qdaily.com/app3/articles/detail/53837.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1528440833.json>
{"image": "http://img.qdaily.com/article/banner/20180601174201Q8WSXaTveBAphKIk.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53628, "publish_time": "2018-06-03 07:06:00", "type": "长文章", "comment_count": 54, "praise_count": 2233, "title": "毕业季是各种情绪的爆发,这里有 11 个建议和方法帮你度过它 | Hack Your Life", "url": "http://app3.qdaily.com/app3/articles/detail/53628.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1528440833.json>
{"image": "http://img.qdaily.com/article/banner/20180512200243USEXgOIK30qlQPua.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53101, "publish_time": "2018-06-02 07:46:12", "type": "长文章", "comment_count": 83, "praise_count": 869, "title": "不患寡而患不均:嫉妒心如何影响我们理解所谓的“公平”?", "url": "http://app3.qdaily.com/app3/articles/detail/53101.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1528440833.json>
{"image": "http://img.qdaily.com/article/banner/20180528110501JNWuePaIMbQ1FqEL.JPG?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53664, "publish_time": "2018-05-31 13:55:07", "type": "长文章", "comment_count": 14, "praise_count": 254, "title": "一个人盖五层楼,第 13 年,建筑师能表达的唯一一件事 | 吉井忍的二次会", "url": "http://app3.qdaily.com/app3/articles/detail/53664.json"}
2018-06-17 10:01:32 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1528440833.json>
{"image": "http://img.qdaily.com/article/banner/201805302243501wcg4uEfrCYzSyXD.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53793, "publish_time": "2018-05-31 06:03:38", "type": "长文章", "comment_count": 94, "praise_count": 430, "title": "“我在教室里很难过,我在寝室里也难过”| “十年” ⑥", "url": "http://app3.qdaily.com/app3/articles/detail/53793.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/0.json>
None
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/0.json>
None
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/0.json>
None
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/0.json>
None
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/0.json>
None
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/0.json>
None
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/0.json>
None
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180614150634DVfIYbQSJXn4mpRe.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54236, "publish_time": "2018-06-15 07:43:36", "type": "Top15", "comment_count": 8, "praise_count": 36, "title": "被阿里投资半年后,大润发开始用阿里的渠道线上卖生鲜", "url": "http://app3.qdaily.com/app3/articles/detail/54236.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/0.json>
None
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/0.json>
None
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180614104232BohTY4y2Er3P5icD.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54256, "publish_time": "2018-06-14 11:21:17", "type": "Top15", "comment_count": 7, "praise_count": 21, "title": "麦当劳出世界杯周边,美的空调发布丢火车乐队 MV|乙方日报", "url": "http://app3.qdaily.com/app3/articles/detail/54256.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180614082656dnTWlXyefrD8ZoY5.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54249, "publish_time": "2018-06-14 08:53:57", "type": "Top15", "comment_count": 146, "praise_count": 130, "title": "大公司头条:滴滴恢复顺风车夜间服务,只允许司机接同性乘客;阿里和袁隆平合作,要将“海水稻”加入“亩产一千美金”计划;美国国会本周发起表决,可能推翻中兴和解协议", "url": "http://app3.qdaily.com/app3/articles/detail/54249.json"}
2018-06-17 10:01:33 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/3/1528932000.json> (referer: http://app3.qdaily.com/app3/categories/index/3/0.json)
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528932000.json>
None
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528932000.json>
{"image": "http://img.qdaily.com/article/article_show/20180613102833w2VbzirEMA49DuTN.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54220, "publish_time": "2018-06-13 10:53:53", "type": "娱乐", "comment_count": 9, "praise_count": 26, "title": "今日娱乐:澳门赌王何鸿燊退休,联邦法官放行 AT&T 与时代华纳并购", "url": "http://app3.qdaily.com/app3/articles/detail/54220.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528932000.json>
{"image": "http://img.qdaily.com/article/article_show/20180612101820T9da5X3ntHNPgAjZ.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54177, "publish_time": "2018-06-12 11:08:42", "type": "娱乐", "comment_count": 42, "praise_count": 42, "title": "今日娱乐:Steam 进入中国,华谊兄弟遭遇股权质押质疑", "url": "http://app3.qdaily.com/app3/articles/detail/54177.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528932000.json>
{"image": "http://img.qdaily.com/article/article_show/20180612020757IEJMh4KO2cvDpjNw.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54171, "publish_time": "2018-06-12 08:53:21", "type": "娱乐", "comment_count": 22, "praise_count": 122, "title": "是枝裕和获得日本第五个金棕榈后,说应与公权力保持距离", "url": "http://app3.qdaily.com/app3/articles/detail/54171.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528932000.json>
{"image": "http://img.qdaily.com/article/article_show/20180611161317M78XzorldhbJn5wH.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54156, "publish_time": "2018-06-12 08:51:26", "type": "娱乐", "comment_count": 2, "praise_count": 35, "title": "美国托尼奖颁出,《乐队来访》和“哈利波特”舞台剧得奖最多", "url": "http://app3.qdaily.com/app3/articles/detail/54156.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528932000.json>
{"image": "http://img.qdaily.com/article/article_show/20180611154031qTxX2Jl4sSbanoBC.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54154, "publish_time": "2018-06-11 17:36:29", "type": "娱乐", "comment_count": 10, "praise_count": 34, "title": "首位邦女郎去世,她帮助促成了那句“邦德。詹姆斯·邦德。”", "url": "http://app3.qdaily.com/app3/articles/detail/54154.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528932000.json>
{"image": "http://img.qdaily.com/article/article_show/201806111016351xFOiwTy2XMANlUc.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54136, "publish_time": "2018-06-11 10:55:09", "type": "娱乐", "comment_count": 16, "praise_count": 15, "title": "今日娱乐:约翰·拉塞特年底离开迪士尼和皮克斯,是枝裕和拒绝日本政府表彰", "url": "http://app3.qdaily.com/app3/articles/detail/54136.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528932000.json>
{"image": "http://img.qdaily.com/article/article_show/20180610192103YSmgfabicZedojMC.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54126, "publish_time": "2018-06-11 07:05:54", "type": "娱乐", "comment_count": 39, "praise_count": 52, "title": "「票房」半个六月空窗,背后是整个好莱坞对于电影项目的调整", "url": "http://app3.qdaily.com/app3/articles/detail/54126.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528932000.json>
{"image": "http://img.qdaily.com/article/article_show/20180610020531K6T2SJsztUbeVg89.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54120, "publish_time": "2018-06-11 06:57:28", "type": "娱乐", "comment_count": 5, "praise_count": 171, "title": "DC 漫画推出 7 部新作品,主题更黑暗也更贴近社会现实", "url": "http://app3.qdaily.com/app3/articles/detail/54120.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528932000.json>
{"image": "http://img.qdaily.com/article/article_show/20180608115954vocH5WKfXSRteYw3.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54088, "publish_time": "2018-06-09 07:34:33", "type": "娱乐", "comment_count": 19, "praise_count": 71, "title": "《一个明星的诞生》翻拍,布莱德利库珀和Lady Gaga出演", "url": "http://app3.qdaily.com/app3/articles/detail/54088.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528932000.json>
{"image": "http://img.qdaily.com/article/article_show/20180608173530eTlwr0QSo54nF7MO.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54095, "publish_time": "2018-06-08 18:19:42", "type": "娱乐", "comment_count": 20, "praise_count": 82, "title": "「本周新片」《厕所英雄》,它欢快地讲了一个沉重的故事", "url": "http://app3.qdaily.com/app3/articles/detail/54095.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528932000.json>
{"image": "http://img.qdaily.com/article/article_show/201806080956320fJlW2Csx3ezNTwF.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54078, "publish_time": "2018-06-08 10:55:56", "type": "娱乐", "comment_count": 19, "praise_count": 47, "title": "今日娱乐:上影节排片出炉,谷阿莫被诉侵权", "url": "http://app3.qdaily.com/app3/articles/detail/54078.json"}
2018-06-17 10:01:33 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/19/1528264334.json> (referer: http://app3.qdaily.com/app3/categories/index/19/0.json)
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1528264334.json>
{"image": "http://img.qdaily.com/article/article_show/20180605023655ol7N3CkpGxIDXMLR.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53946, "publish_time": "2018-06-05 10:22:34", "type": "时尚", "comment_count": 2, "praise_count": 42, "title": "赶世界杯热潮,耐克和一个网红、一个设计师推出足球联名系列", "url": "http://app3.qdaily.com/app3/articles/detail/53946.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1528264334.json>
{"image": "http://img.qdaily.com/article/banner/20180605073805nK60ElO9k3jgA21I.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53947, "publish_time": "2018-06-05 09:57:21", "type": "时尚", "comment_count": 4, "praise_count": 20, "title": "历峰集团正式出售 Lancel,以及,Gucci 新广告找 Harry Styles 做主角 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/53947.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1528264334.json>
{"image": "http://img.qdaily.com/article/banner/20180604142010UrRx6WfDhB89jdgY.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53913, "publish_time": "2018-06-04 14:20:15", "type": "时尚", "comment_count": 0, "praise_count": 12, "title": "历峰收购二手奢侈腕表网站,以及,Alexander Wang 新系列换汤不换药 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/53913.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1528264334.json>
{"image": "http://img.qdaily.com/article/article_show/20180602003531oGdMytwj1aPmibfO.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53879, "publish_time": "2018-06-02 07:33:03", "type": "时尚", "comment_count": 42, "praise_count": 102, "title": "Balenciaga这件古怪的T恤衬衫,真有人会付1290美元?", "url": "http://app3.qdaily.com/app3/articles/detail/53879.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1528264334.json>
{"image": "http://img.qdaily.com/article/banner/201806011055223JaARCnhiwtZFOMp.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53838, "publish_time": "2018-06-01 10:50:01", "type": "时尚", "comment_count": 9, "praise_count": 22, "title": "Canada Goose 进军中国市场,以及,沙特公主上Vogue阿拉伯封面 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/53838.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1528264334.json>
{"image": "http://img.qdaily.com/article/banner/20180531115643e4DBxM0X1PO8CvYz.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53805, "publish_time": "2018-05-31 12:32:29", "type": "时尚", "comment_count": 6, "praise_count": 22, "title": "Mansur Gavriel 进军男装市场 ,以及,Gucci 2019早春秀有点诡异 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/53805.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1528264334.json>
{"image": "http://img.qdaily.com/article/article_show/20180531094324RekgUcv40xd2LuCt.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53802, "publish_time": "2018-05-31 11:46:45", "type": "时尚", "comment_count": 19, "praise_count": 152, "title": "关于美国亚裔人口和亚洲文化,这本酷杂志有话要说", "url": "http://app3.qdaily.com/app3/articles/detail/53802.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1528264334.json>
{"image": "http://img.qdaily.com/article/banner/20180530103537KoaPE4Oxr2NLhMbX.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53747, "publish_time": "2018-05-30 10:46:52", "type": "时尚", "comment_count": 3, "praise_count": 30, "title": "中国人今年线上购物将超1万亿美元,以及,NAP说今年流行野性美 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/53747.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1528264334.json>
{"image": "http://img.qdaily.com/article/article_show/20180529020738G8NWqnl6Sx4cmgYB.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53699, "publish_time": "2018-05-29 13:47:59", "type": "时尚", "comment_count": 31, "praise_count": 149, "title": "奢侈品牌与运动品牌展开较量,因为运动鞋是最有市场的单品", "url": "http://app3.qdaily.com/app3/articles/detail/53699.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1528264334.json>
{"image": "http://img.qdaily.com/article/banner/20180529114518Bw7v6GTRE0AUz1CI.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53706, "publish_time": "2018-05-29 11:51:31", "type": "时尚", "comment_count": 3, "praise_count": 14, "title": "资生堂任命全球香水总裁 ,以及,LV发布2019早春系列 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/53706.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1528264334.json>
{"image": "http://img.qdaily.com/article/article_show/20180528110830jM6GSd1zmo8Ku7xl.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53654, "publish_time": "2018-05-28 11:40:54", "type": "时尚", "comment_count": 3, "praise_count": 23, "title": "浮华日报 | 有报告说可持续性是一门好生意,这是过去一周的时尚新闻", "url": "http://app3.qdaily.com/app3/articles/detail/53654.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1528264334.json>
{"image": "http://img.qdaily.com/article/banner/201805251031425JXCj4ULEOZyFS3T.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53590, "publish_time": "2018-05-25 10:53:49", "type": "时尚", "comment_count": 2, "praise_count": 19, "title": "Lyst 得到大额投资,以及,H&M 新品牌 Nyden 有限量款 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/53590.json"}
2018-06-17 10:01:33 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/63/0.json> (referer: None)
2018-06-17 10:01:33 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/22/1514243309.json> (referer: http://app3.qdaily.com/app3/categories/index/22/0.json)
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/0.json>
None
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/0.json>
None
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180613080525EGZQz54V1YdlxBci.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54216, "publish_time": "2018-06-13 08:38:25", "type": "大公司头条", "comment_count": 52, "praise_count": 97, "title": "大公司头条:彭博称美团点评最快本月提交香港上市申请,目标估值 600 亿美元;美国法院批准 AT&T 850 亿美元收购时代华纳;中兴今天在 A 股复牌", "url": "http://app3.qdaily.com/app3/articles/detail/54216.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180612083915tQBnfCKgYOajm1ki.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54175, "publish_time": "2018-06-12 08:32:54", "type": "大公司头条", "comment_count": 48, "praise_count": 119, "title": "大公司头条:百度筹备 CDR,将先于阿里和京东回国上市;家乐福与 Google 合作通过智能音箱在法国卖食品杂货;苹果更新保修条款,海外 iPhone 在中国联保", "url": "http://app3.qdaily.com/app3/articles/detail/54175.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180611080402IZnqj2ui1rDwVzbX.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54133, "publish_time": "2018-06-11 08:47:19", "type": "大公司头条", "comment_count": 78, "praise_count": 121, "title": "大公司头条:小米递交 CDR 招股书回国上市,将剥离小米金融;亚马逊承认衡阳富士康非法雇佣 8000 名低薪派遣工;微软宣布买下 5 个游戏工作室自己做游戏", "url": "http://app3.qdaily.com/app3/articles/detail/54133.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180608100723zildZq1U49LIvf2g.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54080, "publish_time": "2018-06-08 10:17:09", "type": "大公司头条", "comment_count": 44, "praise_count": 79, "title": "大公司头条:Google 公布人工智能发展原则,承诺不会用于武器和监控;小米 7 月香港上市,同步申请 CDR 在大陆上市;海航又卖一个 3.2 亿美元的大楼,已经累计出售 145 亿美元", "url": "http://app3.qdaily.com/app3/articles/detail/54080.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180607081055GZzgH6csEyWdKRLN.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54035, "publish_time": "2018-06-07 08:34:00", "type": "大公司头条", "comment_count": 76, "praise_count": 105, "title": "大公司头条:证监会发文件,海外中国公司今起可提交资料申请 CDR 回 A 股;欧盟可能对 Google 开出 110 亿美元反垄断罚单,此前已经调查 Android 三年;文化部暂时关闭国产游戏备案入口", "url": "http://app3.qdaily.com/app3/articles/detail/54035.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/0.json>
{"image": "http://img.qdaily.com/article/article_show/201806060805550IHzCF9arEA1fpBM.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53987, "publish_time": "2018-06-06 08:53:56", "type": "大公司头条", "comment_count": 190, "praise_count": 146, "title": "大公司头条:中兴可能同意支付 17 亿美元罚款,与美国政府和解;微信在俄罗斯推出支付服务,吸引中国游客;台积电创始人张忠谋退休,执掌公司超过 30 年", "url": "http://app3.qdaily.com/app3/articles/detail/53987.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180605074712IQswl30oigy9jmtO.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53948, "publish_time": "2018-06-05 08:26:38", "type": "大公司头条", "comment_count": 48, "praise_count": 126, "title": "大公司头条:星巴克董事长舒尔茨宣布本月底正式退休;民航每张机票加收 10 元燃油附加费;微软确认 75 亿美元收购全球最大开发社区 GitHub", "url": "http://app3.qdaily.com/app3/articles/detail/53948.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180604074147N9ud6VwmFWEkolh8.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53903, "publish_time": "2018-06-04 08:22:21", "type": "大公司头条", "comment_count": 95, "praise_count": 168, "title": "大公司头条:Google 宣布不再续约参与军事人工智能研发,此前有数千员工联名反对;美图美拍因涉嫌未成年色情被约谈,宣布主动下架 30 天;苹果 WWDC 明天凌晨召开,重点可能是新系统反数字成瘾", "url": "http://app3.qdaily.com/app3/articles/detail/53903.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/0.json>
{"image": "http://img.qdaily.com/article/article_show/20180601080103aTH12e3LPZRliz0x.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53842, "publish_time": "2018-06-01 08:40:18", "type": "大公司头条", "comment_count": 65, "praise_count": 149, "title": "大公司头条:Google 和复旦成立实验室,退出中国之后第一次;阿里宣布要投入千亿建设“国家智能物流骨干网”;美国对墨西哥、加拿大、欧盟加征关税,各国反击", "url": "http://app3.qdaily.com/app3/articles/detail/53842.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/0.json>
{"image": "http://img.qdaily.com/article/article_show/201805310801478ZLbOdi0pPHksMGn.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53800, "publish_time": "2018-05-31 08:41:50", "type": "大公司头条", "comment_count": 40, "praise_count": 95, "title": "大公司头条:奇瑞汽车准备以超过 200 亿元转让控股权,宝能、复星参与竞购;万达、腾讯和高朋成立合资公司做“新零售”;海航旗下香港航空准备上市,并计划上市前筹资 9 亿美元", "url": "http://app3.qdaily.com/app3/articles/detail/53800.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1514243309.json>
{"image": "http://img.qdaily.com/article/banner/20171220071118kS5zBxH7I4OXEuT9.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 48406, "publish_time": "2017-12-20 06:15:21", "type": "10个图", "comment_count": 53, "praise_count": 356, "title": "腾讯最近入股的唯品会,在做着一个什么样的生意?", "url": "http://app3.qdaily.com/app3/articles/detail/48406.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1514243309.json>
{"image": "http://img.qdaily.com/article/banner/20171117004722fKGAYzETtyqFMN7o.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 47307, "publish_time": "2017-11-17 06:22:39", "type": "10个图", "comment_count": 74, "praise_count": 416, "title": "阿里文娱成立一年就换了 CEO,阿里在电商之外的新业务怎么样了?", "url": "http://app3.qdaily.com/app3/articles/detail/47307.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1514243309.json>
{"image": "http://img.qdaily.com/article/banner/20171113065954eLtqgUrd8lC57zEA.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 47153, "publish_time": "2017-11-13 06:00:11", "type": "10个图", "comment_count": 71, "praise_count": 431, "title": "阅文上市暴涨,网络文学如何塑造了今天的娱乐产品和消费者?| 网络文学 20 年⑦", "url": "http://app3.qdaily.com/app3/articles/detail/47153.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1514243309.json>
{"image": "http://img.qdaily.com/article/banner/20171103091350M7OSJQ8qF9x3YAPu.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 46822, "publish_time": "2017-11-03 06:54:51", "type": "10个图", "comment_count": 99, "praise_count": 275, "title": "苹果发三季度财报,看起来所有都卖得更好而且更多,除了 iPhone 8", "url": "http://app3.qdaily.com/app3/articles/detail/46822.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1514243309.json>
{"image": "http://img.qdaily.com/article/banner/20171023222933TFA8jcZ4syXkUP6g.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 46420, "publish_time": "2017-10-25 07:03:46", "type": "10个图", "comment_count": 37, "praise_count": 499, "title": "四大车厂说要投资 1000 亿美元造电动车, 9 张图告诉你这对于汽车业意味着什么", "url": "http://app3.qdaily.com/app3/articles/detail/46420.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1514243309.json>
{"image": "http://img.qdaily.com/article/banner/20171019073128xt3AnFg6G79azfP8.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 46255, "publish_time": "2017-10-19 07:31:41", "type": "10个图", "comment_count": 63, "praise_count": 607, "title": "搜狗终于要上市了,9 张图带你看那一代老派互联网科技公司的起落", "url": "http://app3.qdaily.com/app3/articles/detail/46255.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1514243309.json>
{"image": "http://img.qdaily.com/article/banner/20171010084753bwivS8E3MLcqNzPg.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 45937, "publish_time": "2017-10-10 06:48:13", "type": "10个图", "comment_count": 80, "praise_count": 820, "title": "阿里巴巴的市值再次逼近亚马逊,16 张图带你看它上市三年发生了什么", "url": "http://app3.qdaily.com/app3/articles/detail/45937.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1514243309.json>
{"image": "http://img.qdaily.com/article/banner/201708242331170YPJjfKCh7ISrtni.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 44463, "publish_time": "2017-08-25 06:18:13", "type": "10个图", "comment_count": 62, "praise_count": 531, "title": "饿了么收购百度外卖,9 张图看 O2O 仅存的生意走到最后带来了什么", "url": "http://app3.qdaily.com/app3/articles/detail/44463.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1514243309.json>
{"image": "http://img.qdaily.com/article/banner/201708172201109nQ8xElNXRJ42ZHj.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 44219, "publish_time": "2017-08-18 06:16:51", "type": "10个图", "comment_count": 118, "praise_count": 991, "title": "阿里和腾讯发了财报,10 个图看控制中文互联网的这两个公司发生了什么变化", "url": "http://app3.qdaily.com/app3/articles/detail/44219.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1514243309.json>
{"image": "http://img.qdaily.com/article/banner/20170815235918SVHjW2sC9lYeLmKy.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 44140, "publish_time": "2017-08-16 06:30:50", "type": "10个图", "comment_count": 244, "praise_count": 719, "title": "京东又交了一份亏损的财报出来,7 张图告诉你它的电商生意要盈利怎么这么难", "url": "http://app3.qdaily.com/app3/articles/detail/44140.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1514243309.json>
{"image": "http://img.qdaily.com/article/banner/20170810002829xiHeoQpJV5tcIAvR.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 43935, "publish_time": "2017-08-10 06:04:07", "type": "10个图", "comment_count": 48, "praise_count": 437, "title": "Google 变身 Alphabet 两周年,这 10 个数字是它的成绩单", "url": "http://app3.qdaily.com/app3/articles/detail/43935.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1514243309.json>
{"image": "http://img.qdaily.com/article/banner/20170803083137UFrbwnj2YeXLsIWD.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 43701, "publish_time": "2017-08-03 06:23:37", "type": "10个图", "comment_count": 61, "praise_count": 714, "title": "全球和中国的首富最近都在变,12 张图带你看榜单更迭背后的故事", "url": "http://app3.qdaily.com/app3/articles/detail/43701.json"}
2018-06-17 10:01:33 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/5/1529048846.json> (referer: http://app3.qdaily.com/app3/categories/index/5/0.json)
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1529048846.json>
{"image": "http://img.qdaily.com/article/article_show/20180615135248sNHIJbKEORLVfkDr.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54324, "publish_time": "2018-06-15 15:29:48", "type": "城市", "comment_count": 240, "praise_count": 192, "title": "爱因斯坦 1922 年日记里的种族歧视言论引发讨论,你怎么看?", "url": "http://app3.qdaily.com/app3/articles/detail/54324.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1529048846.json>
None
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1529048846.json>
{"image": "http://img.qdaily.com/article/article_show/201806151045168qXAdIDsKLP3W2Vp.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54308, "publish_time": "2018-06-15 10:37:53", "type": "城市", "comment_count": 15, "praise_count": 39, "title": "看图:这里是过去24小时内发生的重要的事", "url": "http://app3.qdaily.com/app3/articles/detail/54308.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1529048846.json>
{"image": "http://img.qdaily.com/article/article_show/20180615085559R1EaShNrfzXHkJmF.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54311, "publish_time": "2018-06-15 10:36:36", "type": "城市", "comment_count": 39, "praise_count": 85, "title": "全球头条速递 | 《对话》探讨人类为什么不能预测自杀,墨西哥大选导致百余人遇害", "url": "http://app3.qdaily.com/app3/articles/detail/54311.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1529048846.json>
{"image": "http://img.qdaily.com/article/article_show/20180614154903TDfS67agknXoqul1.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54280, "publish_time": "2018-06-15 07:39:34", "type": "城市", "comment_count": 52, "praise_count": 112, "title": "美国出现首个允许中国学生凭借高考成绩直接申请的大学", "url": "http://app3.qdaily.com/app3/articles/detail/54280.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1529048846.json>
{"image": "http://img.qdaily.com/article/article_show/201806150405105X2tjgKk1soVxUZ0.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54306, "publish_time": "2018-06-15 07:37:05", "type": "城市", "comment_count": 8, "praise_count": 29, "title": "墨西哥的小头鼠海豚处于极濒危状态,它是被“连累”成这样的", "url": "http://app3.qdaily.com/app3/articles/detail/54306.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1529048846.json>
{"image": "http://img.qdaily.com/article/article_show/20180614232354yNs8Ei4WAKu7OV1o.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 54303, "publish_time": "2018-06-15 07:37:02", "type": "城市", "comment_count": 7, "praise_count": 44, "title": "让老年生活更幸福,可能做点跟艺术沾边儿的事情会有用", "url": "http://app3.qdaily.com/app3/articles/detail/54303.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1529048846.json>
{"image": "http://img.qdaily.com/article/article_show/20180614175147n6uSeGQm39KEYhWo.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54286, "publish_time": "2018-06-15 07:25:23", "type": "城市", "comment_count": 14, "praise_count": 35, "title": "纽约市将为低收入者提供减价地铁票,它有什么样的意义?", "url": "http://app3.qdaily.com/app3/articles/detail/54286.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1529048846.json>
{"image": "http://img.qdaily.com/article/article_show/20180614141124b6Tr0c5GJQzAXlCP.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 54272, "publish_time": "2018-06-14 15:25:03", "type": "城市", "comment_count": 15, "praise_count": 87, "title": "「这世界」昨天抢了特金会一版版面的,是这只爬楼浣熊", "url": "http://app3.qdaily.com/app3/articles/detail/54272.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1529048846.json>
{"image": "http://img.qdaily.com/article/article_show/20180614132227wtL64CFTy9bI2QYP.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 54270, "publish_time": "2018-06-14 13:36:42", "type": "城市", "comment_count": 82, "praise_count": 108, "title": "越南也有了网络安全法,要求科技公司将数据存储在境内", "url": "http://app3.qdaily.com/app3/articles/detail/54270.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1529048846.json>
{"image": "http://img.qdaily.com/article/article_show/20180614102608K294DGqzXY8Pm7ip.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54258, "publish_time": "2018-06-14 13:10:45", "type": "城市", "comment_count": 37, "praise_count": 77, "title": "美国不再是亚洲留学生的首选,日本和中国越来越受欢迎", "url": "http://app3.qdaily.com/app3/articles/detail/54258.json"}
2018-06-17 10:01:33 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1529048846.json>
{"image": "http://img.qdaily.com/article/article_show/20180614103820vnTQ6KNZtdqyGDjs.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54248, "publish_time": "2018-06-14 10:42:23", "type": "城市", "comment_count": 12, "praise_count": 39, "title": "看图:这里是过去24小时内发生的重要的事", "url": "http://app3.qdaily.com/app3/articles/detail/54248.json"}
2018-06-17 10:01:34 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/4/1528795339.json> (referer: http://app3.qdaily.com/app3/categories/index/4/1529017798.json)
2018-06-17 10:01:34 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/18/1529040266.json> (referer: http://app3.qdaily.com/app3/categories/index/18/0.json)
2018-06-17 10:01:34 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/17/1528413939.json> (referer: http://app3.qdaily.com/app3/categories/index/17/0.json)
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528795339.json>
{"image": "http://img.qdaily.com/article/article_show/20180612095435GjT4MwasvOeHYCiu.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54178, "publish_time": "2018-06-12 14:44:48", "type": "智能", "comment_count": 8, "praise_count": 31, "title": "在美国做共享单车戒律多,共享电动滑板车流行了起来", "url": "http://app3.qdaily.com/app3/articles/detail/54178.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528795339.json>
{"image": "http://img.qdaily.com/article/article_show/20180612042816UFGbhWRsQrp7B2Yd.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54173, "publish_time": "2018-06-12 12:59:49", "type": "智能", "comment_count": 5, "praise_count": 27, "title": "大热门 VR 游戏的 Beat Saber 要上 PS4,带来挺多问题", "url": "http://app3.qdaily.com/app3/articles/detail/54173.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528795339.json>
{"image": "http://img.qdaily.com/article/article_show/20180611151542OvX90K3Dfs7pxhVl.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54151, "publish_time": "2018-06-12 12:45:42", "type": "智能", "comment_count": 5, "praise_count": 29, "title": "最大消费电子展 CES 来亚洲第 4 年,今年还是一个很技术的车展", "url": "http://app3.qdaily.com/app3/articles/detail/54151.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528795339.json>
{"image": "http://img.qdaily.com/article/article_show/20180612030106CEi36rLjYUxu1gl2.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54172, "publish_time": "2018-06-12 08:51:30", "type": "智能", "comment_count": 2, "praise_count": 30, "title": "一种新型血检技术出现,有望准确分析胎龄与早产风险", "url": "http://app3.qdaily.com/app3/articles/detail/54172.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528795339.json>
{"image": "http://img.qdaily.com/article/article_show/20180610192639vlUzrBnpRJM6GNg0.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54094, "publish_time": "2018-06-12 07:00:15", "type": "智能", "comment_count": 5, "praise_count": 23, "title": "几十年的平价机票之后,廉航也开始卖更多超级经济舱", "url": "http://app3.qdaily.com/app3/articles/detail/54094.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528795339.json>
{"image": "http://img.qdaily.com/article/article_show/20180611155959qAIuNC1wrSOkKQaf.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54155, "publish_time": "2018-06-11 19:07:50", "type": "智能", "comment_count": 11, "praise_count": 41, "title": "Uber 提交了一项新专利,根据你打了没发出去的文字推测心理状态", "url": "http://app3.qdaily.com/app3/articles/detail/54155.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528795339.json>
{"image": "http://img.qdaily.com/article/article_show/20180611150457jnxDKVmFk3eWvbal.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54150, "publish_time": "2018-06-11 19:02:18", "type": "智能", "comment_count": 7, "praise_count": 38, "title": "又一个比特币相关的公司可能年内上市,今年第二家", "url": "http://app3.qdaily.com/app3/articles/detail/54150.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528795339.json>
{"image": "http://img.qdaily.com/article/article_show/20180611110626LjYX0WT8ZCcSfVD7.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54138, "publish_time": "2018-06-11 17:37:57", "type": "智能", "comment_count": 45, "praise_count": 62, "title": "特斯拉自动驾驶致死车祸调查结果:最后几秒突然加速", "url": "http://app3.qdaily.com/app3/articles/detail/54138.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528795339.json>
{"image": "http://img.qdaily.com/article/article_show/20180609224846Tp1oZCdB3J2Qxg5S.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54121, "publish_time": "2018-06-10 07:08:08", "type": "智能", "comment_count": 113, "praise_count": 176, "title": "美国研发了新一代超级计算机,再次超越中国夺回世界第一", "url": "http://app3.qdaily.com/app3/articles/detail/54121.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528795339.json>
{"image": "http://img.qdaily.com/article/banner/20180609073518ywqWvXrEnmI2MK0A.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54070, "publish_time": "2018-06-09 07:35:22", "type": "智能", "comment_count": 28, "praise_count": 120, "title": "我们去 macOS 中的“莫哈韦沙漠”走了圈,总结了 12 个值得关注的变化", "url": "http://app3.qdaily.com/app3/articles/detail/54070.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528795339.json>
{"image": "http://img.qdaily.com/article/article_show/2018060817084821MKC4pTa3PxvL87.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54087, "publish_time": "2018-06-09 07:34:05", "type": "智能", "comment_count": 52, "praise_count": 167, "title": "WhatsApp 创始人放弃 13 亿美元离职,因为拒绝在搜集隐私做广告", "url": "http://app3.qdaily.com/app3/articles/detail/54087.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528795339.json>
{"image": "http://img.qdaily.com/article/article_show/20180608192029xhksuKgBDC2Y89oJ.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54107, "publish_time": "2018-06-08 20:15:39", "type": "智能", "comment_count": 32, "praise_count": 345, "title": "为了让你用搜索、刷社交网络,全球服务器用的能源比整个英国还要多 | 好奇心小数据", "url": "http://app3.qdaily.com/app3/articles/detail/54107.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1529040266.json>
{"image": "http://img.qdaily.com/article/article_show/201806142005278ru3AB25FDsXQtOz.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54292, "publish_time": "2018-06-15 11:59:41", "type": "商业", "comment_count": 16, "praise_count": 67, "title": "中国茶饮市场太热闹,东南亚很火的日出茶太说要来开 500 家店", "url": "http://app3.qdaily.com/app3/articles/detail/54292.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1529040266.json>
{"image": "http://img.qdaily.com/article/article_show/201806151009306cb92FOAHimr5pgE.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54310, "publish_time": "2018-06-15 11:11:54", "type": "商业", "comment_count": 37, "praise_count": 30, "title": "知乎请了首位代言人刘昊然,苏铭天继续为离职原因辩解|乙方日报", "url": "http://app3.qdaily.com/app3/articles/detail/54310.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1529040266.json>
None
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1529040266.json>
{"image": "http://img.qdaily.com/article/article_show/20180614175706jJZ3P8pf7axwvgKA.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54287, "publish_time": "2018-06-15 07:37:22", "type": "商业", "comment_count": 7, "praise_count": 23, "title": "科沃斯上市了,但家用机器人产业也在发生变化", "url": "http://app3.qdaily.com/app3/articles/detail/54287.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1529040266.json>
{"image": "http://img.qdaily.com/article/article_show/20180615000236EOgC0nbYQxSjUm49.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54296, "publish_time": "2018-06-15 07:23:54", "type": "商业", "comment_count": 12, "praise_count": 44, "title": "农夫山泉买下新西兰高端水品牌,准备扩建水厂", "url": "http://app3.qdaily.com/app3/articles/detail/54296.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1529040266.json>
{"image": "http://img.qdaily.com/article/article_show/20180614182717ymVd5BLnNbQp92cA.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 54291, "publish_time": "2018-06-14 19:44:18", "type": "商业", "comment_count": 224, "praise_count": 456, "title": "中国一季度结婚人数比五年前少了近三成,这还是和人口问题息息相关 | 好奇心小数据", "url": "http://app3.qdaily.com/app3/articles/detail/54291.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1529040266.json>
{"image": "http://img.qdaily.com/article/article_show/20180614181658SlGO2Iay8ctYzKkR.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54290, "publish_time": "2018-06-14 19:34:36", "type": "商业", "comment_count": 42, "praise_count": 65, "title": "海南又有大计划,说到 2030 年人口要增加 34%", "url": "http://app3.qdaily.com/app3/articles/detail/54290.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1529040266.json>
None
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1529040266.json>
{"image": "http://img.qdaily.com/article/banner/20180614145201Q4e7M9A6lOmdgYNn.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54247, "publish_time": "2018-06-14 14:52:11", "type": "商业", "comment_count": 11, "praise_count": 112, "title": "世界杯今夜开战,这也是四年一度广告经费燃烧的时刻", "url": "http://app3.qdaily.com/app3/articles/detail/54247.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1529040266.json>
{"image": "http://img.qdaily.com/article/article_show/201806141146411rM8nG2Dea4i9cLY.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54267, "publish_time": "2018-06-14 13:14:05", "type": "商业", "comment_count": 32, "praise_count": 73, "title": "美国、加拿大、墨西哥合办2026年世界杯,扩军至48队", "url": "http://app3.qdaily.com/app3/articles/detail/54267.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1529040266.json>
{"image": "http://img.qdaily.com/article/article_show/20180613205458bHyRdXzhAcPw2Z8o.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54241, "publish_time": "2018-06-14 13:07:07", "type": "商业", "comment_count": 13, "praise_count": 79, "title": "小米马上要上市了,但它怎么估值还是一个问题", "url": "http://app3.qdaily.com/app3/articles/detail/54241.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1529040266.json>
{"image": "http://img.qdaily.com/article/article_show/201806141148031qXZcLfzolteN4P6.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54264, "publish_time": "2018-06-14 12:48:00", "type": "商业", "comment_count": 43, "praise_count": 45, "title": "面对 14 亿美元罚款和更多不确定,中兴申请近 700 亿信贷", "url": "http://app3.qdaily.com/app3/articles/detail/54264.json"}
2018-06-17 10:01:34 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/1/1527717818.json> (referer: http://app3.qdaily.com/app3/categories/index/1/1528440833.json)
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1528413939.json>
{"image": "http://img.qdaily.com/article/article_show/20180606214135mfvtOyxoDBGi9TaL.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54022, "publish_time": "2018-06-07 07:21:28", "type": "设计", "comment_count": 10, "praise_count": 110, "title": "一套注重各部位平衡关系的刀具,用起来很轻盈|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/54022.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1528413939.json>
{"image": "http://img.qdaily.com/article/article_show/20180605093927lUY5q3J2WvkjuaNh.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53950, "publish_time": "2018-06-06 13:51:32", "type": "设计", "comment_count": 13, "praise_count": 167, "title": "「去看展」这间失恋博物馆,展出各地破碎爱情的纪念品", "url": "http://app3.qdaily.com/app3/articles/detail/53950.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1528413939.json>
{"image": "http://img.qdaily.com/article/article_show/201806060754203YAEoMTHmsSaXxPV.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53986, "publish_time": "2018-06-06 13:51:24", "type": "设计", "comment_count": 8, "praise_count": 112, "title": "艺术家为这家丹麦金融公司造的总部,也是当地居民的放松去处", "url": "http://app3.qdaily.com/app3/articles/detail/53986.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1528413939.json>
{"image": "http://img.qdaily.com/article/article_show/201806060711093J7ciVqE8F52pz4U.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53977, "publish_time": "2018-06-06 07:11:27", "type": "设计", "comment_count": 10, "praise_count": 86, "title": "有个啥都能做的智能衣架,长的样子倒是蛮可爱的|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/53977.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1528413939.json>
{"image": "http://img.qdaily.com/article/article_show/20180604212530HxskdpSoUF8mJV2E.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 53938, "publish_time": "2018-06-05 07:05:25", "type": "设计", "comment_count": 13, "praise_count": 141, "title": "这款别具巧思的背包,帮你整理好包内各种小物|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/53938.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1528413939.json>
{"image": "http://img.qdaily.com/article/article_show/20180603224229VW16ZUv5OghAmDen.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53900, "publish_time": "2018-06-04 07:02:17", "type": "设计", "comment_count": 31, "praise_count": 110, "title": "Nike 新出的拖鞋,鞋面上还有个收纳小包|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/53900.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1528413939.json>
{"image": "http://img.qdaily.com/article/article_show/20180601165459Vc5nTNWf0wE7jzGh.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53871, "publish_time": "2018-06-03 07:31:55", "type": "设计", "comment_count": 27, "praise_count": 131, "title": "皇冠假日的新客房设计,希望把握住有新要求的“商务人士”", "url": "http://app3.qdaily.com/app3/articles/detail/53871.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1528413939.json>
{"image": "http://img.qdaily.com/article/article_show/20180602205145sf84rKRVzChZTEec.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 53890, "publish_time": "2018-06-03 07:26:45", "type": "设计", "comment_count": 13, "praise_count": 498, "title": "旧屋翻新没思路?来这些案例中找找灵感|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/53890.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1528413939.json>
{"image": "http://img.qdaily.com/article/article_show/20180531223948N9QSOuZXjmawWki1.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53835, "publish_time": "2018-06-01 07:11:46", "type": "设计", "comment_count": 4, "praise_count": 142, "title": "这些造型简练的户外灯,是夏夜聚会上的好帮手|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/53835.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1528413939.json>
{"image": "http://img.qdaily.com/article/banner/20180531072812iZfKsGL28Imb5PO0.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53772, "publish_time": "2018-05-31 07:28:18", "type": "设计", "comment_count": 6, "praise_count": 268, "title": "再见!王大闳先生,被时代遗忘的台湾现代主义建筑大师", "url": "http://app3.qdaily.com/app3/articles/detail/53772.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1528413939.json>
{"image": "http://img.qdaily.com/article/article_show/20180530143059o0bsa6V7KzZcIM3y.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53769, "publish_time": "2018-05-31 07:09:14", "type": "设计", "comment_count": 4, "praise_count": 26, "title": "面对民粹主义抬头的欧盟,一群艺术家筹集创意重塑其理念", "url": "http://app3.qdaily.com/app3/articles/detail/53769.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1528413939.json>
{"image": "http://img.qdaily.com/article/article_show/201805310707503aUqY1dxIwpfci8h.JPG?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53794, "publish_time": "2018-05-31 07:08:08", "type": "设计", "comment_count": 11, "praise_count": 85, "title": "一个储存罐,会主动显示食物是否过了赏味期限|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/53794.json"}
2018-06-17 10:01:34 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/54/1526771294.json> (referer: http://app3.qdaily.com/app3/categories/index/54/0.json)
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1527717818.json>
{"image": "http://img.qdaily.com/article/banner/20180529071549OuEqiMC4QxhTjDc6.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53694, "publish_time": "2018-05-30 13:56:10", "type": "长文章", "comment_count": 80, "praise_count": 826, "title": "从曼谷到广州,一个塞内加尔人的搬家史|“低端全球化”②", "url": "http://app3.qdaily.com/app3/articles/detail/53694.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1527717818.json>
{"image": "http://img.qdaily.com/article/banner/20180529234838YzCrgdR5yLqVpMwP.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53745, "publish_time": "2018-05-30 00:33:07", "type": "长文章", "comment_count": 243, "praise_count": 663, "title": "“智慧校园”就这么开始了,它是个生意,还是个问题?", "url": "http://app3.qdaily.com/app3/articles/detail/53745.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1527717818.json>
{"image": "http://img.qdaily.com/article/banner/20180526150823D6Lc5HxljZPstJFr.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53624, "publish_time": "2018-05-29 13:59:47", "type": "长文章", "comment_count": 29, "praise_count": 676, "title": "Siri 的台词该如何设计?我们和它背后的“创意写作者”聊了聊", "url": "http://app3.qdaily.com/app3/articles/detail/53624.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1527717818.json>
{"image": "http://img.qdaily.com/article/banner/20180522041903TxBbMXlIqh26p5wo.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53446, "publish_time": "2018-05-29 06:02:11", "type": "长文章", "comment_count": 75, "praise_count": 1080, "title": "地产商、酒店、中介公司都做起长租公寓生意,但它们看上的并不是租金", "url": "http://app3.qdaily.com/app3/articles/detail/53446.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1527717818.json>
{"image": "http://img.qdaily.com/article/banner/20180528092904n5MuwIW2zhVXsHgB.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53655, "publish_time": "2018-05-28 14:30:01", "type": "长文章", "comment_count": 62, "praise_count": 546, "title": "500 欧元纸币要停发了,它的设计故事让我们看到一个苦恼和前途叵测的欧盟", "url": "http://app3.qdaily.com/app3/articles/detail/53655.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1527717818.json>
{"image": "http://img.qdaily.com/article/banner/20180527185316v9VK04Ci7xmNEkJY.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53646, "publish_time": "2018-05-28 05:58:57", "type": "长文章", "comment_count": 239, "praise_count": 1434, "title": "一篇稿子成就了这个人,也让他有机会离开这一行 | “十年” ⑤", "url": "http://app3.qdaily.com/app3/articles/detail/53646.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1527717818.json>
{"image": "http://img.qdaily.com/article/banner/20180524132616h6oN7WtF4UIeGR5y.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53561, "publish_time": "2018-05-27 07:06:44", "type": "长文章", "comment_count": 240, "praise_count": 1961, "title": "婚姻是一种独特的人际关系,一种说法认为:它过时又充满歧视", "url": "http://app3.qdaily.com/app3/articles/detail/53561.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1527717818.json>
{"image": "http://img.qdaily.com/article/banner/20180525101701A49yJ6OuDBGd3NjR.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53583, "publish_time": "2018-05-25 13:54:33", "type": "长文章", "comment_count": 60, "praise_count": 832, "title": "游荡在亚非拉的马克思幽灵,和一些不常被提起的往事", "url": "http://app3.qdaily.com/app3/articles/detail/53583.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1527717818.json>
{"image": "http://img.qdaily.com/article/banner/20180521165054ERS2wt7ZpDPCXeQm.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53430, "publish_time": "2018-05-24 14:45:39", "type": "长文章", "comment_count": 41, "praise_count": 742, "title": "大厦已倾,20 多名编辑和撰稿人讲述时代公司兴亡史", "url": "http://app3.qdaily.com/app3/articles/detail/53430.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1527717818.json>
{"image": "http://img.qdaily.com/article/banner/20180523160824NSEfgz9JTGbZe4RO.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53515, "publish_time": "2018-05-23 15:43:46", "type": "长文章", "comment_count": 93, "praise_count": 961, "title": "大部分人都知道的香草是个什么东西,以及它为什么比白银还贵了", "url": "http://app3.qdaily.com/app3/articles/detail/53515.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1527717818.json>
{"image": "http://img.qdaily.com/article/banner/20180523075534eMOf8hT1ZkBml5gV.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53485, "publish_time": "2018-05-23 06:03:44", "type": "长文章", "comment_count": 120, "praise_count": 351, "title": "特斯拉新车涨价 50%,可能意味着对传统汽车制造业的破坏性创新失败", "url": "http://app3.qdaily.com/app3/articles/detail/53485.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1527717818.json>
{"image": "http://img.qdaily.com/article/banner/20180521225630oqYTmgndV7i26wNu.JPG?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53445, "publish_time": "2018-05-22 15:15:27", "type": "长文章", "comment_count": 28, "praise_count": 344, "title": "一个人盖五层楼,第 13 年,为未来 200 年的“纯手工”建筑 | 吉井忍的二次会", "url": "http://app3.qdaily.com/app3/articles/detail/53445.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1526771294.json>
{"image": "http://img.qdaily.com/article/article_show/20180518133458lGqvJBQszCf8YHSh.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53338, "publish_time": "2018-05-19 07:17:10", "type": "游戏", "comment_count": 38, "praise_count": 65, "title": "COD 主系列首个没有单人线的游戏官宣,多了大逃杀模式", "url": "http://app3.qdaily.com/app3/articles/detail/53338.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1526771294.json>
{"image": "http://img.qdaily.com/article/article_show/20180516154017g8NeFZ2y6Lw3Hcx0.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53248, "publish_time": "2018-05-17 07:20:56", "type": "游戏", "comment_count": 12, "praise_count": 18, "title": "B 社的《狂怒 2》公布了演示预告,看起来很刺激", "url": "http://app3.qdaily.com/app3/articles/detail/53248.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1526771294.json>
{"image": "http://img.qdaily.com/article/article_show/20180515234317lNJ38Bs1OIY2fyca.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53219, "publish_time": "2018-05-16 07:03:14", "type": "游戏", "comment_count": 13, "praise_count": 128, "title": "这个一战游戏视觉上很特别,像无数幅跃动的油画", "url": "http://app3.qdaily.com/app3/articles/detail/53219.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1526771294.json>
{"image": "http://img.qdaily.com/article/article_show/2018051119161539NG80ZDRAoqmfUX.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53092, "publish_time": "2018-05-12 07:05:47", "type": "游戏", "comment_count": 37, "praise_count": 123, "title": "不要在乎玩家的语言水平,Steam 的评论对开发者是有用的", "url": "http://app3.qdaily.com/app3/articles/detail/53092.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1526771294.json>
{"image": "http://img.qdaily.com/article/article_show/20180511014331aknjtG03rX8T1opA.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53060, "publish_time": "2018-05-11 07:13:17", "type": "游戏", "comment_count": 14, "praise_count": 252, "title": "这个游戏要每天花 5 分钟玩 28 天,结果看你心情", "url": "http://app3.qdaily.com/app3/articles/detail/53060.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1526771294.json>
{"image": "http://img.qdaily.com/article/article_show/20180505193246gx0dSRm45suUF9jX.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52873, "publish_time": "2018-05-06 07:14:22", "type": "游戏", "comment_count": 10, "praise_count": 118, "title": "3I 游戏是什么?《地狱之刃》等开发者们谈了他们的认知", "url": "http://app3.qdaily.com/app3/articles/detail/52873.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1526771294.json>
{"image": "http://img.qdaily.com/article/banner/201805021459426m5tFkxAKfMSR09n.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52747, "publish_time": "2018-05-04 14:01:32", "type": "游戏", "comment_count": 120, "praise_count": 509, "title": "“游戏促使现实社会里暴力蔓延”?这个说法不新鲜,也一如既往值得商榷", "url": "http://app3.qdaily.com/app3/articles/detail/52747.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1526771294.json>
{"image": "http://img.qdaily.com/article/article_show/20180428163338Vr0gNsD67e9pnO3o.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52679, "publish_time": "2018-05-02 07:01:33", "type": "游戏", "comment_count": 26, "praise_count": 51, "title": "《古墓丽影:暗影》是劳拉的决定性时刻,她开始反思自己", "url": "http://app3.qdaily.com/app3/articles/detail/52679.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1526771294.json>
{"image": "http://img.qdaily.com/article/article_show/20180427090106CrVBHUtSQq8Dow3L.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52626, "publish_time": "2018-04-27 10:48:14", "type": "游戏", "comment_count": 38, "praise_count": 112, "title": "Switch 卖得好,任天堂一年利润涨了 500%", "url": "http://app3.qdaily.com/app3/articles/detail/52626.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1526771294.json>
{"image": "http://img.qdaily.com/article/article_show/20180424120158Kl4HuTOeMExbcrh5.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52443, "publish_time": "2018-04-24 13:31:38", "type": "游戏", "comment_count": 29, "praise_count": 53, "title": "Steam 背后的公司重新做游戏,收购了独立游戏 Firewatch 的开发商", "url": "http://app3.qdaily.com/app3/articles/detail/52443.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1526771294.json>
{"image": "http://img.qdaily.com/article/banner/20180417072049r2aPMShyk1vQLpfm.JPG?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52189, "publish_time": "2018-04-17 07:20:59", "type": "游戏", "comment_count": 44, "praise_count": 579, "title": "3 年 12 集,这个高频更新的荷兰工作室打造了游戏界的“双峰”", "url": "http://app3.qdaily.com/app3/articles/detail/52189.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1526771294.json>
{"image": "http://img.qdaily.com/article/article_show/20180413094040hNcie7R0FOnsUZ1b.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52119, "publish_time": "2018-04-14 07:36:39", "type": "游戏", "comment_count": 13, "praise_count": 105, "title": "《底特律》制作人大卫·凯奇谈游戏设计:游戏和人生一样由选择构成 | TED 2018 现场报道", "url": "http://app3.qdaily.com/app3/articles/detail/52119.json"}
2018-06-17 10:01:34 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/3/1528426556.json> (referer: http://app3.qdaily.com/app3/categories/index/3/1528932000.json)
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528426556.json>
{"image": "http://img.qdaily.com/article/article_show/20180607175507fVEeHK4Bvmc2k6Pq.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54051, "publish_time": "2018-06-08 07:05:48", "type": "娱乐", "comment_count": 17, "praise_count": 56, "title": "彼得大帝新作《掠食城市:致命引擎》发布预告,机械朋克风", "url": "http://app3.qdaily.com/app3/articles/detail/54051.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528426556.json>
None
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528426556.json>
{"image": "http://img.qdaily.com/article/article_show/20180607095136h5BWFjuryX1Q4mVJ.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54036, "publish_time": "2018-06-07 10:49:57", "type": "娱乐", "comment_count": 33, "praise_count": 33, "title": "今日娱乐:《花木兰》确定男主演员,Steam 放弃内容审查", "url": "http://app3.qdaily.com/app3/articles/detail/54036.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528426556.json>
{"image": "http://img.qdaily.com/article/article_show/20180606112833Lsr26tYikWUQbRfd.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53996, "publish_time": "2018-06-07 07:30:43", "type": "娱乐", "comment_count": 28, "praise_count": 48, "title": "变形金刚系列的新作《大黄蜂》,不再嘈杂,改走萌系路线", "url": "http://app3.qdaily.com/app3/articles/detail/53996.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528426556.json>
{"image": "http://img.qdaily.com/article/article_show/20180607022729zJVUeRp2rl3iPmQb.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54032, "publish_time": "2018-06-07 07:20:20", "type": "娱乐", "comment_count": 26, "praise_count": 26, "title": "被控告性侵的韩国导演金基德,判定结果为“不予起诉”", "url": "http://app3.qdaily.com/app3/articles/detail/54032.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528426556.json>
{"image": "http://img.qdaily.com/article/article_show/20180607021140Fg9PvTjXrScBl5p2.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54030, "publish_time": "2018-06-07 07:17:08", "type": "娱乐", "comment_count": 6, "praise_count": 32, "title": "将近 40 年后,意大利恐怖经典《阴风阵阵》的翻拍版来了", "url": "http://app3.qdaily.com/app3/articles/detail/54030.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528426556.json>
{"image": "http://img.qdaily.com/article/article_show/201806061500005afiwX8ql4Fc2CvR.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54001, "publish_time": "2018-06-06 17:30:20", "type": "娱乐", "comment_count": 12, "praise_count": 111, "title": "BBC 又要拍反乌托邦迷你剧,讲述变动社会中一个家庭的生活", "url": "http://app3.qdaily.com/app3/articles/detail/54001.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528426556.json>
{"image": "http://img.qdaily.com/article/article_show/20180606110831B7LAjWZzS6qbtOxk.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 53995, "publish_time": "2018-06-06 13:43:33", "type": "娱乐", "comment_count": 20, "praise_count": 47, "title": "「这世界」美利坚小姐宣布取消泳装环节,可能是选美史上的里程碑", "url": "http://app3.qdaily.com/app3/articles/detail/53995.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528426556.json>
{"image": "http://img.qdaily.com/article/article_show/20180606103259IXJcSD3OEPUBKe7Z.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53991, "publish_time": "2018-06-06 10:59:41", "type": "娱乐", "comment_count": 28, "praise_count": 19, "title": "今日娱乐:美国小姐取消泳装环节,华纳开发杰瑞德·莱托主演的小丑电影", "url": "http://app3.qdaily.com/app3/articles/detail/53991.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528426556.json>
{"image": "http://img.qdaily.com/article/article_show/20180605233245qvp5dfDMLwjmy789.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53983, "publish_time": "2018-06-06 07:11:53", "type": "娱乐", "comment_count": 11, "praise_count": 77, "title": "讲述同性恋者生活的《乐队男孩》50 周年,新版本又演出了", "url": "http://app3.qdaily.com/app3/articles/detail/53983.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528426556.json>
{"image": "http://img.qdaily.com/article/article_show/20180605145515p2yAOCIKrVF1wMSt.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53967, "publish_time": "2018-06-05 16:56:12", "type": "娱乐", "comment_count": 37, "praise_count": 32, "title": "《少林寺 2》要拍了,背后还是 82 年李连杰版的投资公司", "url": "http://app3.qdaily.com/app3/articles/detail/53967.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528426556.json>
{"image": "http://img.qdaily.com/article/article_show/20180605022612KB2RxomANLQMq51e.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53945, "publish_time": "2018-06-05 13:47:40", "type": "娱乐", "comment_count": 13, "praise_count": 128, "title": "詹姆斯·卡梅隆的科幻电影纪录片,最大看点是重量级人物出镜", "url": "http://app3.qdaily.com/app3/articles/detail/53945.json"}
2018-06-17 10:01:34 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/16/1528937637.json> (referer: http://app3.qdaily.com/app3/categories/index/16/0.json)
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528937637.json>
{"image": "http://img.qdaily.com/article/article_show/20180613145920M8TNf6t0iaozypY3.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54226, "publish_time": "2018-06-13 19:57:47", "type": "Top15", "comment_count": 4, "praise_count": 52, "title": "微信与美团合作了新的朋友圈广告格式,还是为了争取中小广告主", "url": "http://app3.qdaily.com/app3/articles/detail/54226.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528937637.json>
None
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528937637.json>
None
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528937637.json>
None
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528937637.json>
None
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528937637.json>
{"image": "http://img.qdaily.com/article/article_show/20180612143658GspuUTQWzgoZmhnH.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54186, "publish_time": "2018-06-13 07:00:42", "type": "Top15", "comment_count": 2, "praise_count": 26, "title": "麦当劳继续裁员,设“首席变革官”监督整改情况", "url": "http://app3.qdaily.com/app3/articles/detail/54186.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528937637.json>
None
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528937637.json>
None
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528937637.json>
{"image": "http://img.qdaily.com/article/article_show/20180612131558AJZFvOH15hkpnzb3.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54182, "publish_time": "2018-06-12 12:57:18", "type": "Top15", "comment_count": 20, "praise_count": 36, "title": "黄子韬为肯德基拍摄毕业大片,柯达让球迷拍的照片商业变现|乙方日报", "url": "http://app3.qdaily.com/app3/articles/detail/54182.json"}
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528937637.json>
None
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528937637.json>
None
2018-06-17 10:01:34 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528937637.json>
None
2018-06-17 10:01:34 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/19/1527216829.json> (referer: http://app3.qdaily.com/app3/categories/index/19/1528264334.json)
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1527216829.json>
{"image": "http://img.qdaily.com/article/article_show/20180525014441LA9ifSbpMBtOUaJm.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53589, "publish_time": "2018-05-25 07:23:12", "type": "时尚", "comment_count": 52, "praise_count": 127, "title": "有个摄影展,描述天主教国家波兰同性恋群体的爱与欲", "url": "http://app3.qdaily.com/app3/articles/detail/53589.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1527216829.json>
{"image": "http://img.qdaily.com/article/banner/20180524100137mGc2fpbyDOzLEXiT.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53539, "publish_time": "2018-05-24 11:11:08", "type": "时尚", "comment_count": 4, "praise_count": 37, "title": "Nicolas Ghesquière 与LV 续约,以及,芬兰有了一家全环保餐厅 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/53539.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1527216829.json>
{"image": "http://img.qdaily.com/article/article_show/20180523114752nou2OXcpbI31Qarh.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53503, "publish_time": "2018-05-23 14:04:16", "type": "时尚", "comment_count": 10, "praise_count": 131, "title": "Interview 全线停刊,Andy Warhol 创立的现象级媒体宣告死亡", "url": "http://app3.qdaily.com/app3/articles/detail/53503.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1527216829.json>
{"image": "http://img.qdaily.com/article/banner/20180523130734KBk1IG6WjiwOxps5.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53510, "publish_time": "2018-05-23 13:12:11", "type": "时尚", "comment_count": 4, "praise_count": 23, "title": "75% 的时尚公司在推环保,以及,Valentino 发布2019早春系列 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/53510.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1527216829.json>
{"image": "http://img.qdaily.com/article/article_show/201805221010591KOV2IYlxDpAgf3Z.JPG?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53456, "publish_time": "2018-05-22 14:08:37", "type": "时尚", "comment_count": 32, "praise_count": 169, "title": "“总而言之要先赚点钱!”,北野武推出个人时装品牌", "url": "http://app3.qdaily.com/app3/articles/detail/53456.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1527216829.json>
{"image": "http://img.qdaily.com/article/article_show/20180522141628O9KEg2vB03hDHU8l.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53460, "publish_time": "2018-05-22 14:04:39", "type": "时尚", "comment_count": 11, "praise_count": 34, "title": "艾格出售中国区成衣业务,打算接下来靠内衣生意拯救自己", "url": "http://app3.qdaily.com/app3/articles/detail/53460.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1527216829.json>
{"image": "http://img.qdaily.com/article/banner/20180522120558AJySoHtVdmh3YiQ1.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53454, "publish_time": "2018-05-22 12:14:58", "type": "时尚", "comment_count": 2, "praise_count": 23, "title": "全球有机护肤市场将增长至251亿美元,以及,Levi's和Supreme合作系列发布 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/53454.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1527216829.json>
{"image": "http://img.qdaily.com/article/article_show/20180522014126a0GnCB9DlzWTjKoy.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53439, "publish_time": "2018-05-22 07:06:08", "type": "时尚", "comment_count": 3, "praise_count": 61, "title": "50 位年轻人的摄影作品被选出,为JW Anderson提供视觉灵感", "url": "http://app3.qdaily.com/app3/articles/detail/53439.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1527216829.json>
{"image": "http://img.qdaily.com/article/article_show/20180521111921Lerc1DnfhkKbNWtE.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53403, "publish_time": "2018-05-21 11:29:58", "type": "时尚", "comment_count": 2, "praise_count": 21, "title": "浮华日报 | 线上假货销售致奢侈品牌损失“惨重”,这是过去一周的时尚新闻", "url": "http://app3.qdaily.com/app3/articles/detail/53403.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1527216829.json>
{"image": "http://img.qdaily.com/article/article_show/20180520105914boEiPQlfqh1p3wLG.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53383, "publish_time": "2018-05-21 06:52:34", "type": "时尚", "comment_count": 3, "praise_count": 29, "title": "模特联盟发起“尊重”计划,想用更有效的方式制止性骚扰", "url": "http://app3.qdaily.com/app3/articles/detail/53383.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1527216829.json>
{"image": "http://img.qdaily.com/article/banner/20180518130130UYx2ecj7WNDiXwQM.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53326, "publish_time": "2018-05-18 13:07:41", "type": "时尚", "comment_count": 1, "praise_count": 25, "title": "全球婚纱市场将超 800 亿美元,以及,钻石珠宝需求创新高 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/53326.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1527216829.json>
{"image": "http://img.qdaily.com/article/article_show/20180517120240RXV7c2xFHA6DY0O8.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53287, "publish_time": "2018-05-18 07:14:04", "type": "时尚", "comment_count": 7, "praise_count": 38, "title": "旧金山有个时尚展,想要探讨是什么影响了穆斯林着装风格", "url": "http://app3.qdaily.com/app3/articles/detail/53287.json"}
2018-06-17 10:01:35 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/63/1527727310.json> (referer: http://app3.qdaily.com/app3/categories/index/63/0.json)
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1527727310.json>
{"image": "http://img.qdaily.com/article/article_show/20180530075902dIeT18fOtoxBJSFp.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53753, "publish_time": "2018-05-30 08:39:00", "type": "大公司头条", "comment_count": 209, "praise_count": 204, "title": "大公司头条:白宫宣布将对价值 500 亿美元的中国商品征收 25% 关税,贸易战没有停;阿里、菜鸟向中通投资 13.8 亿美元,持股后者 10%;文联、电影家协会领导成立网络电影工作委员会,要引导创作导向", "url": "http://app3.qdaily.com/app3/articles/detail/53753.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1527727310.json>
{"image": "http://img.qdaily.com/article/article_show/20180529080322R1k9HjLyPlopwFDO.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53703, "publish_time": "2018-05-29 08:39:46", "type": "大公司头条", "comment_count": 48, "praise_count": 118, "title": "大公司头条:蚂蚁金服在马来西亚与银行组建合资公司;融创中国 95 亿元买下万达商业约 3.91% 股份;京东在北京推出 1 小时生鲜上门,与盒马竞争", "url": "http://app3.qdaily.com/app3/articles/detail/53703.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1527727310.json>
{"image": "http://img.qdaily.com/article/article_show/20180528074039aSRHV4BWkydXMs2A.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53656, "publish_time": "2018-05-28 08:55:21", "type": "大公司头条", "comment_count": 101, "praise_count": 148, "title": "大公司头条:美国提了解禁中兴的三个要求,中国可能批准高通和恩智浦的并购案;小米在印度推出个人网络贷款,年息 36%;上海地铁今日开始支持微信扫码进站", "url": "http://app3.qdaily.com/app3/articles/detail/53656.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1527727310.json>
{"image": "http://img.qdaily.com/article/article_show/20180525080754E2TDiPnk97uKjIhz.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53581, "publish_time": "2018-05-25 08:47:59", "type": "大公司头条", "comment_count": 71, "praise_count": 132, "title": "大公司头条:Netflix 市值一度超过迪士尼,成为全球最大媒体公司;欧盟隐私法案今天落地,政府和互联网公司都没有准备好;中国现在有 10.6 万家便利店,租金成本一年上涨了 18%。", "url": "http://app3.qdaily.com/app3/articles/detail/53581.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1527727310.json>
{"image": "http://img.qdaily.com/article/article_show/20180524080508JwKkRfGD1jpyg75e.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53541, "publish_time": "2018-05-24 09:08:03", "type": "大公司头条", "comment_count": 35, "praise_count": 102, "title": "大公司头条:百度和网易筹备以 CDR 回 A 股,最早下个月回来;苹果和大众签约,改装无人商务车用于内部测试;康卡斯特 600 亿美元现金与迪士尼竞购 21 世纪福克斯", "url": "http://app3.qdaily.com/app3/articles/detail/53541.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1527727310.json>
{"image": "http://img.qdaily.com/article/article_show/20180523080130KJcRGLwxPjQa0Vye.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53484, "publish_time": "2018-05-23 08:49:05", "type": "大公司头条", "comment_count": 85, "praise_count": 149, "title": "大公司头条:中国进口汽车税从 25% 降至 15%,特斯拉、宝马等宣布调价;滴滴最快今年下半年赴港上市,预计市值在 700-800 亿美元;北京交通委称北京的共享单车少了 19%,且 50% 闲置中", "url": "http://app3.qdaily.com/app3/articles/detail/53484.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1527727310.json>
{"image": "http://img.qdaily.com/article/article_show/20180522080020qvtCsaXYFm728Be5.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53451, "publish_time": "2018-05-22 08:42:28", "type": "大公司头条", "comment_count": 190, "praise_count": 193, "title": "大公司头条:国务院发布公告,汽车进口税率将被降至 15%;Netflix 签下奥巴马拍电视和纪录片,称不会做政治宣传;扎克伯格今晚将接受欧洲议会质询,回答欧洲数据泄漏的事", "url": "http://app3.qdaily.com/app3/articles/detail/53451.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1527727310.json>
{"image": "http://img.qdaily.com/article/article_show/20180521081808jLuC1IaTz65cfgrh.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53401, "publish_time": "2018-05-21 08:43:34", "type": "大公司头条", "comment_count": 72, "praise_count": 186, "title": "大公司头条:中美宣布停止贸易摩擦,中方将增加进口美国商品;Google 删去了“不作恶”的口号;滴滴顺风车重新上线,司机乘客都要上传身份证", "url": "http://app3.qdaily.com/app3/articles/detail/53401.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1527727310.json>
{"image": "http://img.qdaily.com/article/article_show/20180518075721c27btUv1RXriJu9F.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53313, "publish_time": "2018-05-18 08:52:18", "type": "大公司头条", "comment_count": 84, "praise_count": 155, "title": "大公司头条:陆奇将从百度离职,距离就任百度总裁不到一年半;海底捞在香港申请上市,年营业额两年翻倍至 106 亿;京东物流封杀来自阿里菜鸟的订单,要求商户接入京东系统;苹果 HomePod 一季度只卖出 60 万台,只有 Google 音箱的 1/4", "url": "http://app3.qdaily.com/app3/articles/detail/53313.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1527727310.json>
{"image": "http://img.qdaily.com/article/article_show/201805161714483lPmEvQXY7sANMS8.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53252, "publish_time": "2018-05-17 08:31:53", "type": "大公司头条", "comment_count": 71, "praise_count": 164, "title": "大公司头条:星巴克要加快在中国开店速度,4 年内开到 6000 家;今日头条改标语为“信息创造价值”,说是为了传递正确价值观;滴滴公布顺风车整改进展,夜间 8 小时不再营业", "url": "http://app3.qdaily.com/app3/articles/detail/53252.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1527727310.json>
{"image": "http://img.qdaily.com/article/article_show/20180516075946mracoVfDK4R1Q3tj.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53199, "publish_time": "2018-05-16 09:20:45", "type": "大公司头条", "comment_count": 79, "praise_count": 152, "title": "大公司头条:微博 4 月份处置 1532 个发布时政信息的账号;抖音上线店铺功能,让主播卖东西;孙正义说千亿投资基金还会有第二期", "url": "http://app3.qdaily.com/app3/articles/detail/53199.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1527727310.json>
{"image": "http://img.qdaily.com/article/article_show/20180515074906KrJLBmeCTaFu4ZXM.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53158, "publish_time": "2018-05-15 08:39:01", "type": "大公司头条", "comment_count": 48, "praise_count": 123, "title": "大公司头条:特斯拉在上海自贸区成立独资公司,但还不能生产电动车;余额宝当日转出额度下降至 1 万元;234 家 A 股公司进入 MSCI 指数,有望获得境外资金投资", "url": "http://app3.qdaily.com/app3/articles/detail/53158.json"}
2018-06-17 10:01:35 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/22/1501712617.json> (referer: http://app3.qdaily.com/app3/categories/index/22/1514243309.json)
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1501712617.json>
{"image": "http://img.qdaily.com/article/banner/20170719045250VOAow4ISeY26J1Zb.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 43152, "publish_time": "2017-07-19 06:15:25", "type": "10个图", "comment_count": 72, "praise_count": 623, "title": "欧洲 8 年干掉燃油车的激进计划像是来真的,这里是它可能影响的方方面面", "url": "http://app3.qdaily.com/app3/articles/detail/43152.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1501712617.json>
{"image": "http://img.qdaily.com/article/banner/20170710014828pCUnrPBoHWVdXw7j.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 42828, "publish_time": "2017-07-10 06:01:46", "type": "10个图", "comment_count": 33, "praise_count": 427, "title": "微软又裁了 3000 人,8 张图告诉你员工数字变化对大公司具体意味着什么", "url": "http://app3.qdaily.com/app3/articles/detail/42828.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1501712617.json>
{"image": "http://img.qdaily.com/article/banner/20170628060128EPuY3fmz14sxrvkM.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 42451, "publish_time": "2017-06-28 06:38:28", "type": "10个图", "comment_count": 88, "praise_count": 887, "title": "京东市值眼看就要追上百度了,10 张图告诉你中国互联网公司的此消彼长", "url": "http://app3.qdaily.com/app3/articles/detail/42451.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1501712617.json>
{"image": "http://img.qdaily.com/article/banner/20170511014648gyhFYGDL4vZkEil1.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 40663, "publish_time": "2017-05-11 06:05:28", "type": "10个图", "comment_count": 74, "praise_count": 725, "title": "所有超市都在做电商,我们评测了中国市场前五的超市品牌", "url": "http://app3.qdaily.com/app3/articles/detail/40663.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1501712617.json>
{"image": "http://img.qdaily.com/article/banner/20170507181135N6rt1RSmeZwDCf7E.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 40480, "publish_time": "2017-05-08 05:32:47", "type": "10个图", "comment_count": 25, "praise_count": 798, "title": "移动广告只用 6 年时间就打败了 PC,成为数字广告的主角,广告市场发生了什么?①", "url": "http://app3.qdaily.com/app3/articles/detail/40480.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1501712617.json>
{"image": "http://img.qdaily.com/article/banner/20170426082635VhL7z265CEOBec1D.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 4165, "publish_time": "2017-04-26 07:12:40", "type": "10个图", "comment_count": 45, "praise_count": 710, "title": "LVMH 将以 65 亿欧元收购 Dior,这个 70 岁的品牌到底卖的是什么?", "url": "http://app3.qdaily.com/app3/articles/detail/4165.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1501712617.json>
{"image": "http://img.qdaily.com/article/banner/20170407145416N2PQW4lBtyYZvq7c.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 39567, "publish_time": "2017-04-07 15:48:29", "type": "10个图", "comment_count": 39, "praise_count": 626, "title": "一年运了 4.9 亿人次,10 张图看中国人坐飞机这件事发生了什么变化", "url": "http://app3.qdaily.com/app3/articles/detail/39567.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1501712617.json>
{"image": "http://img.qdaily.com/article/banner/20170405000307TJE9QDZFbacH58Wz.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 39470, "publish_time": "2017-04-05 06:30:00", "type": "10个图", "comment_count": 21, "praise_count": 435, "title": "为什么是达美乐而不是 Google,成了 2004 年至今美股的大赢家", "url": "http://app3.qdaily.com/app3/articles/detail/39470.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1501712617.json>
{"image": "http://img.qdaily.com/article/banner/20170323235038AbYk2RD5QNsLBujx.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 39104, "publish_time": "2017-03-24 06:12:21", "type": "10个图", "comment_count": 77, "praise_count": 1229, "title": "最大连锁餐饮公司即将让位,星巴克为什么用了 30 多年就超越麦当劳?", "url": "http://app3.qdaily.com/app3/articles/detail/39104.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1501712617.json>
{"image": "http://img.qdaily.com/article/banner/20170322202406KNaC78pblDydhoIu.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 39071, "publish_time": "2017-03-23 05:41:22", "type": "10个图", "comment_count": 104, "praise_count": 1262, "title": "腾讯发了财报,过去一年那三家控制中文互联网的公司都怎么样了?", "url": "http://app3.qdaily.com/app3/articles/detail/39071.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1501712617.json>
{"image": "http://img.qdaily.com/article/banner/20170306193834OzYE5THRfUl0INWo.JPG?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 38490, "publish_time": "2017-03-08 07:28:27", "type": "10个图", "comment_count": 23, "praise_count": 345, "title": "环球影业从日本人那里买回了大阪环球影城,7 张图告诉你他们为什么要这么做", "url": "http://app3.qdaily.com/app3/articles/detail/38490.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/22/1501712617.json>
{"image": "http://img.qdaily.com/article/banner/20170307144206LUt6q5GHRNbJF42m.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 38514, "publish_time": "2017-03-07 15:59:26", "type": "10个图", "comment_count": 39, "praise_count": 288, "title": "奥巴马家的传记值 6500 万美元,这钱出版社能赚回来吗?", "url": "http://app3.qdaily.com/app3/articles/detail/38514.json"}
2018-06-17 10:01:35 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/18/1528951680.json> (referer: http://app3.qdaily.com/app3/categories/index/18/1529040266.json)
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528951680.json>
None
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528951680.json>
None
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528951680.json>
{"image": "http://img.qdaily.com/article/article_show/20180611143227Yjt1HqNd3R5SAExk.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54149, "publish_time": "2018-06-14 06:54:29", "type": "商业", "comment_count": 26, "praise_count": 53, "title": "锂电池公司宁德时代在 A 股上市,补贴让它三年增长 23 倍", "url": "http://app3.qdaily.com/app3/articles/detail/54149.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528951680.json>
None
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528951680.json>
{"image": "http://img.qdaily.com/article/article_show/20180613150322XqWFe4HupxShICQJ.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 54227, "publish_time": "2018-06-13 19:54:37", "type": "商业", "comment_count": 33, "praise_count": 70, "title": "小龙虾产业发展报告显示去年出口下滑,号称一年产值 2685 亿", "url": "http://app3.qdaily.com/app3/articles/detail/54227.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528951680.json>
{"image": "http://img.qdaily.com/article/article_show/201806131822031RTuvAa6JnmreGbE.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54238, "publish_time": "2018-06-13 19:27:18", "type": "商业", "comment_count": 169, "praise_count": 271, "title": "去年香港申请移民加拿大的人数涨了 30%,是大陆申请人数的 1/300 | 好奇心小数据", "url": "http://app3.qdaily.com/app3/articles/detail/54238.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528951680.json>
{"image": "http://img.qdaily.com/article/article_show/20180613152613xqVi6kd79jyfISer.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54229, "publish_time": "2018-06-13 18:18:32", "type": "商业", "comment_count": 4, "praise_count": 74, "title": "斯蒂芬·金的出版商做了个心理测试应用,根据结果开书单", "url": "http://app3.qdaily.com/app3/articles/detail/54229.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528951680.json>
{"image": "http://img.qdaily.com/article/article_show/20180613130824W7ivDhNLuHTo8XGx.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54224, "publish_time": "2018-06-13 13:52:11", "type": "商业", "comment_count": 26, "praise_count": 72, "title": "英国立法,2020年前公司必须公布CEO和员工间的薪水差值", "url": "http://app3.qdaily.com/app3/articles/detail/54224.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528951680.json>
{"image": "http://img.qdaily.com/article/article_show/20180613120622ok5c9yf4HhVYprFJ.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54221, "publish_time": "2018-06-13 12:16:28", "type": "商业", "comment_count": 15, "praise_count": 58, "title": "可口可乐新包装调侃朝美会晤,全家便利店发布吉祥物|乙方日报", "url": "http://app3.qdaily.com/app3/articles/detail/54221.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528951680.json>
None
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528951680.json>
None
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528951680.json>
None
2018-06-17 10:01:35 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/5/1528944143.json> (referer: http://app3.qdaily.com/app3/categories/index/5/1529048846.json)
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528944143.json>
{"image": "http://img.qdaily.com/article/article_show/201806140938114KJv7pwOkoH2jnRG.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54246, "publish_time": "2018-06-14 10:14:28", "type": "城市", "comment_count": 12, "praise_count": 72, "title": "全球头条速递 | 《纽约客》分析深度嵌入社交媒体的新型电视剧,2026 年世界杯扩容", "url": "http://app3.qdaily.com/app3/articles/detail/54246.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528944143.json>
{"image": "http://img.qdaily.com/article/article_show/20180613184332n5AXVZGdD6FI2CJf.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 54231, "publish_time": "2018-06-14 07:12:50", "type": "城市", "comment_count": 16, "praise_count": 146, "title": "压力如何影响人的思考?以及,年轻人似乎并不排斥压力", "url": "http://app3.qdaily.com/app3/articles/detail/54231.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528944143.json>
{"image": "http://img.qdaily.com/article/article_show/20180613150915QA5Ja0umHvE2idXx.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 54228, "publish_time": "2018-06-13 16:25:29", "type": "城市", "comment_count": 17, "praise_count": 62, "title": "你有没有为朋友选过礼物,只因为它是你想要的礼物?", "url": "http://app3.qdaily.com/app3/articles/detail/54228.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528944143.json>
{"image": "http://img.qdaily.com/article/article_show/20180613130200VnLKv092P5gHpDy8.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54222, "publish_time": "2018-06-13 13:52:14", "type": "城市", "comment_count": 10, "praise_count": 30, "title": "「这世界」全世界都在看特朗普和金正恩的历史性会晤", "url": "http://app3.qdaily.com/app3/articles/detail/54222.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528944143.json>
{"image": "http://img.qdaily.com/article/article_show/201806130729241kQyzOKcLNZArtTJ.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54215, "publish_time": "2018-06-13 10:17:49", "type": "城市", "comment_count": 21, "praise_count": 71, "title": "全球头条速递 | 美朝发表联合声明,《经济学人》探讨 AI 是否会取代放射科医生(和其他)", "url": "http://app3.qdaily.com/app3/articles/detail/54215.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528944143.json>
{"image": "http://img.qdaily.com/article/article_show/201806131548189cJ4MajBdiEzP1os.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54217, "publish_time": "2018-06-13 09:55:39", "type": "城市", "comment_count": 29, "praise_count": 82, "title": "看图:这里是过去24小时内发生的重要的事", "url": "http://app3.qdaily.com/app3/articles/detail/54217.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528944143.json>
{"image": "http://img.qdaily.com/article/banner/20180611233021Nw7QVJ8rdv6h40Bf.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54168, "publish_time": "2018-06-13 07:04:13", "type": "城市", "comment_count": 4, "praise_count": 176, "title": "从电影里的流浪汉经典到作为父亲的日常,在这里了解查理·卓别林", "url": "http://app3.qdaily.com/app3/articles/detail/54168.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528944143.json>
{"image": "http://img.qdaily.com/article/article_show/201806122126387DbucOQXRnF4vl59.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54209, "publish_time": "2018-06-13 07:02:04", "type": "城市", "comment_count": 33, "praise_count": 173, "title": "研究发现蜜蜂能够理解“无”的概念,这对人意味着什么?", "url": "http://app3.qdaily.com/app3/articles/detail/54209.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528944143.json>
{"image": "http://img.qdaily.com/article/article_show/20180612222658OGPFHBnuEpXDTmdN.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54185, "publish_time": "2018-06-13 07:01:09", "type": "城市", "comment_count": 12, "praise_count": 51, "title": "高尔夫俱乐部大量关停,这些大片绿地该怎么处理?", "url": "http://app3.qdaily.com/app3/articles/detail/54185.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528944143.json>
{"image": "http://img.qdaily.com/article/article_show/20180612163930pzgS5NJnCYxOTihZ.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54195, "publish_time": "2018-06-13 07:01:06", "type": "城市", "comment_count": 20, "praise_count": 68, "title": "从个人到政治,美国骄傲月的展览活动都在关注些什么?", "url": "http://app3.qdaily.com/app3/articles/detail/54195.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528944143.json>
{"image": "http://img.qdaily.com/article/article_show/20180612172440R3gQm6M8JhYydlPn.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54187, "publish_time": "2018-06-13 07:00:39", "type": "城市", "comment_count": 14, "praise_count": 67, "title": "全职奶爸越来越多,接近四分之一因为他们找不到工作", "url": "http://app3.qdaily.com/app3/articles/detail/54187.json"}
2018-06-17 10:01:35 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528944143.json>
{"image": "http://img.qdaily.com/article/article_show/20180611165508MPe8SLYTR2jNOE7r.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54160, "publish_time": "2018-06-13 07:00:33", "type": "城市", "comment_count": 13, "praise_count": 65, "title": "对于温哥华的这座小岛来说,为什么“保守”并不是件坏事?", "url": "http://app3.qdaily.com/app3/articles/detail/54160.json"}
2018-06-17 10:01:36 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/4/1528460139.json> (referer: http://app3.qdaily.com/app3/categories/index/4/1528795339.json)
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528460139.json>
{"image": "http://img.qdaily.com/article/article_show/20180608100508kBcUJ4KIL1NvjfGW.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54079, "publish_time": "2018-06-08 12:23:31", "type": "智能", "comment_count": 30, "praise_count": 101, "title": "不变成武器,不用于监控,Google 为使用人工智能划下了界限", "url": "http://app3.qdaily.com/app3/articles/detail/54079.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528460139.json>
{"image": "http://img.qdaily.com/article/banner/20180608114613fQiEs1KlqNLgreuv.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54062, "publish_time": "2018-06-08 11:46:27", "type": "智能", "comment_count": 77, "praise_count": 313, "title": "iOS 12 首个测试版上手体验,有 23 个值得一提的变化", "url": "http://app3.qdaily.com/app3/articles/detail/54062.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528460139.json>
None
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528460139.json>
{"image": "http://img.qdaily.com/article/article_show/201806080001103VEBlqrYkAXujIUR.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54067, "publish_time": "2018-06-08 07:19:34", "type": "智能", "comment_count": 10, "praise_count": 58, "title": "微软测试类似潜艇的数据中心,说是省钱且环保", "url": "http://app3.qdaily.com/app3/articles/detail/54067.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528460139.json>
{"image": "http://img.qdaily.com/article/article_show/20180607115541wDl9JMh27dT6u5Qy.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54042, "publish_time": "2018-06-08 07:12:51", "type": "智能", "comment_count": 4, "praise_count": 29, "title": "网易的电商业务考拉不叫“海购”了,说要做综合电商", "url": "http://app3.qdaily.com/app3/articles/detail/54042.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528460139.json>
{"image": "http://img.qdaily.com/article/article_show/20180607121638c7VSCgXIjEs6rHeo.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54043, "publish_time": "2018-06-07 12:41:25", "type": "智能", "comment_count": 22, "praise_count": 45, "title": "一份泄漏的报告称,特斯拉为了冲产能严重增加了成本", "url": "http://app3.qdaily.com/app3/articles/detail/54043.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528460139.json>
None
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528460139.json>
{"image": "http://img.qdaily.com/article/article_show/20180607055508TFXfEWImauiv8qbN.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54033, "publish_time": "2018-06-07 07:30:35", "type": "智能", "comment_count": 51, "praise_count": 76, "title": "Facebook 承认把用户数据分享给华为等四家中国企业,称很快会结束合作关系", "url": "http://app3.qdaily.com/app3/articles/detail/54033.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528460139.json>
{"image": "http://img.qdaily.com/article/article_show/20180606120036i4m9JbRoSXBKY5QD.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53998, "publish_time": "2018-06-07 07:08:43", "type": "智能", "comment_count": 2, "praise_count": 30, "title": "亚马逊也弄了个秘密开发部门 Amazon X,在癌症和快递技术", "url": "http://app3.qdaily.com/app3/articles/detail/53998.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528460139.json>
{"image": "http://img.qdaily.com/article/article_show/20180606181943thoRvHbzTUVk4qM3.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53993, "publish_time": "2018-06-07 07:08:37", "type": "智能", "comment_count": 3, "praise_count": 20, "title": "防走神的技术说了十几年,现在反倒可能因为自动驾驶被用起来", "url": "http://app3.qdaily.com/app3/articles/detail/53993.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528460139.json>
{"image": "http://img.qdaily.com/article/article_show/201806061628466Uqri51czR3Xu0mN.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54003, "publish_time": "2018-06-06 19:33:39", "type": "智能", "comment_count": 22, "praise_count": 65, "title": "苹果为 iPhone 和 Mac 准备的融合计划,要花 3 年时间完成", "url": "http://app3.qdaily.com/app3/articles/detail/54003.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/4/1528460139.json>
{"image": "http://img.qdaily.com/article/article_show/2018060512565018Qvk70XoqYEnsih.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53957, "publish_time": "2018-06-06 14:04:35", "type": "智能", "comment_count": 7, "praise_count": 68, "title": "这家公司股价今年已经涨了 60%,主要是因为 HPV 疫苗", "url": "http://app3.qdaily.com/app3/articles/detail/53957.json"}
2018-06-17 10:01:36 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/54/1523662599.json> (referer: http://app3.qdaily.com/app3/categories/index/54/1526771294.json)
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1523662599.json>
{"image": "http://img.qdaily.com/article/article_show/20180412191503n0mFsOeiA4NU2fpV.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52107, "publish_time": "2018-04-13 07:13:47", "type": "游戏", "comment_count": 17, "praise_count": 61, "title": "精英女玩家们要打击 CS 中的霸凌者,可能会招致一些问题", "url": "http://app3.qdaily.com/app3/articles/detail/52107.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1523662599.json>
{"image": "http://img.qdaily.com/article/article_show/20180412125756kg1lT6e9F4MrbP2B.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 52090, "publish_time": "2018-04-12 14:51:40", "type": "游戏", "comment_count": 15, "praise_count": 47, "title": "用户隐私事件影响游戏圈,Steam 调整玩家信息公开程度", "url": "http://app3.qdaily.com/app3/articles/detail/52090.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1523662599.json>
{"image": "http://img.qdaily.com/article/article_show/20180411211247qC14NTFgdzVDJUf5.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52061, "publish_time": "2018-04-12 07:26:00", "type": "游戏", "comment_count": 29, "praise_count": 96, "title": "GTA V 成为了史上最赚钱的主机游戏,它的成功很难复制", "url": "http://app3.qdaily.com/app3/articles/detail/52061.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1523662599.json>
{"image": "http://img.qdaily.com/article/article_show/201804091144477TzatZsLXn9gO5hS.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 51920, "publish_time": "2018-04-10 15:30:09", "type": "游戏", "comment_count": 1, "praise_count": 51, "title": "讲述游戏发展历史的《进化之地》有了续作,加强了故事性和玩法", "url": "http://app3.qdaily.com/app3/articles/detail/51920.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1523662599.json>
{"image": "http://img.qdaily.com/article/article_show/20180409185139p06iZJTvmAIzfB5L.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 51945, "publish_time": "2018-04-10 07:16:05", "type": "游戏", "comment_count": 12, "praise_count": 80, "title": "加拿大议员们被群发了一款游戏,用监控系统毁掉异见记者", "url": "http://app3.qdaily.com/app3/articles/detail/51945.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1523662599.json>
{"image": "http://img.qdaily.com/article/article_show/20180322164137i5TeyE4AZBm6H3I2.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 51385, "publish_time": "2018-03-23 07:19:49", "type": "游戏", "comment_count": 5, "praise_count": 240, "title": "一个模拟人体生理机制的游戏,灵感来自德国科普作家卡恩", "url": "http://app3.qdaily.com/app3/articles/detail/51385.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1523662599.json>
{"image": "http://img.qdaily.com/article/article_show/20180314175347PDCTbZ95VjnpJFOW.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 51106, "publish_time": "2018-03-19 13:20:11", "type": "游戏", "comment_count": 7, "praise_count": 127, "title": "最早的区块链养猫游戏 CryPtoKitties 是怎么诞生的?", "url": "http://app3.qdaily.com/app3/articles/detail/51106.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1523662599.json>
{"image": "http://img.qdaily.com/article/article_show/20180309125625UN9Gu7Joxjgcm30K.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 50973, "publish_time": "2018-03-09 13:56:15", "type": "游戏", "comment_count": 42, "praise_count": 80, "title": "连续投资斗鱼和虎牙,腾讯现在对游戏直播有了很大的话语权", "url": "http://app3.qdaily.com/app3/articles/detail/50973.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1523662599.json>
{"image": "http://img.qdaily.com/article/article_show/20180308233714fhSV3xgozpCINQti.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 50959, "publish_time": "2018-03-09 07:06:32", "type": "游戏", "comment_count": 31, "praise_count": 81, "title": "索尼叫停了一款约会游戏的发售,它被认为教坏了男人", "url": "http://app3.qdaily.com/app3/articles/detail/50959.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1523662599.json>
{"image": "http://img.qdaily.com/article/article_show/201803061300460TMsmhtDxRwyfzEb.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 50848, "publish_time": "2018-03-06 13:13:18", "type": "游戏", "comment_count": 32, "praise_count": 91, "title": "育碧展示新 AI 软件,可以在 bug 出现之前就纠错", "url": "http://app3.qdaily.com/app3/articles/detail/50848.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1523662599.json>
{"image": "http://img.qdaily.com/article/article_show/20180303185733rqgoBukw3PU1atIb.JPG?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 50769, "publish_time": "2018-03-04 06:55:12", "type": "游戏", "comment_count": 22, "praise_count": 46, "title": "今年没有新机计划,任天堂想靠外设继续提升 Switch 销量", "url": "http://app3.qdaily.com/app3/articles/detail/50769.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/54/1523662599.json>
{"image": "http://img.qdaily.com/article/article_show/20180302193330brgoFRMLxwcs1fV8.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 50759, "publish_time": "2018-03-03 07:00:40", "type": "游戏", "comment_count": 54, "praise_count": 72, "title": "为了应对枪支暴力,特朗普下周要会见游戏产业人士", "url": "http://app3.qdaily.com/app3/articles/detail/50759.json"}
2018-06-17 10:01:36 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/17/1527721688.json> (referer: http://app3.qdaily.com/app3/categories/index/17/1528413939.json)
2018-06-17 10:01:36 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/3/1528177660.json> (referer: http://app3.qdaily.com/app3/categories/index/3/1528426556.json)
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1527721688.json>
{"image": "http://img.qdaily.com/article/article_show/201805301610468W6h24MbZTi1Qj7J.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53775, "publish_time": "2018-05-31 07:05:09", "type": "设计", "comment_count": 4, "praise_count": 202, "title": "上海五原路一间小酒馆,设计的氛围轻松且有亲和力", "url": "http://app3.qdaily.com/app3/articles/detail/53775.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1527721688.json>
{"image": "http://img.qdaily.com/article/article_show/20180530162237wpivXf1dOJ5nmQAe.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53776, "publish_time": "2018-05-31 07:03:22", "type": "设计", "comment_count": 0, "praise_count": 51, "title": "日本平面设计师 Verdy,在上海让你用另一种方式体验丝网印刷", "url": "http://app3.qdaily.com/app3/articles/detail/53776.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1527721688.json>
{"image": "http://img.qdaily.com/article/banner/20180530072925s4b3YMAR51ZIjlek.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53746, "publish_time": "2018-05-30 07:29:37", "type": "设计", "comment_count": 21, "praise_count": 216, "title": "这家有 30 多年历史的特效公司也承认,不能再靠特效度日了", "url": "http://app3.qdaily.com/app3/articles/detail/53746.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1527721688.json>
{"image": "http://img.qdaily.com/article/article_show/20180529191956WZXT1d7zHAvNru9J.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53741, "publish_time": "2018-05-30 07:23:21", "type": "设计", "comment_count": 1, "praise_count": 81, "title": "方圈圆环串起来的吊灯,像是一条珠宝项链|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/53741.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1527721688.json>
{"image": "http://img.qdaily.com/article/article_show/20180529205807rSbyunpqcgmUfeWi.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53743, "publish_time": "2018-05-30 07:23:03", "type": "设计", "comment_count": 2, "praise_count": 120, "title": "Google 策划了一个线上展览,回顾画家弗里达的创作人生", "url": "http://app3.qdaily.com/app3/articles/detail/53743.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1527721688.json>
{"image": "http://img.qdaily.com/article/article_show/20180529163716df1ep23NJMvwT5Ky.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53733, "publish_time": "2018-05-30 07:18:28", "type": "设计", "comment_count": 16, "praise_count": 159, "title": "巴西一幢有着巨大草坪屋顶的住宅,支撑结构却相当细巧", "url": "http://app3.qdaily.com/app3/articles/detail/53733.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1527721688.json>
{"image": "http://img.qdaily.com/article/article_show/20180528154104NAyxezIEGDcjLnUr.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53678, "publish_time": "2018-05-29 06:55:19", "type": "设计", "comment_count": 1, "praise_count": 95, "title": "威尼斯建筑双年展上有一些获奖项目,它们体现了设计师的思索", "url": "http://app3.qdaily.com/app3/articles/detail/53678.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1527721688.json>
{"image": "http://img.qdaily.com/article/article_show/20180528223934LSQidqeycsuITzaP.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53696, "publish_time": "2018-05-29 06:50:41", "type": "设计", "comment_count": 12, "praise_count": 198, "title": "颜值高易收纳的吹风机,和一款特别的降噪耳机|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/53696.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1527721688.json>
None
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1527721688.json>
{"image": "http://img.qdaily.com/article/article_show/201805272244192ex0LvyaiglPFK9X.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53653, "publish_time": "2018-05-28 07:10:54", "type": "设计", "comment_count": 9, "praise_count": 165, "title": "这套灵感来自仙人掌的洗漱包,可以自由伸缩|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/53653.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1527721688.json>
{"image": "http://img.qdaily.com/article/article_show/201805262053501027GVLbWzTROl8f.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53638, "publish_time": "2018-05-27 07:11:05", "type": "设计", "comment_count": 6, "praise_count": 177, "title": "手写信、邮票都成了老古董,但设计师还是玩出了新意|这个设计了不起", "url": "http://app3.qdaily.com/app3/articles/detail/53638.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/17/1527721688.json>
{"image": "http://img.qdaily.com/article/article_show/201805251550531IlRNQfbxezwySB9.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53615, "publish_time": "2018-05-26 07:42:07", "type": "设计", "comment_count": 14, "praise_count": 96, "title": "加拿大新发行10加元纸币,是对人权议题的一次关注", "url": "http://app3.qdaily.com/app3/articles/detail/53615.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528177660.json>
{"image": "http://img.qdaily.com/article/article_show/20180605124212zdHyr2El0x8mbKYS.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 53956, "publish_time": "2018-06-05 13:47:00", "type": "娱乐", "comment_count": 21, "praise_count": 65, "title": "「这世界」童年动画价值观有点问题?仔细一看还真不好说啊", "url": "http://app3.qdaily.com/app3/articles/detail/53956.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528177660.json>
{"image": "http://img.qdaily.com/article/article_show/20180605104042g8r2A7XJUBisutMk.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53952, "publish_time": "2018-06-05 11:51:40", "type": "娱乐", "comment_count": 56, "praise_count": 99, "title": "危机解除,快手全资收购 A 站", "url": "http://app3.qdaily.com/app3/articles/detail/53952.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528177660.json>
{"image": "http://img.qdaily.com/article/article_show/20180605102708qWbcpLz13G2mQweh.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53951, "publish_time": "2018-06-05 10:40:14", "type": "娱乐", "comment_count": 32, "praise_count": 28, "title": "今日娱乐:快手收购 A 站,伍迪·艾伦说自己应当是 #Metoo 代言人", "url": "http://app3.qdaily.com/app3/articles/detail/53951.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528177660.json>
{"image": "http://img.qdaily.com/article/article_show/20180604220147sciPO8nZ6GpXaxke.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53928, "publish_time": "2018-06-05 07:04:50", "type": "娱乐", "comment_count": 1, "praise_count": 29, "title": "德·帕尔玛新电影将以韦恩斯坦为原型,他说要拍成恐怖片", "url": "http://app3.qdaily.com/app3/articles/detail/53928.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528177660.json>
{"image": "http://img.qdaily.com/article/article_show/20180604220341AZyNQ9lJFdE7XSnj.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53927, "publish_time": "2018-06-05 07:03:40", "type": "娱乐", "comment_count": 7, "praise_count": 20, "title": "侃爷发布新专《Ye》,背后有他一如既往的另类风格", "url": "http://app3.qdaily.com/app3/articles/detail/53927.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528177660.json>
{"image": "http://img.qdaily.com/article/article_show/20180604142014PJhCa4NndxGi9XEW.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53920, "publish_time": "2018-06-04 15:25:39", "type": "娱乐", "comment_count": 17, "praise_count": 55, "title": "第一批金爵奖八部影片公布,《动物世界》为上影节开幕片", "url": "http://app3.qdaily.com/app3/articles/detail/53920.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528177660.json>
{"image": "http://img.qdaily.com/article/article_show/20180604111456tUcCYQfgRl9p3E5r.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53912, "publish_time": "2018-06-04 14:01:32", "type": "娱乐", "comment_count": 18, "praise_count": 17, "title": "「这世界」新的龙珠漫画外封抄了美队?", "url": "http://app3.qdaily.com/app3/articles/detail/53912.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528177660.json>
{"image": "http://img.qdaily.com/article/article_show/20180604100406EP8Dx3THIOVCGuZR.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53906, "publish_time": "2018-06-04 11:08:54", "type": "娱乐", "comment_count": 22, "praise_count": 32, "title": "今日娱乐:《阿凡达 2》明年开拍,《小偷家族》将在上影节展映", "url": "http://app3.qdaily.com/app3/articles/detail/53906.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528177660.json>
{"image": "http://img.qdaily.com/article/article_show/201806032123006SQ3Hc4fVAgn2RP5.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53898, "publish_time": "2018-06-04 07:07:14", "type": "娱乐", "comment_count": 29, "praise_count": 28, "title": "「票房」儿童节短暂刺激了票房,但之后的 6 月也许乏善可陈", "url": "http://app3.qdaily.com/app3/articles/detail/53898.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528177660.json>
{"image": "http://img.qdaily.com/article/article_show/20180603180858V5YTD1RFMKlpEJdS.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53896, "publish_time": "2018-06-04 07:06:06", "type": "娱乐", "comment_count": 26, "praise_count": 135, "title": "消费“梗”变得越来越快,梗的衍生周边也更难赚钱了", "url": "http://app3.qdaily.com/app3/articles/detail/53896.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528177660.json>
{"image": "http://img.qdaily.com/article/article_show/201806040132084AO1wYlrMk6zpIER.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53901, "publish_time": "2018-06-04 07:05:49", "type": "娱乐", "comment_count": 3, "praise_count": 51, "title": "《公民凯恩》导演奥逊·威尔斯的遗作,时隔 48 年终将上映", "url": "http://app3.qdaily.com/app3/articles/detail/53901.json"}
2018-06-17 10:01:36 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/3/1528177660.json>
{"image": "http://img.qdaily.com/article/article_show/20180603172052I0bOv1axNJkit5EX.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53895, "publish_time": "2018-06-04 07:05:31", "type": "娱乐", "comment_count": 13, "praise_count": 34, "title": "《侏罗纪世界 2》即将上映,环球是如何运营侏罗纪这个大 IP 的?", "url": "http://app3.qdaily.com/app3/articles/detail/53895.json"}
2018-06-17 10:01:36 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/16/1528757878.json> (referer: http://app3.qdaily.com/app3/categories/index/16/1528937637.json)
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528757878.json>
{"image": "http://img.qdaily.com/article/article_show/20180611174829v8np3iA6dQzrePqx.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54144, "publish_time": "2018-06-11 19:24:18", "type": "Top15", "comment_count": 28, "praise_count": 85, "title": "优衣库新合作的哆啦 A 梦 UT 卖得仍然很好,村上隆聊了这次的合作", "url": "http://app3.qdaily.com/app3/articles/detail/54144.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528757878.json>
{"image": "http://img.qdaily.com/article/article_show/201806111711359msNt6x4qX2ruLiz.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 54162, "publish_time": "2018-06-11 19:17:38", "type": "Top15", "comment_count": 67, "praise_count": 171, "title": "如果优酷世界杯网络直播权花了16亿,这意味着什么? | 好奇心小数据", "url": "http://app3.qdaily.com/app3/articles/detail/54162.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528757878.json>
None
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528757878.json>
None
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528757878.json>
None
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528757878.json>
{"image": "http://img.qdaily.com/article/article_show/20180609204228idpTce1Yj8Qt0lDL.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54119, "publish_time": "2018-06-10 07:07:45", "type": "Top15", "comment_count": 9, "praise_count": 51, "title": "在美国也大幅扩张的星巴克,可能遇到了客流和交易数量瓶颈", "url": "http://app3.qdaily.com/app3/articles/detail/54119.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528757878.json>
None
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528757878.json>
{"image": "http://img.qdaily.com/article/article_show/20180608132445LpQsBz2ZGHbJfNoO.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54091, "publish_time": "2018-06-09 07:34:10", "type": "Top15", "comment_count": 19, "praise_count": 103, "title": "一家“无人智慧面包店”在北京开业,是口碑和味多美的合作", "url": "http://app3.qdaily.com/app3/articles/detail/54091.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528757878.json>
None
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528757878.json>
{"image": "http://img.qdaily.com/article/article_show/20180608111115coQdJUOkPKsjebln.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54083, "publish_time": "2018-06-08 12:23:51", "type": "Top15", "comment_count": 27, "praise_count": 39, "title": "麦当劳推出巨无霸袜子,广电总局不允许互联网电视直播世界杯|乙方日报", "url": "http://app3.qdaily.com/app3/articles/detail/54083.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528757878.json>
None
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/16/1528757878.json>
None
2018-06-17 10:01:37 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/1/1526973327.json> (referer: http://app3.qdaily.com/app3/categories/index/1/1527717818.json)
2018-06-17 10:01:37 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/19/1526598844.json> (referer: http://app3.qdaily.com/app3/categories/index/19/1527216829.json)
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1526973327.json>
{"image": "http://img.qdaily.com/article/banner/20180521235609L5pzec6kmuofPhV9.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53440, "publish_time": "2018-05-22 06:21:11", "type": "长文章", "comment_count": 211, "praise_count": 1787, "title": "那些在广州的非洲人,他们如何做生意,如何生活|“低端全球化”①", "url": "http://app3.qdaily.com/app3/articles/detail/53440.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1526973327.json>
{"image": "http://img.qdaily.com/article/banner/20180513232218dHiB7CGkAQEzOxU5.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53127, "publish_time": "2018-05-21 14:07:00", "type": "长文章", "comment_count": 112, "praise_count": 506, "title": "被北师大解聘 10 个月之后,学者史杰鹏出了一本讲解诗词的新书 | 访谈录", "url": "http://app3.qdaily.com/app3/articles/detail/53127.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1526973327.json>
{"image": "http://img.qdaily.com/article/banner/20180521081750EekhMxJa6UIolVKT.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53399, "publish_time": "2018-05-21 05:13:49", "type": "长文章", "comment_count": 79, "praise_count": 1085, "title": "海底捞年收入做到 100 亿,一个以市场扩张为战略的火锅店会有什么风险", "url": "http://app3.qdaily.com/app3/articles/detail/53399.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1526973327.json>
{"image": "http://img.qdaily.com/article/banner/20180514151717eRNglDIaq349wXGJ.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53118, "publish_time": "2018-05-20 07:05:53", "type": "长文章", "comment_count": 42, "praise_count": 996, "title": "人类认识 HAL 9000 的第 50 年,AI 恐惧如何从科幻作品渗透到了现实?", "url": "http://app3.qdaily.com/app3/articles/detail/53118.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1526973327.json>
{"image": "http://img.qdaily.com/article/banner/20180518154602e7FsNfzRL49o62UD.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53333, "publish_time": "2018-05-18 15:59:53", "type": "长文章", "comment_count": 61, "praise_count": 388, "title": "世界杯快开赛了还有一半赞助商没着落,最大的体育赛事也陷入困境", "url": "http://app3.qdaily.com/app3/articles/detail/53333.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1526973327.json>
{"image": "http://img.qdaily.com/article/banner/20180518072817PlCp1iKzbNeUnT6x.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53311, "publish_time": "2018-05-18 06:19:05", "type": "长文章", "comment_count": 143, "praise_count": 703, "title": "人口它是个问题 | 一个 110 万人的城市,将近四分之一都是老人,这是它的日常", "url": "http://app3.qdaily.com/app3/articles/detail/53311.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1526973327.json>
{"image": "http://img.qdaily.com/article/banner/20180424160120lgD4bqoa3zZsUwCh.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52499, "publish_time": "2018-05-17 14:21:07", "type": "长文章", "comment_count": 12, "praise_count": 494, "title": "一个育儿专家,是怎么把教父母如何哄宝宝睡觉变成一门大生意的?", "url": "http://app3.qdaily.com/app3/articles/detail/52499.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1526973327.json>
{"image": "http://img.qdaily.com/article/banner/20180515005709zxMAuNvsL0Wo3PGY.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53174, "publish_time": "2018-05-17 07:24:19", "type": "长文章", "comment_count": 99, "praise_count": 1206, "title": "全球变化、中国奇异崛起、对年轻人的担忧,历史学家尼尔·弗格森访谈录", "url": "http://app3.qdaily.com/app3/articles/detail/53174.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1526973327.json>
{"image": "http://img.qdaily.com/article/banner/201805081355242pK8yxM15qZicVnQ.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52945, "publish_time": "2018-05-16 14:32:15", "type": "长文章", "comment_count": 18, "praise_count": 405, "title": "常年“不务正业”的英国建筑师团体,为什么做出的作品额外让人关注?", "url": "http://app3.qdaily.com/app3/articles/detail/52945.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1526973327.json>
{"image": "http://img.qdaily.com/article/banner/20180515192640eQB4FfzK2wE5dUq0.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53210, "publish_time": "2018-05-16 06:00:59", "type": "长文章", "comment_count": 127, "praise_count": 402, "title": "600 个性别平等倡导者在瑞典开了一个会,真诚地探讨了若干问题", "url": "http://app3.qdaily.com/app3/articles/detail/53210.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1526973327.json>
{"image": "http://img.qdaily.com/article/banner/20180511142347kShEDK8aiQVlt03Y.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53040, "publish_time": "2018-05-15 13:59:22", "type": "长文章", "comment_count": 47, "praise_count": 451, "title": "百年吉他老牌破产保护,一种代表一个时代灵魂的乐器为何失去光辉?", "url": "http://app3.qdaily.com/app3/articles/detail/53040.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/1/1526973327.json>
{"image": "http://img.qdaily.com/article/banner/20180509135200wMFDuzSkVN5H6hKt.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52966, "publish_time": "2018-05-14 14:01:10", "type": "长文章", "comment_count": 26, "praise_count": 353, "title": "以“异乡人”自居的导演赵德胤说,电影太不重要了,人生才重要 | 访谈录", "url": "http://app3.qdaily.com/app3/articles/detail/52966.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1526598844.json>
{"image": "http://img.qdaily.com/article/article_show/20180517125259cik0pOHLKg3MXFeZ.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53291, "publish_time": "2018-05-18 07:12:15", "type": "时尚", "comment_count": 11, "praise_count": 77, "title": "卡地亚与女版《十一罗汉》合作了天价项链,它戏份不少", "url": "http://app3.qdaily.com/app3/articles/detail/53291.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1526598844.json>
{"image": "http://img.qdaily.com/article/banner/20180517121716nHbZFv6GzjB3KE4t.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53278, "publish_time": "2018-05-17 12:29:58", "type": "时尚", "comment_count": 8, "praise_count": 63, "title": "Burberry 公布业绩后股价上涨,以及,年度最佳香水名单出炉 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/53278.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1526598844.json>
{"image": "http://img.qdaily.com/article/banner/20180516120152AZQYiI4ac72PeB6w.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53222, "publish_time": "2018-05-16 12:09:09", "type": "时尚", "comment_count": 0, "praise_count": 23, "title": "历峰集团推出新手表品牌,以及,Supreme 发布墨镜产品 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/53222.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1526598844.json>
{"image": "http://img.qdaily.com/article/article_show/20180515183932RFkXKO2iQ3ZWLGSu.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53212, "publish_time": "2018-05-16 06:57:50", "type": "时尚", "comment_count": 13, "praise_count": 29, "title": "都柏林举办了一场时装秀,一切是为了堕胎合法化", "url": "http://app3.qdaily.com/app3/articles/detail/53212.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1526598844.json>
{"image": "http://img.qdaily.com/article/banner/201805151139551MnuzchrK8q6f7Z4.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53176, "publish_time": "2018-05-15 11:51:02", "type": "时尚", "comment_count": 0, "praise_count": 28, "title": "Vetements 重返时装周,以及,Levi's 与中国设计师推出了合作款 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/53176.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1526598844.json>
{"image": "http://img.qdaily.com/article/article_show/20180513211926AdG3PCmX4Zx6oEKv.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53124, "publish_time": "2018-05-14 09:00:00", "type": "时尚", "comment_count": 2, "praise_count": 23, "title": "浮华日报 | 全球美妆销售3年后将超五千亿欧,这是过去一周的时尚新闻", "url": "http://app3.qdaily.com/app3/articles/detail/53124.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1526598844.json>
{"image": "http://img.qdaily.com/article/banner/20180511114002A2vUVWC4jLwyduGH.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53063, "publish_time": "2018-05-11 11:46:28", "type": "时尚", "comment_count": 0, "praise_count": 21, "title": "J!NS 开展医药服务,以及,Lady Gaga 可能也要做美妆 ︳浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/53063.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1526598844.json>
{"image": "http://img.qdaily.com/article/banner/20180510115350vsb2WjBQZ8kucSlo.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53028, "publish_time": "2018-05-10 11:57:55", "type": "时尚", "comment_count": 0, "praise_count": 12, "title": "优衣库明年将在印度开店,以及,Nike CEO 就企业文化问题致歉 ︳浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/53028.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1526598844.json>
{"image": "http://img.qdaily.com/article/banner/201805091146425xBqdlWNP23ey0Eb.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52992, "publish_time": "2018-05-09 12:21:57", "type": "时尚", "comment_count": 3, "praise_count": 19, "title": "H&M 开卖 Met Gala 主题服装,以及,霉霉代言 Fuji Film ︳浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/52992.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1526598844.json>
{"image": "http://img.qdaily.com/article/banner/20180508111335o2aOXUE7kWCTA5ZQ.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52944, "publish_time": "2018-05-08 11:22:16", "type": "时尚", "comment_count": 7, "praise_count": 31, "title": "Nike 起诉 Puma 侵权,以及,Met Gala 开始了 | 浮华日报", "url": "http://app3.qdaily.com/app3/articles/detail/52944.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1526598844.json>
{"image": "http://img.qdaily.com/article/article_show/20180508004253LiDh36pU2e1uHfFM.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52937, "publish_time": "2018-05-08 06:54:08", "type": "时尚", "comment_count": 12, "praise_count": 80, "title": "LV首次推出男士香水系列,香料的前缀地名尤其细致", "url": "http://app3.qdaily.com/app3/articles/detail/52937.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/19/1526598844.json>
{"image": "http://img.qdaily.com/article/article_show/201805071203569DxKZOCigeqSwhpf.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52896, "publish_time": "2018-05-07 12:28:11", "type": "时尚", "comment_count": 2, "praise_count": 22, "title": "浮华日报 | 过去一周这些时尚新闻你值得一看", "url": "http://app3.qdaily.com/app3/articles/detail/52896.json"}
2018-06-17 10:01:37 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/63/1526344741.json> (referer: http://app3.qdaily.com/app3/categories/index/63/1527727310.json)
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1526344741.json>
{"image": "http://img.qdaily.com/article/article_show/20180513221813zysobic0WZNxuBRH.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53125, "publish_time": "2018-05-14 08:39:30", "type": "大公司头条", "comment_count": 80, "praise_count": 151, "title": "大公司头条:特朗普说要给中兴一个机会继续做生意;顺丰与新邦物流合作成立的快运品牌“顺心捷达”,以加盟形式和德邦竞争;海南计划 7 年引进百万人才,落户即可买房", "url": "http://app3.qdaily.com/app3/articles/detail/53125.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1526344741.json>
{"image": "http://img.qdaily.com/article/article_show/20180511091231OkwQlXzvFALnRpY3.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53051, "publish_time": "2018-05-11 08:46:28", "type": "大公司头条", "comment_count": 22, "praise_count": 104, "title": "大公司头条:蚂蚁金服新一轮融资 100 亿美元,估值 1500 亿美元;滴滴向富士达和喜德盛采购 200 万辆单车;苹果将与高盛合作推出 Apple Pay 联名信用卡", "url": "http://app3.qdaily.com/app3/articles/detail/53051.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1526344741.json>
{"image": "http://img.qdaily.com/article/article_show/20180510080657PVXQcbZU5B4Tpelv.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 53021, "publish_time": "2018-05-10 09:03:35", "type": "大公司头条", "comment_count": 44, "praise_count": 147, "title": "大公司头条:联众公司 36 人被捕,因棋牌事业部“德州扑克”涉赌;中兴发公告称主要经营活动已无法进行;美国退出伊核协定,波音和空客的 400 亿美元订单无法执行", "url": "http://app3.qdaily.com/app3/articles/detail/53021.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1526344741.json>
{"image": "http://img.qdaily.com/article/article_show/20180509083154OrSHRb5uGtyx6Qs9.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52986, "publish_time": "2018-05-09 08:45:17", "type": "大公司头条", "comment_count": 50, "praise_count": 135, "title": "大公司头条:小米降低上市估值目标,从 1000 亿美元变成 700-800 亿;Google 发布新 Android 系统,允许用户限制每个应用每天用多久;京东发财报,收入增长两年内最低", "url": "http://app3.qdaily.com/app3/articles/detail/52986.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1526344741.json>
{"image": "http://img.qdaily.com/article/article_show/20180508003758EjUJDkdiWSw8GsAK.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52936, "publish_time": "2018-05-08 08:50:16", "type": "大公司头条", "comment_count": 39, "praise_count": 131, "title": "大公司头条:沃尔玛商谈 150 亿美元控股印度第一大电商 Flipkart;奥林巴斯将关闭深圳相机工厂,搬去越南;环球影城在北京投资翻倍至 65 亿美元,超过了上海迪士尼", "url": "http://app3.qdaily.com/app3/articles/detail/52936.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1526344741.json>
{"image": "http://img.qdaily.com/article/article_show/20180507075510bVRmpkWYK68rIedJ.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52894, "publish_time": "2018-05-07 08:46:35", "type": "大公司头条", "comment_count": 85, "praise_count": 191, "title": "【更新】大公司头条:星巴克将零售咖啡和餐饮业务出售给雀巢;巴菲特买成了苹果第二大股东,说可能会接着买;Facebook 正研究推出付费去广告模式", "url": "http://app3.qdaily.com/app3/articles/detail/52894.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1526344741.json>
{"image": "http://img.qdaily.com/article/article_show/20180504051118y4D6xAhk12z8Ljan.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52829, "publish_time": "2018-05-04 08:19:47", "type": "大公司头条", "comment_count": 22, "praise_count": 113, "title": "大公司头条:长和与小米达成合作,将在 17700 家海外门店销售小米设备;余额宝今天将引入两只新货币基金,暂时不限购;前大众 CEO 被美国司法部提起刑事诉讼,还是因为排放门", "url": "http://app3.qdaily.com/app3/articles/detail/52829.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1526344741.json>
{"image": "http://img.qdaily.com/article/article_show/20180503045440GzKH29yoYXur4sBg.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52780, "publish_time": "2018-05-03 08:05:37", "type": "大公司头条", "comment_count": 70, "praise_count": 115, "title": "大公司头条:小米 2017 年营收增长 67.5%,经营利润 122 亿;特斯拉一季度亏损同比翻倍,但 Model 3 产量增加到每周 2000;福特和众泰成立新合资公司,为网约车司机提供电动车", "url": "http://app3.qdaily.com/app3/articles/detail/52780.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1526344741.json>
{"image": "http://img.qdaily.com/article/article_show/20180502045137zBrRuAx1YhXCjDb9.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52730, "publish_time": "2018-05-02 08:46:21", "type": "大公司头条", "comment_count": 93, "praise_count": 176, "title": "大公司头条:苹果一季度利润增长 25%,但 iPhone X 所占比例有明显下滑;增值税五一后下降 1%,大众汽车、成品油价等都宣布降价;Facebook 修改隐私规则,用户可以不提供浏览记录", "url": "http://app3.qdaily.com/app3/articles/detail/52730.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1526344741.json>
{"image": "http://img.qdaily.com/article/article_show/201804280755276pfaUhq5PuV7gmnX.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52656, "publish_time": "2018-04-28 08:47:19", "type": "大公司头条", "comment_count": 82, "praise_count": 140, "title": "大公司头条:小米上市在即,8 个联合创始人中 2 人离职;资管新规 2020 年年底实行,金融机构不能再为投资者保本;赛百味在美国要关 500 家门店,海外开 1000 家", "url": "http://app3.qdaily.com/app3/articles/detail/52656.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1526344741.json>
{"image": "http://img.qdaily.com/article/article_show/201804262157243V9AW0S2cCoXJH1T.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52613, "publish_time": "2018-04-27 09:08:04", "type": "大公司头条", "comment_count": 44, "praise_count": 103, "title": "大公司头条:亚马逊运营利润翻倍,贝索斯个人财富增加 120 亿;乐视公布去年亏了 138 亿,是 A 股最多的;滴滴在深圳投放电单车,交警称将约谈", "url": "http://app3.qdaily.com/app3/articles/detail/52613.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/63/1526344741.json>
{"image": "http://img.qdaily.com/article/article_show/20180426072358K7Q8BFvEf6mVwlZW.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 52573, "publish_time": "2018-04-26 08:52:08", "type": "大公司头条", "comment_count": 122, "praise_count": 197, "title": "大公司头条:华为被美国政府调查,也是因为违反伊朗禁运;Facebook 发财报,收入和利润都增长五成;阿里推出“阿里医务室”,为企业对接体检服务", "url": "http://app3.qdaily.com/app3/articles/detail/52573.json"}
2018-06-17 10:01:37 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/18/1528840399.json> (referer: http://app3.qdaily.com/app3/categories/index/18/1528951680.json)
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528840399.json>
{"image": "http://img.qdaily.com/article/article_show/20180612182842gL74G9nqoH65rV32.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54203, "publish_time": "2018-06-12 18:58:04", "type": "商业", "comment_count": 5, "praise_count": 48, "title": "小米提交 CDR 上市申请,它可能成为新一代公司两地上市的模版", "url": "http://app3.qdaily.com/app3/articles/detail/54203.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528840399.json>
{"image": "http://img.qdaily.com/article/article_show/20180612162211sq1ztv7CaoOpk3nI.jpeg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54192, "publish_time": "2018-06-12 18:56:14", "type": "商业", "comment_count": 4, "praise_count": 17, "title": "当代明诚包下亚足联在全球的商务权益,世界杯、英超、西甲也和这家公司有关", "url": "http://app3.qdaily.com/app3/articles/detail/54192.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528840399.json>
None
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528840399.json>
None
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528840399.json>
{"image": "http://img.qdaily.com/article/article_show/20180611152402mBkMiEqRF3wDT5Ct.png?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54152, "publish_time": "2018-06-12 07:02:15", "type": "商业", "comment_count": 169, "praise_count": 84, "title": "B 站上线差评功能,引发内容创作者争议", "url": "http://app3.qdaily.com/app3/articles/detail/54152.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528840399.json>
{"image": "http://img.qdaily.com/article/article_show/20180611174935jqg3da1zXNnQxKI4.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54157, "publish_time": "2018-06-12 07:00:44", "type": "商业", "comment_count": 8, "praise_count": 65, "title": "肯德基母公司在上海开家咖啡馆,也想当网红店", "url": "http://app3.qdaily.com/app3/articles/detail/54157.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528840399.json>
None
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528840399.json>
None
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528840399.json>
None
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528840399.json>
{"image": "http://img.qdaily.com/article/article_show/20180611132820hOzYNIuvpKZ6CmFr.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54146, "publish_time": "2018-06-11 13:40:01", "type": "商业", "comment_count": 19, "praise_count": 86, "title": "零售商都在做自有品牌,但研究说消费者还是更信赖大品牌", "url": "http://app3.qdaily.com/app3/articles/detail/54146.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528840399.json>
{"image": "http://img.qdaily.com/article/article_show/20180611122722nPC7SclzhNeE4QOL.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 54139, "publish_time": "2018-06-11 12:31:52", "type": "商业", "comment_count": 33, "praise_count": 37, "title": "王者荣耀推出梅西世界杯皮肤,吴亦凡成 Smart 全球代言人|乙方日报", "url": "http://app3.qdaily.com/app3/articles/detail/54139.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/18/1528840399.json>
None
2018-06-17 10:01:37 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://app3.qdaily.com/app3/categories/index/5/1528844433.json> (referer: http://app3.qdaily.com/app3/categories/index/5/1528944143.json)
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528844433.json>
{"image": "http://img.qdaily.com/article/article_show/20180612164040n39cMmZkwWVHRYEQ.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54197, "publish_time": "2018-06-13 07:00:26", "type": "城市", "comment_count": 4, "praise_count": 63, "title": "“肖像画奥斯卡”在伦敦颁奖,来自中国的朱同尧获得了第三名", "url": "http://app3.qdaily.com/app3/articles/detail/54197.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528844433.json>
{"image": "http://img.qdaily.com/article/article_show/20180612182044X0C3JWMQvTP1s7hc.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54204, "publish_time": "2018-06-12 18:59:34", "type": "城市", "comment_count": 138, "praise_count": 87, "title": "纽约地铁被彩虹海报占领,它们伪装成官方信息", "url": "http://app3.qdaily.com/app3/articles/detail/54204.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528844433.json>
None
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528844433.json>
{"image": "http://img.qdaily.com/article/article_show/20180612141400nE8GOzegyBbms57M.gif?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/ignore-error/1", "id": 54184, "publish_time": "2018-06-12 14:44:44", "type": "城市", "comment_count": 12, "praise_count": 48, "title": "「这世界」伦敦一家咖啡馆说为环保拿牛油果壳当碗,结果被群嘲了", "url": "http://app3.qdaily.com/app3/articles/detail/54184.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528844433.json>
{"image": "http://img.qdaily.com/article/article_show/20180612110552oIwJWRdNumMjpXiU.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54174, "publish_time": "2018-06-12 11:11:14", "type": "城市", "comment_count": 25, "praise_count": 58, "title": "看图:“特金会”在新加坡举行,以及其他重要的事", "url": "http://app3.qdaily.com/app3/articles/detail/54174.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528844433.json>
{"image": "http://img.qdaily.com/article/article_show/20180612094550ucQsjY07xdvNA9ep.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54176, "publish_time": "2018-06-12 10:22:12", "type": "城市", "comment_count": 7, "praise_count": 58, "title": "全球头条速递 | 特金 45 分钟单独会谈,《新闻周刊》讨论中非共和国的儿童兵", "url": "http://app3.qdaily.com/app3/articles/detail/54176.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528844433.json>
{"image": "http://img.qdaily.com/article/article_show/20180612021124wy1P8qFfJ9hgerDv.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54166, "publish_time": "2018-06-12 08:55:33", "type": "城市", "comment_count": 106, "praise_count": 165, "title": "上海骄傲节开幕,周六的骄傲跑是最“公开”的一场活动", "url": "http://app3.qdaily.com/app3/articles/detail/54166.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528844433.json>
{"image": "http://img.qdaily.com/article/article_show/20180611192925sMO6tnZK4Gk7Qvz9.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54165, "publish_time": "2018-06-12 07:07:02", "type": "城市", "comment_count": 29, "praise_count": 155, "title": "同志影展短片竞赛最佳影片,讲的是青春期和春药的故事", "url": "http://app3.qdaily.com/app3/articles/detail/54165.json"}
2018-06-17 10:01:37 [scrapy.core.scraper] DEBUG: Scraped from <200 http://app3.qdaily.com/app3/categories/index/5/1528844433.json>
{"image": "http://img.qdaily.com/article/article_show/20180611182957JG0pwAh58jsO7IVZ.jpg?imageMogr2/auto-orient/thumbnail/!640x380r/gravity/Center/crop/640x380/quality/85/format/jpg/ignore-error/1", "id": 54164, "publish_time": "2018-06-12 07:04:13", "type": "城市", "comment_count": 15, "praise_count": 162, "title": "2018 届哈佛本科毕业生有什么特点,BBC 挑了 10 个重点", "url": "http://app3.qdaily.com/app3/articles/detail/54164.json"}