This repository has been archived by the owner on May 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatic_data.py
3034 lines (3006 loc) · 79.3 KB
/
static_data.py
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
data_feiai = {
"recommend": [
{
"url":"http://m.cnkang.com/dise/121/666532.html",
"title":"肺癌晚期的三大可能症状",
"from":"cnkang",
"article_id":1,
},
{
"url":"http://m.cnkang.com/dise/121/48775.html",
"title":"预防肺癌的方式是哪些呢",
"from":"cnkang",
"article_id":2,
},
{
"url":"http://m.liangyihui.net/doc/46332",
"title":"新一代ALK抑制剂Brigatinib,一线数据将亮相2018WCLC",
"from":"肿瘤资讯",
"article_id":3,
},
{
"url":"http://m.cnkang.com/dise/121/666305.html",
"title":"专家讲述肺癌的两个大症状",
"from":"cnkang",
"article_id":4,
},
{
"url":"http://m.cnkang.com/dise/121/49708.html",
"title":"治疗肺癌的中药方",
"from":"cnkang",
"article_id":5,
},
{
"url":"http://m.cnkang.com/dise/121/666027.html",
"title":"你知道肺癌患者的临床表现吗",
"from":"cnkang",
"article_id":6,
},
{
"url":"http://m.cnkang.com/dise/121/667732.html",
"title":"肺癌的治疗方法都是哪些",
"from":"cnkang",
"article_id":7,
},
{
"url":"http://m.cnkang.com/dise/121/667647.html",
"title":"肺癌的治疗方法全解析",
"from":"cnkang",
"article_id":8,
},
{
"url":"http://m.cnkang.com/dise/121/50241.html",
"title":"肺癌的高发人群都是哪些人",
"from":"cnkang",
"article_id":9,
},
{
"url":"http://m.cnkang.com/dise/121/50440.html",
"title":"肺癌有哪些早期症状",
"from":"cnkang",
"article_id":10,
},
{
"url":"http://m.cnkang.com/dise/121/667318.html",
"title":"肺癌患者要做哪些诊断事项",
"from":"cnkang",
"article_id":11,
},
{
"url":"http://m.cnkang.com/dise/121/668795.html",
"title":"肺癌诊断要注意哪些事项",
"from":"cnkang",
"article_id":12,
},
{
"url":"http://m.cnkang.com/dise/121/48875.html",
"title":"肺癌有哪些好的治疗方法",
"from":"cnkang",
"article_id":13,
},
{
"url":"http://m.cnkang.com/dise/121/49079.html",
"title":"肺癌患者需要进行的主要护理",
"from":"cnkang",
"article_id":14,
},
{
"url":"http://m.cnkang.com/dise/121/461646.html",
"title":"陪伴患肺癌的亲人走完人生最后的历程",
"from":"cnkang",
"article_id":15,
},
{
"url":"http://m.cnkang.com/dise/121/48621.html",
"title":"女性朋友如何预防肺癌的发生",
"from":"cnkang",
"article_id":16,
},
{
"url":"http://m.cnkang.com/dise/121/49186.html",
"title":"肺癌晚期脑转移的症状有哪些?",
"from":"cnkang",
"article_id":17,
},
{
"url":"http://m.cnkang.com/dise/121/49651.html",
"title":"肺癌发病后会有哪些特点?",
"from":"cnkang",
"article_id":18,
},
{
"url":"http://m.cnkang.com/dise/121/461442.html",
"title":"老年早期肺癌无法手术或拒绝手术者应首选根治性放射治疗",
"from":"cnkang",
"article_id":19,
},
{
"url":"http://m.cnkang.com/dise/121/667391.html",
"title":"肺癌病人常会出现哪些并发症?",
"from":"cnkang",
"article_id":20,
},
{
"url":"http://m.cnkang.com/dise/121/461297.html",
"title":"肺癌有何症状?",
"from":"cnkang",
"article_id":21,
},
{
"url":"http://m.cnkang.com/dise/121/666141.html",
"title":"可怕的肺癌就是这样发生的",
"from":"cnkang",
"article_id":22,
},
{
"url":"http://m.cnkang.com/dise/121/668133.html",
"title":"预防肺癌如何从饮食开始",
"from":"cnkang",
"article_id":23,
},
{
"url":"http://m.cnkang.com/dise/121/50508.html",
"title":"肺癌术后怎么治疗好",
"from":"cnkang",
"article_id":24,
},
{
"url":"http://m.cnkang.com/dise/121/49234.html",
"title":"肺癌患者放疗期间要注意哪些饮食",
"from":"cnkang",
"article_id":25,
},
{
"url":"http://m.cnkang.com/dise/121/461621.html",
"title":"肺癌患者及家属最关心的问题",
"from":"cnkang",
"article_id":26,
},
{
"url":"http://m.cnkang.com/dise/121/666843.html",
"title":"肺癌的有效预防方法",
"from":"cnkang",
"article_id":27,
},
{
"url":"http://m.cnkang.com/dise/121/668184.html",
"title":"肺癌病人吃什么有利与康复呢",
"from":"cnkang",
"article_id":28,
},
{
"url":"http://m.cnkang.com/dise/121/668398.html",
"title":"肺癌患者常见的体征有哪些",
"from":"cnkang",
"article_id":29,
},
{
"url":"http://m.cnkang.com/dise/121/50210.html",
"title":"引起肺癌的原因有什么呢",
"from":"cnkang",
"article_id":30,
},
{
"url":"http://m.cnkang.com/dise/121/667922.html",
"title":"肺鳞癌晚期转移了该如何治疗",
"from":"cnkang",
"article_id":31,
},
{
"url":"http://m.cnkang.com/dise/121/666779.html",
"title":"避免肺癌远离二手烟很重要",
"from":"cnkang",
"article_id":32,
},
{
"url":"http://m.cnkang.com/dise/121/668693.html",
"title":"患有肺癌的病因有哪些",
"from":"cnkang",
"article_id":33,
},
{
"url":"http://m.cnkang.com/dise/121/666304.html",
"title":"抽烟能引起肺癌发生的原因",
"from":"cnkang",
"article_id":34,
},
{
"url":"http://m.cnkang.com/dise/121/49761.html",
"title":"肺癌疗养期间有哪些护理措施?",
"from":"cnkang",
"article_id":35,
},
{
"url":"http://m.cnkang.com/dise/121/50268.html",
"title":"肺癌的饮食调理原则",
"from":"cnkang",
"article_id":36,
},
{
"url":"http://m.cnkang.com/dise/121/48892.html",
"title":"哪些原因会导致肺癌",
"from":"cnkang",
"article_id":37,
},
{
"url":"http://m.cnkang.com/dise/121/667339.html",
"title":"关于肺癌诊断的方法你了解多少呢",
"from":"cnkang",
"article_id":38,
},
{
"url":"http://m.cnkang.com/dise/121/666018.html",
"title":"肺癌给人们带来哪些危害",
"from":"cnkang",
"article_id":39,
},
{
"url":"http://m.liangyihui.net/doc/22035",
"title":"【JCO】程颖教授:吉非替尼联合培美曲塞治疗肺癌的JMIT研究",
"from":"肿瘤资讯",
"article_id":40,
},
{
"url":"http://m.cnkang.com/dise/121/668338.html",
"title":"肺癌患者的早期常见症状",
"from":"cnkang",
"article_id":41,
},
{
"url":"http://m.cnkang.com/dise/121/50909.html",
"title":"预防肺癌有效的方法有哪些",
"from":"cnkang",
"article_id":42,
},
{
"url":"http://m.cnkang.com/dise/121/666588.html",
"title":"肺癌痰中带血的处理方式",
"from":"cnkang",
"article_id":43,
},
{
"url":"http://m.cnkang.com/dise/121/49395.html",
"title":"肺癌的常见预防方法和注意点介绍",
"from":"cnkang",
"article_id":44,
},
{
"url":"http://m.liangyihui.net/doc/4924",
"title":"贝伐珠单抗在NSCLC中的跨线治疗",
"from":"肿瘤资讯",
"article_id":45,
},
{
"url":"http://m.cnkang.com/dise/121/667367.html",
"title":"专家指出患肺癌的症状特点",
"from":"cnkang",
"article_id":46,
},
{
"url":"http://m.cnkang.com/dise/121/49837.html",
"title":"肺癌晚期患者的食疗偏方 ",
"from":"cnkang",
"article_id":47,
},
{
"url":"http://m.cnkang.com/dise/121/48978.html",
"title":"肺癌的危害有哪些呢",
"from":"cnkang",
"article_id":48,
},
{
"url":"http://m.cnkang.com/dise/121/665993.html",
"title":"肺癌可以并发哪些疾病呢?",
"from":"cnkang",
"article_id":49,
},
{
"url":"http://m.cnkang.com/dise/121/339511.html",
"title":"注意肺癌的警告信号 ――写在国际肺癌关注月",
"from":"cnkang",
"article_id":50,
},
{
"url":"http://m.cnkang.com/dise/121/665934.html",
"title":"肺癌常见的检查方法和吸烟的危害?",
"from":"cnkang",
"article_id":51,
},
{
"url":"http://m.cnkang.com/dise/121/50454.html",
"title":"肺癌的保健方法是什么",
"from":"cnkang",
"article_id":52,
},
{
"url":"http://m.cnkang.com/dise/121/668750.html",
"title":"哪些饮食会引发肺癌呢",
"from":"cnkang",
"article_id":53,
},
{
"url":"http://m.cnkang.com/dise/121/50138.html",
"title":"早期肺癌容易被误诊的原因都有哪些",
"from":"cnkang",
"article_id":54,
},
{
"url":"http://m.cnkang.com/dise/121/668456.html",
"title":"肺部肿瘤早期症状应引起我们注意",
"from":"cnkang",
"article_id":55,
},
{
"url":"http://m.cnkang.com/dise/121/461559.html",
"title":"肺癌应该怎么防",
"from":"cnkang",
"article_id":56,
},
{
"url":"http://m.cnkang.com/dise/121/48692.html",
"title":"肺癌的常见症状有哪些?",
"from":"cnkang",
"article_id":57,
},
{
"url":"http://m.cnkang.com/dise/121/668683.html",
"title":"小心:吸烟容易有肺癌",
"from":"cnkang",
"article_id":58,
},
{
"url":"http://m.cnkang.com/dise/121/668112.html",
"title":"肺癌晚期病人最好吃什么",
"from":"cnkang",
"article_id":59,
},
{
"url":"http://m.cnkang.com/dise/121/50249.html",
"title":"用科学正确的护理方式控制肺癌的发病",
"from":"cnkang",
"article_id":60,
},
{
"url":"http://m.cnkang.com/dise/121/667280.html",
"title":"肺癌发生早期会有很多症状",
"from":"cnkang",
"article_id":61,
},
{
"url":"http://m.cnkang.com/dise/121/668651.html",
"title":"日常生活中肺癌的发病原因是什么",
"from":"cnkang",
"article_id":62,
},
{
"url":"http://m.cnkang.com/dise/121/665890.html",
"title":"肺癌治疗期间要注意什么?",
"from":"cnkang",
"article_id":63,
},
{
"url":"http://m.cnkang.com/dise/121/49178.html",
"title":"支气管肺癌护理从哪里做起",
"from":"cnkang",
"article_id":64,
},
{
"url":"http://m.cnkang.com/dise/121/666382.html",
"title":"预防肺癌灰霾天少出门",
"from":"cnkang",
"article_id":65,
},
{
"url":"http://m.cnkang.com/dise/121/49973.html",
"title":"肺癌止咳靠饮食",
"from":"cnkang",
"article_id":66,
},
{
"url":"http://m.cnkang.com/dise/121/668282.html",
"title":"肺癌患者吃什么好呢",
"from":"cnkang",
"article_id":67,
},
{
"url":"http://m.cnkang.com/dise/121/50342.html",
"title":"肺癌患者需要注意哪些饮食问题",
"from":"cnkang",
"article_id":68,
},
{
"url":"http://m.cnkang.com/dise/121/461500.html",
"title":"非小细胞肺癌知识系列讲座(四)",
"from":"cnkang",
"article_id":69,
},
{
"url":"http://m.cnkang.com/dise/121/48600.html",
"title":"肺癌的治疗",
"from":"cnkang",
"article_id":70,
},
{
"url":"http://m.cnkang.com/dise/121/668204.html",
"title":"肺癌的治疗方法分三大类",
"from":"cnkang",
"article_id":71,
},
{
"url":"http://m.cnkang.com/dise/121/667599.html",
"title":"肺癌患者应该做术前准备工作",
"from":"cnkang",
"article_id":72,
},
{
"url":"http://m.cnkang.com/dise/121/461296.html",
"title":"肺癌的肺外症状是什么",
"from":"cnkang",
"article_id":73,
},
{
"url":"http://m.cnkang.com/dise/121/49339.html",
"title":"导致肺癌的原因有哪些?",
"from":"cnkang",
"article_id":74,
},
{
"url":"http://m.cnkang.com/dise/121/668522.html",
"title":"肺癌的临床表现形式",
"from":"cnkang",
"article_id":75,
},
{
"url":"http://m.cnkang.com/dise/121/667883.html",
"title":"中医专家解说肺癌治疗",
"from":"cnkang",
"article_id":76,
},
{
"url":"http://m.cnkang.com/dise/121/49901.html",
"title":"如何预防肺癌疾病的产生?",
"from":"cnkang",
"article_id":77,
},
{
"url":"http://m.cnkang.com/dise/121/667267.html",
"title":"肺癌治愈的最佳时期",
"from":"cnkang",
"article_id":78,
},
{
"url":"http://m.cnkang.com/dise/121/667534.html",
"title":"肺癌患者的治疗都是有哪些方法?",
"from":"cnkang",
"article_id":79,
},
{
"url":"http://m.cnkang.com/dise/121/666062.html",
"title":"肺癌的病因到底如何产生的",
"from":"cnkang",
"article_id":80,
},
{
"url":"http://m.cnkang.com/dise/121/49502.html",
"title":"哪些因素会引起肺癌呢?",
"from":"cnkang",
"article_id":81,
},
{
"url":"http://m.liangyihui.net/doc/52152",
"title":"精诊联盟——呼吸科四城联动高峰论坛南阳站",
"from":"肿瘤资讯",
"article_id":82,
},
{
"url":"http://m.cnkang.com/dise/121/668679.html",
"title":"肺癌到底是怎样发生的?",
"from":"cnkang",
"article_id":83,
},
{
"url":"http://m.cnkang.com/dise/121/666528.html",
"title":"肺癌的治疗误区有哪些?",
"from":"cnkang",
"article_id":84,
},
]
}
###########################################################################################################################################################
data_ruxianai = {
"recommend": [
{
"url":"https://m.cnkang.com/dise/273/102325.html",
"title":"你知道三大乳腺癌的晚期症状吗?",
"from":"cnkang",
"article_id":1,
},
{
"url":"https://m.cnkang.com/dise/273/101698.html",
"title":"得了乳腺癌的食疗方法都有哪些呢",
"from":"cnkang",
"article_id":2,
},
{
"url":"https://m.cnkang.com/dise/273/102160.html",
"title":"预防乳腺癌应该怎么做呢",
"from":"cnkang",
"article_id":3,
},
{
"url":"https://m.cnkang.com/dise/273/103171.html",
"title":"适度焦虑可延长乳腺癌患者寿命",
"from":"cnkang",
"article_id":4,
},
{
"url":"https://m.cnkang.com/dise/273/103169.html",
"title":"多吃什么可以预防乳腺癌?",
"from":"cnkang",
"article_id":5,
},
{
"url":"https://m.cnkang.com/dise/273/100566.html",
"title":"乳腺癌的食疗方法具体有哪些?",
"from":"cnkang",
"article_id":6,
},
{
"url":"https://m.cnkang.com/dise/273/100522.html",
"title":"引起乳腺癌的原因有哪些?",
"from":"cnkang",
"article_id":7,
},
{
"url":"https://m.cnkang.com/dise/273/102390.html",
"title":"乳腺癌的简单介绍",
"from":"cnkang",
"article_id":8,
},
{
"url":"https://doctor.liangyihui.net/#/doc/25329",
"title":"【一文囊括】化疗药物总览——乳腺癌篇(下)",
"from":"良医汇",
"article_id":9,
},
{
"url":"https://doctor.liangyihui.net/#/doc/11462",
"title":"早期乳腺癌辅助化疗:基因检测能指导决策吗?",
"from":"良医汇",
"article_id":10,
},
{
"url":"https://doctor.liangyihui.net/#/doc/33246",
"title":"华东、华北汉族女性的体型与乳腺癌的相关性研究",
"from":"良医汇",
"article_id":11,
},
{
"url":"https://doctor.liangyihui.net/#/doc/35730",
"title":"男性也会得乳腺癌?",
"from":"良医汇",
"article_id":12,
},
{
"url":"https://doctor.liangyihui.net/#/doc/1808",
"title":"全面探讨:乳腺癌是否需要药物预防",
"from":"良医汇",
"article_id":13,
},
{
"url":"https://doctor.liangyihui.net/#/doc/35455",
"title":"什么?女性年轻时的不良饮食习惯可增加乳腺癌风险?",
"from":"良医汇",
"article_id":14,
},
{
"url":"https://doctor.liangyihui.net/#/doc/35315",
"title":"低复发风险乳腺癌术后放疗:全乳放疗好还是部分照射好?",
"from":"良医汇",
"article_id":15,
},
{
"url":"https://doctor.liangyihui.net/#/doc/1758",
"title":"【老年乳腺癌】全球约1/3乳腺癌患者>65岁,治疗循证证据有限",
"from":"良医汇",
"article_id":16,
},
{
"url":"https://doctor.liangyihui.net/#/doc/35097",
"title":"乳腺癌骨转移风险因素分析",
"from":"良医汇",
"article_id":17,
},
{
"url":"https://doctor.liangyihui.net/#/doc/34713",
"title":"癌症疫苗获重大突破!不仅预防还能治疗",
"from":"良医汇",
"article_id":18,
},
{
"url":"https://m.jianke.com/nrzl/1484697.html",
"title":"乳腺切除可防乳腺癌吗? 如何预防乳腺癌",
"from":"健客网",
"article_id":19,
},
{
"url":"https://m.jianke.com/nrzl/4887053.html",
"title":"走进乳腺癌,认识乳腺癌,战胜乳腺癌!",
"from":"健客网",
"article_id":20,
},
{
"url":"https://m.jianke.com/nrzl/1942960.html",
"title":"乳腺癌更青睐哪种人?",
"from":"健客网",
"article_id":21,
},
{
"url":"https://m.jianke.com/nrzl/1929195.html",
"title":"乳腺癌应该怎么治?",
"from":"健客网",
"article_id":22,
},
{
"url":"https://m.jianke.com/nrzl/1892593.html",
"title":"预防乳腺癌要少吃红肉",
"from":"健客网",
"article_id":23,
},
{
"url":"https://m.jianke.com/nrzl/1889448.html",
"title":"预防乳腺癌的食物",
"from":"健客网",
"article_id":24,
},
{
"url":"https://m.jianke.com/nrzl/1811403.html",
"title":"乳腺癌有哪些症状",
"from":"健客网",
"article_id":25,
},
{
"url":"https://m.jianke.com/nrzl/1751907.html",
"title":"乳腺癌需要化疗吗?",
"from":"健客网",
"article_id":26,
},
{
"url":"https://m.jianke.com/nrzl/1701256.html",
"title":"乳腺癌术后化疗",
"from":"健客网",
"article_id":27,
},
{
"url":"https://m.jianke.com/nrzl/1572193.html",
"title":"乳腺癌术后的护理",
"from":"健客网",
"article_id":28,
},
{
"url":"http://www.cnkang.com/dise/273/103021.html",
"title":"预防乳腺癌常运动常锻炼五个妙方狙击乳癌",
"from":"cnkang",
"article_id":829,
},
{
"url":"http://www.liangyihui.net/doc/22070",
"title":"王晓稼教授:乳腺癌内分泌治疗的地位",
"from":"良医汇",
"article_id":830,
},
{
"url":"http://www.cnkang.com/dise/273/103159.html",
"title":"乳腺癌和女性戴文胸的时间有关",
"from":"cnkang",
"article_id":831,
},
{
"url":"http://www.cnkang.com/dise/273/100835.html",
"title":"乳腺癌的预防以及疾病诊断方法",
"from":"cnkang",
"article_id":832,
},
{
"url":"http://www.cnkang.com/dise/273/512603.html",
"title":"三阴性乳腺癌严重么?――认识与治疗建议",
"from":"cnkang",
"article_id":833,
},
{
"url":"http://www.cnkang.com/dise/273/102824.html",
"title":"诊断乳腺癌的方法有哪些",
"from":"cnkang",
"article_id":834,
},
{
"url":"http://www.cnkang.com/dise/273/101252.html",
"title":"患上乳腺癌要如何自我检查",
"from":"cnkang",
"article_id":835,
},
{
"url":"http://www.cnkang.com/dise/273/101970.html",
"title":"哪些检查能够检测出乳腺癌?",
"from":"cnkang",
"article_id":836,
},
{
"url":"http://www.cnkang.com/dise/273/513008.html",
"title":"关于乳腺癌的误解和事实",
"from":"cnkang",
"article_id":837,
},
{
"url":"http://www.cnkang.com/dise/273/101369.html",
"title":"乳腺癌患者的早期症状",
"from":"cnkang",
"article_id":838,
},
{
"url":"http://www.cnkang.com/dise/273/100510.html",
"title":"在饮食方面如何预防乳腺癌",
"from":"cnkang",
"article_id":839,
},
{
"url":"http://www.cnkang.com/dise/273/291204.html",
"title":"妊娠哺乳期乳腺癌该如何处理",
"from":"cnkang",
"article_id":840,
},
{
"url":"http://www.cnkang.com/dise/273/100607.html",
"title":"乳腺癌治疗的方法是什么",
"from":"cnkang",
"article_id":841,
},
{
"url":"http://www.cnkang.com/dise/273/100642.html",
"title":"乳腺癌患者最容易出现哪些患病因素",
"from":"cnkang",
"article_id":842,
},
{
"url":"http://www.cnkang.com/dise/273/100960.html",
"title":"乳腺癌治疗期的护理措施有哪些?",
"from":"cnkang",
"article_id":843,
},
{
"url":"http://www.liangyihui.net/doc/2526",
"title":"Nature乳腺癌特刊(3):「钼靶筛查」放眼未来",
"from":"良医汇",
"article_id":844,
},
{
"url":"http://www.cnkang.com/dise/273/101230.html",
"title":"患上乳腺癌的原因有哪些?",
"from":"cnkang",
"article_id":845,
},
{
"url":"http://www.cnkang.com/dise/273/102747.html",
"title":"乳腺癌在饮食上面应注意什么",
"from":"cnkang",
"article_id":846,
},
{
"url":"http://www.cnkang.com/dise/273/512860.html",
"title":"乳腔镜治疗乳腺癌,哪些淋巴结要清扫?",
"from":"cnkang",
"article_id":847,
},
{
"url":"http://www.liangyihui.net/doc/2184",
"title":"2015ECC——晚期乳腺癌治疗新进展",
"from":"良医汇",
"article_id":848,
},
{
"url":"http://www.cnkang.com/dise/273/101966.html",
"title":"吃什么食物可以预防乳腺癌发生",
"from":"cnkang",
"article_id":849,
},
{
"url":"http://www.cnkang.com/dise/273/512945.html",
"title":"一滴血、一口唾液预防乳腺癌",
"from":"cnkang",
"article_id":850,
},
{
"url":"http://www.cnkang.com/dise/273/101158.html",
"title":"预防乳腺癌的食物有哪些",
"from":"cnkang",
"article_id":851,
},
{
"url":"http://www.cnkang.com/dise/273/100533.html",
"title":"如何判断自己是否患者乳腺癌?",
"from":"cnkang",
"article_id":852,
},
{
"url":"http://www.cnkang.com/dise/273/100593.html",
"title":"治疗乳腺癌需重视中药调理",
"from":"cnkang",
"article_id":853,
},
{
"url":"http://www.liangyihui.net/doc/2708",
"title":"[SABCS热点]液相标本循环肿瘤DNA检测:机遇与挑战并存——访斯坦福大学Maximilian Diehn教授",
"from":"良医汇",
"article_id":854,
},
{
"url":"http://www.cnkang.com/dise/273/100455.html",
"title":"导致乳腺癌的发病原因",
"from":"cnkang",
"article_id":855,
},
{
"url":"http://www.cnkang.com/dise/273/102589.html",
"title":"乳腺癌的诊断鉴别",
"from":"cnkang",
"article_id":856,
},
{
"url":"http://www.cnkang.com/dise/273/100886.html",
"title":"导致乳腺癌出现的原因有哪些呢",
"from":"cnkang",
"article_id":857,
},
{
"url":"http://www.liangyihui.net/doc/1866",
"title":"朱莉切乳腺又切卵巢 ,就能躲过癌魔?",
"from":"良医汇",
"article_id":858,
},
{
"url":"http://www.cnkang.com/dise/273/102571.html",
"title":"预防乳腺癌的几大方法",
"from":"cnkang",
"article_id":859,
},
{
"url":"http://www.cnkang.com/dise/273/290970.html",
"title":"乳腺癌带来的三大危害",
"from":"cnkang",
"article_id":860,
},
{
"url":"http://www.cnkang.com/dise/273/102203.html",
"title":"乳腺癌术后护理注意事项",
"from":"cnkang",
"article_id":861,
},
{
"url":"http://www.cnkang.com/dise/273/101102.html",
"title":"采取什么方法治疗乳腺癌呢 ",
"from":"cnkang",
"article_id":862,
},
{
"url":"http://www.liangyihui.net/doc/2261",
"title":"最新版中国抗癌协会乳腺癌诊治指南与规范(2015版)免费下载!",
"from":"良医汇",
"article_id":863,
},
]
}
###########################################################################################################################################################
data_ganai = {
"recommend": [
{
"url":"http://www.cnkang.com/dise/14/10284.html",
"title":"肝癌病人的饮食应该注意什么?",
"from":"cnkang",
"article_id":1,
},
{
"url":"http://www.cnkang.com/dise/14/578620.html",
"title":"肺癌的治疗误区常见的有哪些",
"from":"cnkang",
"article_id":2,
},
{
"url":"http://www.cnkang.com/dise/14/10910.html",
"title":"肝癌患者要做哪些护理",
"from":"cnkang",
"article_id":3,
},
{
"url":"http://www.cnkang.com/dise/14/393059.html",
"title":"索拉菲尼在肝癌患者中的应用",
"from":"cnkang",
"article_id":4,
},
{
"url":"http://www.cnkang.com/dise/14/10659.html",
"title":"电流治疗肝癌真的有效果么",
"from":"cnkang",
"article_id":5,
},
{
"url":"http://www.cnkang.com/dise/14/578999.html",
"title":"专家解答如何有效预防肝癌",
"from":"cnkang",
"article_id":6,
},
{
"url":"http://www.cnkang.com/dise/14/577361.html",
"title":"肝癌患者如何进行有效治疗",
"from":"cnkang",
"article_id":7,
},
{
"url":"http://www.cnkang.com/dise/14/578309.html",
"title":"治疗肝癌应注意的问题",
"from":"cnkang",
"article_id":8,
},
{
"url":"http://www.cnkang.com/dise/14/392916.html",
"title":"诗人远去,我们该铭记什么――谈肝癌预防",
"from":"cnkang",
"article_id":9,
},
{
"url":"http://www.cnkang.com/dise/14/577244.html",
"title":"肝癌疾病患者该做什么检查项目",
"from":"cnkang",
"article_id":10,
},
{
"url":"http://www.cnkang.com/dise/14/11275.html",
"title":"肝癌与其他疾病的鉴别诊断",
"from":"cnkang",
"article_id":11,
},
{
"url":"http://www.cnkang.com/dise/14/10294.html",
"title":"专家讲解中医如何治疗肝癌",
"from":"cnkang",
"article_id":12,
},
{
"url":"http://www.cnkang.com/dise/14/578322.html",
"title":"多吃一些新鲜水果有效预防肝癌",
"from":"cnkang",
"article_id":13,
},
{
"url":"http://www.cnkang.com/dise/14/578384.html",
"title":"肝癌在手术后怎样做运动",
"from":"cnkang",
"article_id":14,
},
{
"url":"http://www.cnkang.com/dise/14/577228.html",
"title":"治疗肝癌有哪些具体治疗方法",
"from":"cnkang",
"article_id":15,
},
{
"url":"http://www.cnkang.com/dise/14/578960.html",
"title":"治疗肝癌用药和手术忌过度",
"from":"cnkang",
"article_id":16,
},
{
"url":"http://www.cnkang.com/dise/14/10156.html",
"title":"肝癌患者的饮食注意",
"from":"cnkang",
"article_id":17,