-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.txt
13926 lines (13918 loc) · 660 KB
/
log.txt
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
[2016-06-28 02:43:51 PM][15884:140168511158080][INFO] Scrapy 1.1.0 started (bot: lyspider)
[2016-06-28 02:43:51 PM][15884:140168511158080][INFO] Overridden settings: {'NEWSPIDER_MODULE': 'lyspider.spiders', 'SPIDER_MODULES': ['lyspider.spiders'], 'ROBOTSTXT_OBEY': True, 'COOKIES_ENABLED': False, 'BOT_NAME': 'lyspider', 'DOWNLOAD_DELAY': 1}
[2016-06-28 02:43:52 PM][15884:140168511158080][INFO] Enabled extensions:
['scrapy.extensions.corestats.CoreStats', 'scrapy.extensions.logstats.LogStats']
[2016-06-28 02:43:52 PM][15884:140168511158080][WARNING] /home/liuyanglyliu/PycharmProjects/lyscrapy/py3env/lib/python3.5/site-packages/scrapy/utils/deprecate.py:156: ScrapyDeprecationWarning: `scrapy.contrib.downloadermiddleware.useragent.UserAgentMiddleware` class is deprecated, use `scrapy.downloadermiddlewares.useragent.UserAgentMiddleware` instead
ScrapyDeprecationWarning)
[2016-06-28 02:43:52 PM][15884:140168511158080][WARNING] /home/liuyanglyliu/PycharmProjects/lyscrapy/lyspider/lyspider/middlewares.py:2: ScrapyDeprecationWarning: Module `scrapy.log` has been deprecated, Scrapy now relies on the builtin Python library for logging. Read the updated logging entry in the documentation to learn more.
from scrapy import log
[2016-06-28 02:43:52 PM][15884:140168511158080][WARNING] /home/liuyanglyliu/PycharmProjects/lyscrapy/lyspider/lyspider/middlewares.py:3: ScrapyDeprecationWarning: Module `scrapy.contrib.downloadermiddleware.useragent` is deprecated, use `scrapy.downloadermiddlewares.useragent` instead
from scrapy.contrib.downloadermiddleware.useragent import UserAgentMiddleware
[2016-06-28 02:43:52 PM][15884:140168511158080][INFO] Enabled downloader middlewares:
['scrapy.downloadermiddlewares.robotstxt.RobotsTxtMiddleware',
'scrapy.downloadermiddlewares.httpauth.HttpAuthMiddleware',
'scrapy.downloadermiddlewares.downloadtimeout.DownloadTimeoutMiddleware',
'lyspider.middlewares.RandomUserAgentMiddleware',
'lyspider.middlewares.ProxyMiddleware',
'scrapy.downloadermiddlewares.retry.RetryMiddleware',
'scrapy.downloadermiddlewares.defaultheaders.DefaultHeadersMiddleware',
'scrapy.downloadermiddlewares.redirect.MetaRefreshMiddleware',
'scrapy.downloadermiddlewares.httpcompression.HttpCompressionMiddleware',
'scrapy.downloadermiddlewares.redirect.RedirectMiddleware',
'scrapy.downloadermiddlewares.chunked.ChunkedTransferMiddleware',
'scrapy.downloadermiddlewares.stats.DownloaderStats']
[2016-06-28 02:43:52 PM][15884:140168511158080][INFO] Enabled spider middlewares:
['scrapy.spidermiddlewares.httperror.HttpErrorMiddleware',
'scrapy.spidermiddlewares.offsite.OffsiteMiddleware',
'scrapy.spidermiddlewares.referer.RefererMiddleware',
'scrapy.spidermiddlewares.urllength.UrlLengthMiddleware',
'scrapy.spidermiddlewares.depth.DepthMiddleware']
[2016-06-28 02:43:52 PM][15884:140168511158080][INFO] Enabled item pipelines:
['lyspider.pipelines.DuplicatePipeline', 'lyspider.pipelines.DataBasePipeline']
[2016-06-28 02:43:52 PM][15884:140168511158080][INFO] Spider opened
[2016-06-28 02:43:52 PM][15884:140168511158080][INFO] Crawled 0 pages (at 0 pages/min), scraped 0 items (at 0 items/min)
[2016-06-28 02:43:52 PM][15884:140168511158080][WARNING] /home/liuyanglyliu/PycharmProjects/lyscrapy/lyspider/lyspider/middlewares.py:16: ScrapyDeprecationWarning: log.msg has been deprecated, create a python logger and log through it instead
log.msg("Current UserAgent: " + ua)
[2016-06-28 02:43:52 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:16.0) Gecko/16.0 Firefox/16.0
[2016-06-28 02:43:52 PM][15884:140168511158080][DEBUG] Crawled (200) <GET http://gny.ly.com/robots.txt> (referer: None)
[2016-06-28 02:43:52 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.36 Safari/535.7
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Crawled (200) <GET http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list> (referer: None)
[2016-06-28 02:43:53 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.36 Safari/535.7
[2016-06-28 02:43:53 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.55.3 (KHTML, like Gecko) Version/5.1.3 Safari/534.53.10
[2016-06-28 02:43:53 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.55.3 (KHTML, like Gecko) Version/5.1.3 Safari/534.53.10
[2016-06-28 02:43:53 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.55.3 (KHTML, like Gecko) Version/5.1.3 Safari/534.53.10
[2016-06-28 02:43:53 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:16.0) Gecko/16.0 Firefox/16.0
[2016-06-28 02:43:53 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.55.3 (KHTML, like Gecko) Version/5.1.3 Safari/534.53.10
[2016-06-28 02:43:53 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.36 Safari/535.7
[2016-06-28 02:43:53 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.36 Safari/535.7
[2016-06-28 02:43:53 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:16.0) Gecko/16.0 Firefox/16.0
[2016-06-28 02:43:53 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:16.0) Gecko/16.0 Firefox/16.0
[2016-06-28 02:43:53 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:16.0) Gecko/16.0 Firefox/16.0
[2016-06-28 02:43:53 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.36 Safari/535.7
[2016-06-28 02:43:53 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.55.3 (KHTML, like Gecko) Version/5.1.3 Safari/534.53.10
[2016-06-28 02:43:53 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:16.0) Gecko/16.0 Firefox/16.0
[2016-06-28 02:43:53 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:16.0) Gecko/16.0 Firefox/16.0
[2016-06-28 02:43:53 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.55.3 (KHTML, like Gecko) Version/5.1.3 Safari/534.53.10
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '115',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 2319.0,
'sales': 390,
'satisfaction': '99%',
'title': '华东五市+拈花湾+乌镇+拙政园双飞5日跟团游<无购物 国际品牌酒店 西栅内精品客栈 赠宋城门票 西湖VIP包船>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j1p72832c0.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '2',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 1819.0,
'sales': 20,
'satisfaction': '100%',
'title': '华东五市+乌镇+南浔+灵山大佛双飞5日跟团游<升级花园名都酒店 绿地御豪酒店 夜宿水乡 赠温泉 乌镇半天自由活动 大报恩寺>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j1p72608c0.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '173',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 1949.0,
'sales': 586,
'satisfaction': '98%',
'title': '华东五市+四水乡+西湖+中山陵双飞6日跟团游<航班任选 玩转4水乡 乌镇 周庄 南浔 木渎 0购物 升级一晚山庄酒店>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p14543c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '65',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 2241.0,
'sales': 228,
'satisfaction': '100%',
'title': '杭州+苏州+上海+乌镇双高4日跟团游<火车车次自选 2晚国际品牌酒店 1晚西栅内精品客栈 赠宋城门票 杭进沪出>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j4p56018c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '2',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 1899.0,
'sales': 230,
'satisfaction': '100%',
'title': '上海迪士尼乐园+春秋淹城乐园+苏沪杭+乌镇+西塘双飞6日跟团游<双园记 近乌镇升级1晚高档酒店 每人免费赠送小礼品一份>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j1p66423c0.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '11',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 2079.0,
'sales': 54,
'satisfaction': '91%',
'title': '华东五市+南山竹海+周庄+乌镇双飞6日跟团游<航班时间任选 升级一晚开元酒店 夜宿水乡 船游西湖>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p53446c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '17',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 2635.0,
'sales': 223,
'satisfaction': '100%',
'title': '上海迪士尼乐园+苏杭+西塘+乌镇双飞6日跟团游<玩转上海迪士尼乐园 夜宿西塘 赠酒吧畅饮 送乌镇东栅 全程高档酒店>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p52034c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '53',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 2893.0,
'sales': 249,
'satisfaction': '100%',
'title': '苏州+杭州+上海+乌镇双飞5日跟团游<升级版 航班任选 无购物 全程国际品牌酒店 西栅内精品客栈 赠宋城门票 精选餐厅>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p32972c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '19',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 2613.0,
'sales': 223,
'satisfaction': '100%',
'title': '上海迪士尼乐园+苏沪杭+西塘+乌镇双高6日跟团游<玩转上海迪士尼乐园 夜宿西塘 赠酒吧畅饮 送乌镇东栅 全程高档酒店>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j1p55050c0.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '115',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 3853.0,
'sales': 390,
'satisfaction': '99%',
'title': '上海迪士尼乐园+华东五市+拈花湾+乌镇+拙政园双飞7日跟团游<玩转上海迪士尼乐园 航班任选 无购物 全程国际品牌酒店 '
'西栅内精品客栈 赠宋城门票>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p67676c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '332',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 2393.0,
'sales': 1130,
'satisfaction': '98%',
'title': '苏州+杭州+上海+乌镇双飞4日跟团游<航班任选 无购物 2晚高档酒店 1晚乌镇客栈 赠宋城门票 宽松行程>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p35668c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '40',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 2192.0,
'sales': 152,
'satisfaction': '100%',
'title': '苏沪杭+西塘+乌镇双飞4日跟团游<航班自选 夜宿西塘 赠酒吧畅饮 全程高档酒店 精华三西行程 精选用餐>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p50628c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '332',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 2289.0,
'sales': 1130,
'satisfaction': '98%',
'title': '苏州+杭州+上海+乌镇双飞5日跟团游<航班任选 3晚高档酒店 1晚乌镇客栈 赠宋城门票 行程宽松无购物>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p35741c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '2',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 2389.0,
'sales': 20,
'satisfaction': '100%',
'title': '华东五市+乌镇+南浔+灵山大佛双飞6日跟团游<航班自选 升级南浔水乡花园名都酒店 夜宿水乡 赠温泉 乌镇半天自由活动 大报恩寺>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p62038c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '53',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 3507.0,
'sales': 249,
'satisfaction': '100%',
'title': '上海迪士尼乐园+杭州+苏州+上海+乌镇双飞5日跟团游<可升级狮子王 航班任选 无购物 国际一线品牌酒店 1晚西栅内精品客栈 '
'赠宋城门票>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p71530c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '53',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 3768.0,
'sales': 249,
'satisfaction': '100%',
'title': '上海迪士尼乐园+杭州+苏州+上海+乌镇双飞6日跟团游<可升级《狮子王》 畅游上海迪士尼乐园 航班任选 无购物 国际品牌酒店 '
'1晚西栅内精品客栈 赠宋城门票>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p71540c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '70',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 2049.0,
'sales': 236,
'satisfaction': '99%',
'title': '苏沪杭+乌镇+西塘双飞5日跟团游<航班自选 夜宿西塘 赠酒吧畅饮 送乌镇 全程高档酒店 精华三西行程 精选用餐>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p50480c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '171',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 2899.0,
'sales': 546,
'satisfaction': '98%',
'title': '华东五市+拈花湾+乌镇+拙政园双飞6日跟团游<航班任选 无购物 国际品牌酒店 西栅内精品客栈 赠宋城门票>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p24507c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '115',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 2361.0,
'sales': 390,
'satisfaction': '99%',
'title': '华东五市+拈花湾+乌镇+拙政园双高5日跟团游<满两人减300 车次自选 无购物 国际品牌酒店 西栅内精品客栈 赠宋城门票>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j4p24525c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:53 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '115',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:53',
'price': 3435.0,
'sales': 390,
'satisfaction': '99%',
'title': '上海迪士尼乐园+华东五市+拈花湾+乌镇+拙政园双飞6日跟团游<玩转上海迪士尼乐园 航班任选 南进上出 无购物 全程国际品牌酒店 '
'西栅内精品客栈 赠宋城门票>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p67667c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Crawled (200) <GET http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2> (referer: http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list)
[2016-06-28 02:43:54 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:16.0) Gecko/16.0 Firefox/16.0
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:54',
'price': 3324.0,
'sales': 3,
'satisfaction': '0%',
'title': '上海迪士尼乐园+杭州+苏州+上海+乌镇双高5日跟团游<可升级《狮子王》 车次任选 无购物 国际一线品牌酒店 1晚西栅内精品客栈 '
'赠宋城门票>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j4p76568c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '41',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:54',
'price': 1989.0,
'sales': 152,
'satisfaction': '100%',
'title': '苏沪杭+乌镇+西塘双高5日跟团游<夜宿西塘 酒吧畅饮 赠乌镇景区 全程高档酒店 精华三西行程 精选用餐>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j1p51474c0.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '11',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:54',
'price': 1650.0,
'sales': 50,
'satisfaction': '100%',
'title': '华东五市双飞6日跟团游<航班任选 夜宿水乡 升级两晚品牌酒店>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p44589c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '65',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:54',
'price': 3408.0,
'sales': 228,
'satisfaction': '100%',
'title': '上海迪士尼乐园+华东5市+乌镇双飞6日跟团游<航班自选 畅游迪士尼 禅意小镇 灵山祈福 4晚国际酒店 1晚西栅内>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p70385c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:54',
'price': 2640.0,
'sales': 15,
'satisfaction': '0%',
'title': '上海迪士尼乐园+乌镇+杭州双飞4日半自助游 <畅游上海迪士尼 高档酒店 一晚住乌镇 赠宋城 包船游西湖>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j1p72465c0.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '17',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:54',
'price': 2785.0,
'sales': 223,
'satisfaction': '100%',
'title': '上海迪士尼乐园+苏杭+西塘+乌镇5日双飞跟团游<玩转上海迪士尼乐园 夜宿西塘 赠酒吧畅饮 送乌镇东栅 全程高档酒店>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p65177c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '37',
'function': '自由行',
'insert_time': '2016-06-28 14:43:54',
'price': 2357.0,
'sales': 487,
'satisfaction': '100%',
'title': '上海迪士尼乐园双飞3日自由行<游上海迪士尼乐园 住2晚夏洛特国际酒店 航班可选>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t3j3p50350c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '37',
'function': '自由行',
'insert_time': '2016-06-28 14:43:54',
'price': 2673.0,
'sales': 487,
'satisfaction': '100%',
'title': '上海迪士尼乐园双飞4日自由行<游上海迪士尼乐园 住3晚夏洛特国际酒店 航班可选 酒店含早>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t3j3p52036c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '41',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:54',
'price': 1871.0,
'sales': 152,
'satisfaction': '100%',
'title': '苏沪杭+西塘+乌镇双高5日跟团游<车次任选 夜宿西塘 赠酒吧畅饮 赠乌镇 全程高档酒店 精华三西景点 精选用餐>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j4p74150c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '43',
'function': '自由行',
'insert_time': '2016-06-28 14:43:54',
'price': 2026.0,
'sales': 169,
'satisfaction': '100%',
'title': '上海双飞4日自由行<航班任选 外滩中南海滨酒店 交通便利 高性价比 文艺小资 >',
'type': '国内游',
'url': 'http://gny.ly.com/line/t3j3p21418c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '23',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:54',
'price': 2594.0,
'sales': 81,
'satisfaction': '100%',
'title': '华东五市+三园林+三水乡双飞6日跟团游<航班任选 0自费0购物 升级一晚高档酒店>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p34915c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '43',
'function': '自由行',
'insert_time': '2016-06-28 14:43:54',
'price': 1668.0,
'sales': 169,
'satisfaction': '100%',
'title': '上海双飞3日自由行<航班任选 外滩中南海滨酒店 交通便利 高性价比 文艺小资 >',
'type': '国内游',
'url': 'http://gny.ly.com/line/t3j3p36106c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '65',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:54',
'price': 2339.0,
'sales': 228,
'satisfaction': '100%',
'title': '华东五市+拈花湾+乌镇双飞5日跟团游<航班任选 下单立减100元/人 3晚国际品牌酒店 1晚西栅内精品客栈 禅意小镇 灵山祈福 >',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p48766c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '37',
'function': '自由行',
'insert_time': '2016-06-28 14:43:54',
'price': 2075.0,
'sales': 487,
'satisfaction': '100%',
'title': '上海迪士尼乐园双飞4日自由行<游上海迪士尼乐园 住3晚侨园我家公寓酒店 地铁旁 航班可选>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t3j3p54945c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '自由行',
'insert_time': '2016-06-28 14:43:54',
'price': 2473.0,
'sales': 16,
'satisfaction': '0%',
'title': '上海迪士尼乐园+野生动物园双飞4日自由行<游上海迪士尼乐园 上海野生动物园 住3晚浦东高档酒店 浦东机场免费接送>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t3j3p75191c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '2',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:54',
'price': 2161.0,
'sales': 20,
'satisfaction': '100%',
'title': '华东五市+乌镇+南浔+灵山大佛双高6日跟团游<车次自选 升级南浔水乡花园名都酒店 夜宿水乡 赠温泉 乌镇半天自由活动 大报恩寺>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j4p62340c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '81',
'function': '自由行',
'insert_time': '2016-06-28 14:43:54',
'price': 1950.0,
'sales': 264,
'satisfaction': '100%',
'title': '上海双飞5日自由行<航班可选 靠近地铁站 夜游外滩 文艺小资 >',
'type': '国内游',
'url': 'http://gny.ly.com/line/t3j3p30782c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '65',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:54',
'price': 2943.0,
'sales': 228,
'satisfaction': '100%',
'title': '华东五市+拈花湾+乌镇双飞6日跟团游<航班任选 下单立减200元/人 禅意小镇 灵山祈福 4晚国际酒店 1晚西栅内精品客栈 >',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p52191c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '1',
'function': '自由行',
'insert_time': '2016-06-28 14:43:54',
'price': 2956.0,
'sales': 11,
'satisfaction': '100%',
'title': '上海迪士尼乐园双高4日自由行<车次自选 3晚夏洛特酒店住宿 靠近上海迪士尼乐园 含两日入园门票>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t3j4p69794c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:54 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=2>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '自由行',
'insert_time': '2016-06-28 14:43:54',
'price': 3600.0,
'sales': 11,
'satisfaction': '0%',
'title': '上海迪士尼乐园+乌镇双飞5日自由行<3晚夏洛特酒店标间住宿 上海迪士尼乐园两日联票 一晚乌镇西栅内特色客栈>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t3j3p76575c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Crawled (200) <GET http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17> (referer: http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list)
[2016-06-28 02:43:56 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.55.3 (KHTML, like Gecko) Version/5.1.3 Safari/534.53.10
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:56',
'price': 1636.0,
'sales': 0,
'satisfaction': '0%',
'title': '华东五市+拈花湾+乌镇+南浔+周庄双高5日跟团游<车次任选, 升级一晚南浔花园名都大酒店 一晚溧阳特色花园酒店>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j4p52683c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:56',
'price': 2239.0,
'sales': 0,
'satisfaction': '0%',
'title': '华东五市+南浔+迪士尼小镇双飞5日跟团游<全程高档酒店 赠送一晚温泉酒店 率先体验迪士尼小镇>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p61961c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:56',
'price': 2126.0,
'sales': 0,
'satisfaction': '0%',
'title': '华东五市+南浔+迪士尼小镇火车5日跟团游<全程高档酒店 赠送一晚温泉酒店 率先体验迪士尼小镇>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j4p61964c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:56',
'price': 2709.0,
'sales': 0,
'satisfaction': '0%',
'title': '上海迪士尼乐园+田子坊+南京路双高3日跟团游<半自助休闲3日游 上海迪士尼乐园嗨玩1天 2晚舒适型酒店住宿>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j1p72653c0.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '自由行',
'insert_time': '2016-06-28 14:43:56',
'price': 1810.0,
'sales': 0,
'satisfaction': '0%',
'title': '上海双飞4日自由行<早对晚航班 行程充实 1号线中山北路出站即达 3晚豪双住宿 双份自助早餐>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t3j1p73006c0.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '自由行',
'insert_time': '2016-06-28 14:43:56',
'price': 1598.0,
'sales': 0,
'satisfaction': '0%',
'title': '上海+乌镇双飞4日自由行<早对晚航班 行程充实 外滩附近酒店 乌镇西栅外住宿>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t3j1p73598c0.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '自由行',
'insert_time': '2016-06-28 14:43:56',
'price': 2959.0,
'sales': 0,
'satisfaction': '0%',
'title': '上海迪士尼乐园+乌镇双飞4日自由行<米老鼠遇上水乡 成人下单立减200 乐园附近舒适酒店住宿 乌镇内特色客栈住宿>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t3j1p75015c0.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:56',
'price': 2480.0,
'sales': 0,
'satisfaction': '0%',
'title': '华东五市+扬州瘦西湖+周庄+乌镇+虎丘+留园+西湖乌镇内双高6日跟团游<车次任选 1晚住乌镇内 游虎丘留园>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j4p56782c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:56',
'price': 2350.0,
'sales': 0,
'satisfaction': '0%',
'title': '华东五市+扬州瘦西湖+周庄+乌镇+虎丘+留园+西湖乌镇外双火6日跟团游<车次任选 夜宿两晚水乡古镇>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j4p56776c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:56',
'price': 2499.0,
'sales': 0,
'satisfaction': '0%',
'title': '杭州+上海+水乡乌镇+宋城乐园+迪士尼乐园+巧克力乐园双卧6日跟团游<北京独立成团 全程无购物 免费升级正餐杭州正宗御茶宴 品尝餐前茶 '
'赠送宋城主题公园>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j1p64949c0.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:56',
'price': 1851.0,
'sales': 0,
'satisfaction': '0%',
'title': '华东5市+乌镇+鼋头渚+宋城主题公园双飞5日跟团游< 航班任选 升1晚高档 2晚舒适型酒店 1晚夜宿乌镇近景区民居 赠送宋城大门票>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p43969c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:56',
'price': 1906.0,
'sales': 0,
'satisfaction': '0%',
'title': '华东5市+乌镇+鼋头渚+宋城主题公园双高5日跟团游< 升1晚高档 2晚舒适型酒店 1晚夜宿乌镇近景区民居 赠送宋城大门票>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j4p43970c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:56',
'price': 1796.0,
'sales': 3,
'satisfaction': '0%',
'title': '华东五市+灵山大佛+乌镇双高5日跟团游<火车车次任选 乐悠西栅 祈福灵山 国际酒店 0购物0烦恼>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j4p48646c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:56',
'price': 2850.0,
'sales': 0,
'satisfaction': '0%',
'title': '上海迪士尼乐园+杭州+凯帝猫乐园+乌镇火车5日跟团游< 火车车次自选 畅玩迪士尼 探秘百年名校浙江大学 一晚西栅内>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j4p62921c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:56',
'price': 2484.0,
'sales': 0,
'satisfaction': '0%',
'title': '上海迪士尼乐园+苏沪杭+周庄+乌镇+西塘双飞5日跟团游<航班任选 梦幻迪士尼 玩转三水乡 全程高档酒店 夜宿古西塘>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p77276c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:56',
'price': 2371.0,
'sales': 0,
'satisfaction': '0%',
'title': '上海迪士尼乐园+苏沪杭+周庄+乌镇+西塘双高5日跟团游<火车车次自选 梦幻迪士尼 情迷三水乡 高档酒店 夜宿古西塘>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j4p77283c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:56',
'price': 2321.0,
'sales': 0,
'satisfaction': '0%',
'title': '华东5市+乌镇+周庄双高6日跟团游<航班任选 夜宿乌镇景区内精品客栈 周庄景区内特色民宿 赠送宋城大门票>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j4p70745c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:56',
'price': 11200.0,
'sales': 0,
'satisfaction': '0%',
'title': '团体订制 迪士尼<团体订制 迪士尼>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j1p64137c0.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '1',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:56',
'price': 1848.0,
'sales': 10,
'satisfaction': '100%',
'title': '华东三市+黄山+千岛湖+水乡乌镇+西湖双飞6日跟团游<航班时间任选 千岛湖核心景区>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p56795c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:56 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=17>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': '1',
'function': '跟团游',
'insert_time': '2016-06-28 14:43:56',
'price': 2523.0,
'sales': 2,
'satisfaction': '100%',
'title': '华东五市+黄山+千岛湖+甪直+周庄+乌镇东珊+藕园+灵山胜境双飞8日跟团游<航班时间任选 夜宿一晚水乡古镇>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p56807c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:57 PM][15884:140168511158080][DEBUG] Crawled (200) <GET http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=16> (referer: http://gny.ly.com/list?prop=0&src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&label=buttom&action=list)
[2016-06-28 02:43:57 PM][15884:140168511158080][INFO] Current UserAgent: Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:16.0) Gecko/16.0 Firefox/16.0
[2016-06-28 02:43:57 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=16>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:57',
'price': 2991.0,
'sales': 0,
'satisfaction': '0%',
'title': '上海+杭州+苏州+乌镇+上海迪士尼乐园双高4日跟团游<车次任选 畅游上海迪士尼乐园 摇橹船慢游西湖 享特色餐>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j4p64948c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:57 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=16>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:57',
'price': 2555.0,
'sales': 0,
'satisfaction': '0%',
'title': '华东三市+黄山+千岛湖+水乡乌镇+西湖双高6日跟团游<车次任选 贴心升级 一顿杭州特色餐 龙井御茶宴>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j4p67309c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:57 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=16>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '自由行',
'insert_time': '2016-06-28 14:43:57',
'price': 1765.0,
'sales': 0,
'satisfaction': '0%',
'title': '上海双飞4日自由行<航班自选 高档酒店 靠近地铁站 行摄魔都 行政大床房>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t3j3p68328c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:57 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=16>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:57',
'price': 2849.0,
'sales': 0,
'satisfaction': '0%',
'title': '上海迪士尼乐园+苏沪杭双飞6日跟团游<航班时间任选 乌镇七宝 周庄三大古镇 夜宿水乡周庄 骑游西湖>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p75929c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:57 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=16>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '自由行',
'insert_time': '2016-06-28 14:43:57',
'price': 1787.0,
'sales': 0,
'satisfaction': '0%',
'title': '上海迪士尼乐园双飞3日自由行<航班自选 2晚谷微(浦东机场迪士尼店)含乐园门票 酒店提供浦东往返接送机服务>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t3j3p78242c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:57 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=16>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,
'function': '跟团游',
'insert_time': '2016-06-28 14:43:57',
'price': 4018.0,
'sales': 0,
'satisfaction': '0%',
'title': '华东3市上海+无锡+安吉+杭州双飞5日跟团游<航班任选 0购物0自费 上海迪士尼乐园 安吉HEllo Kitty乐园 灵山拈花湾>',
'type': '国内游',
'url': 'http://gny.ly.com/line/t1j3p64854c53.html',
'wrapper_name': 'ly-gny-spider'}
[2016-06-28 02:43:57 PM][15884:140168511158080][DEBUG] Scraped from <200 http://gny.ly.com/list/GetNextPageData?src=%E5%8C%97%E4%BA%AC&dest=%E4%B8%8A%E6%B5%B7&prop=0&start=16>
{'arrive': '上海',
'crawl_date': datetime.date(2016, 6, 28),
'departure': '北京',
'evaluation': None,