-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlabelled_tweets_test.json
More file actions
6734 lines (6734 loc) · 240 KB
/
labelled_tweets_test.json
File metadata and controls
6734 lines (6734 loc) · 240 KB
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
{
"591975888494854145": {
"classes": [
0
],
"hashtags": [],
"parsed_tweet": "haryana govt airlift 20,000 food packets tomorrow nepal hry prabhuchawla newindianxpress",
"retweet_count": 12,
"tweet_text": "Haryana govt to airlift 20,000 food packets tomorrow to Nepal#Hry @Prabhuchawla @Newindianxpress",
"urls": [],
"users": [
"PrabhuChawla",
"NewIndianXpress"
]
},
"591976580232052736": {
"classes": [
0,
2,
4
],
"hashtags": [
"earthquake",
"Nepal",
"Kathmandu"
],
"parsed_tweet": "amount supplies may used 7 days mobile hospital equipped even perform surgery earthquake nepal kathmandu",
"retweet_count": 0,
"tweet_text": "Amount of supplies may be used for more than 7 days. Mobile Hospital is equipped to even perform a surgery. #earthquake #Nepal #Kathmandu",
"urls": [],
"users": []
},
"591977124778545152": {
"classes": [
5
],
"hashtags": [
"NepalEarthquake",
"India",
"NDRF"
],
"parsed_tweet": "nepalearthquake india hands 39 ndrf team 2 dogs 3 tonnes equipment nepal army rescue operations indian embassy nepal",
"retweet_count": 6,
"tweet_text": "#NepalEarthquake | #India hands 39 #NDRF team, 2 dogs and 3 tonnes equipment to Nepal Army for rescue operations: Indian Embassy in #Nepal",
"urls": [],
"users": [
"FocusNewsIndia"
]
},
"591979747296485376": {
"classes": [
2
],
"hashtags": [
"Nepal",
"earthquake"
],
"parsed_tweet": "msf_ind sending medical non medical staff nepal aid affected earthquake assess medical needs",
"retweet_count": 26,
"tweet_text": "@MSF_Ind is sending medical and non medical staff to #Nepal to aid those affected by the #earthquake and to assess medical needs",
"urls": [],
"users": [
"MSF_Press",
"MSF_Ind"
]
},
"591984141773639680": {
"classes": [
0
],
"hashtags": [],
"parsed_tweet": "sushmaswaraj colleague piyushgoyal offered send engineers equipment restore power grids nepal",
"retweet_count": 2,
"tweet_text": "RT @SushmaSwaraj : My colleague @PiyushGoyal has offered to send engineers and equipment to restore the power grids in Nepal.",
"urls": [],
"users": [
"AnjaniShahi",
"SushmaSwaraj",
"PiyushGoyal"
]
},
"591990204983971840": {
"classes": [
0
],
"hashtags": [
"IndianAirForce",
"NepalEarthquake"
],
"parsed_tweet": "indianairforce army already helping relief food medicines calls 2 nepal subsided nepalearthquake",
"retweet_count": 3,
"tweet_text": "\"#IndianAirForce/Army already helping wid relief,food,medicines, & all calls 2 Nepal subsided #NepalEarthquake http://t.co/lyeO88RY60\"",
"urls": [],
"users": [
"PuttsSINGH"
]
},
"591991005248782336": {
"classes": [
0,
5
],
"hashtags": [],
"parsed_tweet": "swift relief material reach call nepal vl b charged local call 250 indians airlifted fr khatmandu medical team way govt works",
"retweet_count": 0,
"tweet_text": "Swift relief material reach,Call to Nepal Vl b charged as local call.250 Indians airlifted fr Khatmandu.Medical Team on d way.Govt tht works",
"urls": [],
"users": []
},
"591991020142792704": {
"classes": [
2
],
"hashtags": [
"NepalEarthquake",
"NepalQuake",
"PrayForNepal"
],
"parsed_tweet": "contact youth blood need blood nepal nepalearthquake nepalquake prayfornepal",
"retweet_count": 3,
"tweet_text": "Contact Youth for Blood if in need of blood in Nepal #NepalEarthquake #NepalQuake #PrayForNepal http://t.co/WHs7HcrhyG",
"urls": [],
"users": [
"joanna_udo"
]
},
"591991666526957568": {
"classes": [
0
],
"hashtags": [],
"parsed_tweet": "constant touch govts bihar w bengal control need panic 10 ndrf teams mobilised nepal 7 standby",
"retweet_count": 61,
"tweet_text": "Constant touch wid Govts. of UP Bihar n W.Bengal. Under control. No need for panic. 10 NDRF teams being mobilised for Nepal and 7 on standby",
"urls": [],
"users": [
"ndmaindia"
]
},
"591993859736870912": {
"classes": [
0
],
"hashtags": [],
"parsed_tweet": "indian railway send one lakh water bottle nepal reach today night bsnl mtnl take national charges ind 2 nep",
"retweet_count": 0,
"tweet_text": "Indian railway send one lakh of water bottle to Nepal it will reach today night. Bsnl and mtnl take only national charges from ind 2 nep",
"urls": [],
"users": []
},
"591994540166250497": {
"classes": [
0,
5
],
"hashtags": [],
"parsed_tweet": "39 ndrf team india 2 dogs 3 tonnes equipment handed nepal army rescue ops indian embassy ktm nepalearthquake",
"retweet_count": 5,
"tweet_text": "39 NDRF team from India, 2 dogs, 3 tonnes equipment handed over to Nepal Army for rescue ops | Indian Embassy in KTM #NepalEarthquake",
"urls": [],
"users": [
"TheQuint"
]
},
"591996367784026113": {
"classes": [
1
],
"hashtags": [
"ashamedtobehuman"
],
"parsed_tweet": "huffingtonpost donations pour people nepal sleep outdoors water blankets ashamedtobehuman",
"retweet_count": 0,
"tweet_text": "@HuffingtonPost donations pour in for this while people in Nepal sleep outdoors with no water or blankets #ashamedtobehuman",
"urls": [],
"users": [
"HuffingtonPost"
]
},
"591999588766228482": {
"classes": [
0,
5
],
"hashtags": [],
"parsed_tweet": "exclusive news haryana government send food package blankets nepal 12301485 published",
"retweet_count": 0,
"tweet_text": "Exclusive News (Haryana government will send food package and blankets in nepal 12301485) has been published on... http://t.co/WLDx06duOa",
"urls": [
"http://fb.me/7xubEBw9c"
],
"users": []
},
"592004392091406336": {
"classes": [
0,
2
],
"hashtags": [],
"parsed_tweet": "gauravcsawant iaf see 130 hercules stand team doctors ndrf jcbs food water medicines put together send nepal",
"retweet_count": 0,
"tweet_text": "\"@gauravcsawant: IAF C-130 Hercules on stand by. Team of doctors, NDRF, JCBs, food, water, medicines being put together to send to Nepal.\"",
"urls": [],
"users": [
"gauravcsawant"
]
},
"592005225709461505": {
"classes": [
0
],
"hashtags": [
"IndiawithNepal"
],
"parsed_tweet": "first iaf aircraft leaves hindon airbase relief equipment nepal indiawithnepal",
"retweet_count": 0,
"tweet_text": "First IAF Aircraft leaves Hindon Airbase with relief equipment for Nepal.\n#IndiawithNepal",
"urls": [],
"users": []
},
"592008765039247360": {
"classes": [
0
],
"hashtags": [
"IndiaWithNepal"
],
"parsed_tweet": "indian railways sends 4 lakh litres water air india operating flights nepal free cost indiawithnepal",
"retweet_count": 0,
"tweet_text": "Indian railways sends 4 lakh litres of water and Air India operating flights to Nepal free of cost. \n#IndiaWithNepal",
"urls": [],
"users": []
},
"592010581550333952": {
"classes": [
2
],
"hashtags": [
"SewaBharati",
"Earthquake"
],
"parsed_tweet": "sewabharati varanasi sending relief material medical help info awaited earthquake",
"retweet_count": 6,
"tweet_text": "#SewaBharati Varanasi will be sending 'Relief Material' & Medical Help. More Info awaited ... #Earthquake",
"urls": [],
"users": [
"AnupamkPandey"
]
},
"592014627862523904": {
"classes": [
3
],
"hashtags": [],
"parsed_tweet": "survivor dug rubble nepal earthquake 1400 killed many trapped medical supplies requested",
"retweet_count": 1,
"tweet_text": "A Survivor Being Dug Out of Rubble in Nepal Earthquake. Over 1400 killed. Many Trapped. Medical Supplies Requested. http://t.co/hyBnIdHBQG",
"urls": [],
"users": [
"DavidFullards"
]
},
"592022312226050049": {
"classes": [
2
],
"hashtags": [
"EarthQuake",
"Nepal"
],
"parsed_tweet": "please earthquake nepal paropkar ambulance service 977 4260859",
"retweet_count": 0,
"tweet_text": "Please RT #EarthQuake #Nepal\n Paropkar Ambulance service: +977\n4260859",
"urls": [],
"users": []
},
"592022407885496320": {
"classes": [
2
],
"hashtags": [
"EarthQuake",
"Nepal"
],
"parsed_tweet": "lalitpur red cross ambulance service 977 5545666 please earthquake nepal",
"retweet_count": 0,
"tweet_text": "Lalitpur Red Cross ambulance\nservice: +977 5545666 Please RT #EarthQuake #Nepal",
"urls": [],
"users": []
},
"592024096059305984": {
"classes": [
1
],
"hashtags": [],
"parsed_tweet": "everybody sheltering open sky kathmandu tonight poor access food water latrine",
"retweet_count": 3,
"tweet_text": "Everybody is sheltering on open sky in Kathmandu tonight, having very poor access to food, water and latrine.",
"urls": [],
"users": [
"anantal"
]
},
"592024270705860608": {
"classes": [
0
],
"hashtags": [
"NepalEarthquake",
"Nepal"
],
"parsed_tweet": "anyone trapped need rescue call 977 9851281363 police help share many possible nepalearthquake nepal kathmandu",
"retweet_count": 9,
"tweet_text": "Anyone trapped? Need rescue?\nCall +977-9851281363... Police help...\nShare it to as many as possible.. #NepalEarthquake #Nepal #Kathmandu",
"urls": [],
"users": [
"Lacoul"
]
},
"592026322865500160": {
"classes": [
2
],
"hashtags": [],
"parsed_tweet": "bangladesh sending medical team nepal",
"retweet_count": 2,
"tweet_text": "Bangladesh is sending a medical team to Nepal",
"urls": [],
"users": [
"ShahRukh_no1Fan"
]
},
"592027572952834048": {
"classes": [
2
],
"hashtags": [
"Nepal",
"Earthquake"
],
"parsed_tweet": "redcross ambulance service 4228094 nepal earthquake",
"retweet_count": 0,
"tweet_text": "Redcross Ambulance Service 4228094 #Nepal #Earthquake",
"urls": [],
"users": []
},
"592033253781037056": {
"classes": [
2,
5
],
"hashtags": [
"SriLanka",
"Nepal",
"NepalEarthquake",
"NepalQuake"
],
"parsed_tweet": "srilanka air force fly doctors paramedics medicines equipment nepal nepalearthquake nepalquake",
"retweet_count": 13,
"tweet_text": "#SriLanka Air Force to fly doctors, paramedics, medicines, equipment to #Nepal #NepalEarthquake #NepalQuake http://t.co/DFxVAKmQrX",
"urls": [],
"users": [
"srilankaglobal"
]
},
"592045569591234560": {
"classes": [
0,
2,
4
],
"hashtags": [
"Nepal"
],
"parsed_tweet": "share blood requirements kathmandu contact mr adhikari 00977 9862005225 nepal",
"retweet_count": 3,
"tweet_text": "Do share this For blood\nrequirements in Kathmandu Contact Mr.\nAdhikari 00977-9862005225 #Nepal",
"urls": [],
"users": [
"BabusanM"
]
},
"592048683866173440": {
"classes": [
0
],
"hashtags": [
"Nepal"
],
"parsed_tweet": "narendramodi took stock situation within hours roped best medical food military aid nepal nepalearthquakerelief",
"retweet_count": 3,
"tweet_text": ". @narendramodi took stock of the situation within hours and roped in best of medical, food and military aid. #Nepal #NepalEarthquakeRelief",
"urls": [],
"users": [
"Sonu_Bhaskar",
"narendramodi"
]
},
"592049216568066049": {
"classes": [
0
],
"hashtags": [],
"parsed_tweet": "earlier today relief materials equipment earthquake assistance loaded aircraft bound",
"retweet_count": 0,
"tweet_text": "Earlier today: relief materials and equipment for earthquake assistance being loaded on aircraft bound for... http://t.co/ZvUeRNLcDk",
"urls": [
"http://fb.me/7daZOlVvP"
],
"users": []
},
"592049438908092416": {
"classes": [
3
],
"hashtags": [
"Nepalese",
"Qatar",
"Nepal"
],
"parsed_tweet": "calling nepalese community qatar urge families nepal donate blood type mostly needed nepalearthquake qatar",
"retweet_count": 8,
"tweet_text": "Calling #Nepalese community in #Qatar to urge their families in #Nepal to donate blood, O+ type is mostly needed.\n#NepalEarthquake \n#Qatar",
"urls": [],
"users": [
"QRCS"
]
},
"592049561398480896": {
"classes": [
0
],
"hashtags": [],
"parsed_tweet": "india sends rail neer water quake-hit nepal india sends rail neer water quake-hit",
"retweet_count": 0,
"tweet_text": "India Sends 'Rail Neer' Water to Quake-Hit Nepal: India Sends 'Rail Neer' Water to Quake-Hit http://t.co/9cS1ICuvh7",
"urls": [
"http://goo.gl/fb/5VV1ZD"
],
"users": []
},
"592052776701571072": {
"classes": [
5
],
"hashtags": [],
"parsed_tweet": "pmoindia narendramodi orders immediate dispatch relief medical teams nepal directs evacuation indian tourists indiawithnepal",
"retweet_count": 124,
"tweet_text": ".@PMOIndia @narendramodi orders immediate dispatch of relief,medical teams to Nepal, directs evacuation of Indian tourists\n#IndiaWithNepal",
"urls": [],
"users": [
"iSupportNamo",
"PMOIndia",
"narendramodi"
]
},
"592059620799057920": {
"classes": [
0
],
"hashtags": [
"Nepal"
],
"parsed_tweet": "2 iaf planes rescuers aid water landed nepal thank india dear rest world please generous nepalearthquake",
"retweet_count": 17,
"tweet_text": "2 IAF planes with rescuers, aid & water have landed in #Nepal. Thank you India. Dear rest of the world - please be generous #NepalEarthquake",
"urls": [],
"users": [
"KC_Prasanna"
]
},
"592070285676847104": {
"classes": [
5
],
"hashtags": [
"NepalEarthquake"
],
"parsed_tweet": "please support oxfam start delivering aid affected nepalearthquake",
"retweet_count": 5,
"tweet_text": "Please support @Oxfam as they start delivering aid to those affected by the #NepalEarthquake https://t.co/rMLGgCqTqt",
"urls": [
"https://oxfamindia.org/Nepal-earthquake-emergency-response"
],
"users": [
"Oxfam"
]
},
"592071141965045763": {
"classes": [
0
],
"hashtags": [],
"parsed_tweet": "india sends rail neer water quake-hit nepal indian railways produces packaged drinking w",
"retweet_count": 0,
"tweet_text": "India Sends 'Rail Neer' Water to Quake-Hit Nepal - The Indian Railways, which produces its own packaged drinking w... http://t.co/flX7nHvsr2",
"urls": [
"http://ow.ly/2XRG7Q"
],
"users": []
},
"592097046309441537": {
"classes": [
0,
2
],
"hashtags": [],
"parsed_tweet": "turkey sending 80 person search rescue medical team nepal",
"retweet_count": 0,
"tweet_text": "Turkey, is sending 80-person Search, Rescue & Medical Team to Nepal.",
"urls": [],
"users": []
},
"592137179234631680": {
"classes": [
0
],
"hashtags": [],
"parsed_tweet": "team technical experts flying uk supplies provide clean water sanitation emergency food supplies nepal",
"retweet_count": 20,
"tweet_text": "A team of technical experts is flying from the UK with supplies to provide clean water, sanitation and emergency food supplies. #Nepal",
"urls": [],
"users": [
"OxfamAustralia"
]
},
"592139574266044416": {
"classes": [
1,
6
],
"hashtags": [
"help",
"nepal",
"NepalQuake",
"earthquake"
],
"parsed_tweet": "electricity shelter communication food help nepal nepalquake earthquake",
"retweet_count": 0,
"tweet_text": "no electricity, no shelter, no communication, no food #help #nepal #NepalQuake #earthquake",
"urls": [],
"users": []
},
"592142806304436224": {
"classes": [
1
],
"hashtags": [],
"parsed_tweet": "anubhashukla7 visit nepal need medical store",
"retweet_count": 0,
"tweet_text": "@AnubhaShukla7 you should visit nepal they need medical store",
"urls": [],
"users": [
"AnubhaShukla7"
]
},
"592148963110703105": {
"classes": [
1
],
"hashtags": [
"Nepal"
],
"parsed_tweet": "nepal plunges despair kathmandu classic case urban disaster temporary shelter big need",
"retweet_count": 1,
"tweet_text": "#Nepal plunges in despair. Kathmandu a classic case of urban disaster. Temporary shelter is a big need.",
"urls": [],
"users": []
},
"592162027881140225": {
"classes": [
0
],
"hashtags": [],
"parsed_tweet": "india sends 4 aircrafts nepal today including 3 tonnes supplies mobile hospital ndrf teams",
"retweet_count": 83,
"tweet_text": "India sends 4 aircrafts to Nepal today including 3 tonnes of supplies, mobile hospital, NDRF teams",
"urls": [],
"users": [
"suhasinih"
]
},
"592174366344884224": {
"classes": [
1,
4
],
"hashtags": [
"Nepal"
],
"parsed_tweet": "anirmukerji krittivasm 50 percentage houses nepal damaged commodities supply low 5,000 tents need fr patients damaged hospitals",
"retweet_count": 2,
"tweet_text": "RT @anirmukerji: RT @Krittivasm: 50% of houses in #Nepal damaged, commodities supply low, 5,000 tents need fr patients at damaged hospitals.",
"urls": [],
"users": [
"aloksinha2001",
"anirmukerji",
"Krittivasm"
]
},
"592176679214133248": {
"classes": [
1
],
"hashtags": [
"Kathmandu",
"earthquakerelief",
"nepal"
],
"parsed_tweet": "blood crisis kathmandu massive earthquakerelief nepal",
"retweet_count": 2,
"tweet_text": "blood crisis here in #Kathmandu after the massive #earthquakerelief in #nepal",
"urls": [],
"users": [
"rajsh_regmi"
]
},
"592176946642980864": {
"classes": [
2
],
"hashtags": [
"NepalQuake",
"Nepal"
],
"parsed_tweet": "free medicine free delivery prasit kandel 9851133822 shailesh sharma 9851017553 nepalquake nepal",
"retweet_count": 2,
"tweet_text": "Free medicine Free delivery.\nPrasit kandel - 9851133822\nShailesh Sharma - 9851017553\n#NepalQuake #Nepal",
"urls": [],
"users": [
"TheSharad96"
]
},
"592181615658291200": {
"classes": [
3
],
"hashtags": [],
"parsed_tweet": "narendramodi modi g send doctor nepal nepal people needd us",
"retweet_count": 0,
"tweet_text": "@narendramodi \nmodi g \ncan you send some doctor for nepal \nnepal people needd to us",
"urls": [],
"users": [
"narendramodi"
]
},
"592187621213806592": {
"classes": [
1
],
"hashtags": [],
"parsed_tweet": "meacontrolroom sushmaswaraj indians stranded nepal's sundhara relief camp need help without food water please check television news",
"retweet_count": 0,
"tweet_text": "@MEAcontrolroom @SushmaSwaraj Indians stranded in Nepal's Sundhara relief camp need help. Without food or water. Please check TV news.",
"urls": [],
"users": [
"MEAcontrolroom",
"SushmaSwaraj"
]
},
"592190504470589440": {
"classes": [
0,
5
],
"hashtags": [
"solar",
"Nepal"
],
"parsed_tweet": "mubasherlucman mubasher distributing quality solar lights people nepal fund lights",
"retweet_count": 0,
"tweet_text": "@mubasherlucman Mubasher, we are distributing quality #solar lights to people in #Nepal Fund lights via http://t.co/F0e9fveEGx",
"urls": [
"http://empowergeneration.org/donate"
],
"users": [
"mubasherlucman"
]
},
"592191451674476544": {
"classes": [
2,
5
],
"hashtags": [],
"parsed_tweet": "nepal earthquake china sends search rescue teams six sniffer dogs relevant rescue medical e",
"retweet_count": 0,
"tweet_text": "Nepal earthquake: China sends search and rescue teams: With six sniffer dogs and relevant rescue and medical e... http://t.co/kSNp3m8iIP",
"urls": [
"http://bit.ly/1df9zpM"
],
"users": []
},
"592193754393489408": {
"classes": [
2,
5
],
"hashtags": [
"NepalEarthquake",
"Nepal"
],
"parsed_tweet": "nepalearthquake rssorg send 2000 volunteers medical team nepal",
"retweet_count": 0,
"tweet_text": "#NepalEarthquake @RSSorg send 2000 volunteers with Medical team to #Nepal ... http://t.co/LYRgRd0J7o",
"urls": [],
"users": [
"RSSorg"
]
},
"592196353381388289": {
"classes": [
0
],
"hashtags": [
"Nepal",
"IAF"
],
"parsed_tweet": "drinking water plus emergency relief supplies headed nepal iaf aircraft ap photo",
"retweet_count": 0,
"tweet_text": "Drinking water plus emergency relief supplies headed to #Nepal by #IAF aircraft \nAP Photo http://t.co/YNukplqNhT",
"urls": [],
"users": []
},
"592197561575833600": {
"classes": [
1
],
"hashtags": [
"water",
"earthquake"
],
"parsed_tweet": "least people get water drink food immediately earthquake",
"retweet_count": 0,
"tweet_text": "At least, people should get #water to drink if not food immediately ! #earthquake",
"urls": [],
"users": []
},
"592199197446770689": {
"classes": [
0
],
"hashtags": [],
"parsed_tweet": "international aid groups rush reach nepal earthquake victims ifcr said extremely concerned abou",
"retweet_count": 0,
"tweet_text": "International aid groups rush to reach Nepal earthquake victims: The IFCR said it was extremely concerned abou... http://t.co/FLFjCkuBVy",
"urls": [
"http://bit.ly/1E7rxmZ"
],
"users": []
},
"592203258401173504": {
"classes": [
0,
2,
4
],
"hashtags": [],
"parsed_tweet": "emergency operating room operational nepal medical college reserved pregnant severely needed ones",
"retweet_count": 4,
"tweet_text": "Emergency Operating Room operational in Nepal Medical College. being reserved for pregnant and severely needed ones.",
"urls": [],
"users": [
"nishchaldhakal"
]
},
"592209596183285762": {
"classes": [
1,
3
],
"hashtags": [
"Nepalearthquake",
"earthquake"
],
"parsed_tweet": "people desperate food medicine shelter nepalearthquake least 1,900 people dead earthquake",
"retweet_count": 1,
"tweet_text": "People desperate for food, medicine, shelter from #Nepalearthquake. At least 1,900 people are dead. #earthquake",
"urls": [],
"users": []
},
"592211354515156992": {
"classes": [
3
],
"hashtags": [],
"parsed_tweet": "sadly doctor nurse help nepal",
"retweet_count": 0,
"tweet_text": "Sadly, not a doctor or a nurse to help out the Nepal.",
"urls": [],
"users": []
},
"592211486795137024": {
"classes": [
3
],
"hashtags": [
"Reconstruction"
],
"parsed_tweet": "vikramchandra operation maitri can't give birth already dead 2000 nepal needing medical aid injured reconstruction",
"retweet_count": 0,
"tweet_text": "@vikramchandra Operation Maitri can't give birth to already dead 2000!\nNepal will be needing Medical aid to injured. #Reconstruction.",
"urls": [],
"users": [
"vikramchandra"
]
},
"592211633142796288": {
"classes": [
0,
2,
5
],
"hashtags": [
"Nepal",
"earthquake"
],
"parsed_tweet": "male seeking female india sending medical non-medical staff nepal aid affected earthquake assess medical needs",
"retweet_count": 88,
"tweet_text": ".@MSF India is sending medical and non-medical staff to #Nepal to aid those affected by the #earthquake and to assess medical needs.",
"urls": [],
"users": [
"MSF_Ind",
"MSF"
]
},
"592213511796752384": {
"classes": [
1
],
"hashtags": [
"earthquake"
],
"parsed_tweet": "area need mask earthquake",
"retweet_count": 0,
"tweet_text": "My area need mask #earthquake",
"urls": [],
"users": []
},
"592214348455514112": {
"classes": [
2,
5
],
"hashtags": [
"Nepal",
"earthquake"
],
"parsed_tweet": "currently sending 4 medical non-medical teams nepal aid affected earthquake",
"retweet_count": 6,
"tweet_text": "We are currently sending 4 medical and non-medical teams to #Nepal to aid those affected by the #earthquake.",
"urls": [],
"users": [
"MSF_Ind"
]
},
"592215865992568832": {
"classes": [
0
],
"hashtags": [
"NepalEarthquake"
],
"parsed_tweet": "timesofindia nepalearthquake shiromani gurdwara parbandhak committee sgpc send food relief material nepal",
"retweet_count": 0,
"tweet_text": "RT timesofindia: #NepalEarthquake Shiromani Gurdwara Parbandhak Committee (SGPC) to send food, relief material to Nepal. ",
"urls": [],
"users": []
},
"592217703563177984": {
"classes": [
3
],
"hashtags": [],
"parsed_tweet": "brethren nepal need massive humanitarian need schools colleges universities must conduct blood donation camps priority",
"retweet_count": 0,
"tweet_text": "Our brethren in Nepal need massive humanitarian need. All schools, colleges and universities must conduct blood donation camps on priority.",
"urls": [],
"users": []
},
"592220994326040576": {
"classes": [
0
],
"hashtags": [],
"parsed_tweet": "actindia narendramodi pmoindia sgpc already sending daily food nepal salute sikh serve humanity religious",
"retweet_count": 2,
"tweet_text": "@actindia @narendramodi @PMOIndia SGPC already sending daily food to Nepal.Salute to Sikh to Serve Humanity.Above religious",
"urls": [],
"users": [
"SikhGenocide84",
"actindia",
"narendramodi",
"PMOIndia"
]
},
"592224438575190016": {
"classes": [
2
],
"hashtags": [
"earthquake"
],
"parsed_tweet": "spoke cmo asked everyone medical treatment free cost injured earthquake screenshot ahluwalia siliguri",
"retweet_count": 0,
"tweet_text": "Spoke to CMO, asked them to everyone that medical treatment will be free of cost for injured in #earthquake: SS Ahluwalia, Siliguri",
"urls": [],
"users": []
},
"592224514198540288": {
"classes": [
2
],
"hashtags": [
"BREAKING",
"earthquake"
],
"parsed_tweet": "breaking bangladesh govt declared stand beside nepal rescue team medical supports earthquake",
"retweet_count": 98,
"tweet_text": "#BREAKING: Bangladesh govt declared to stand beside Nepal with rescue team, medical and other supports. #earthquake http://t.co/sU7HW99Uqs",
"urls": [],
"users": [
"ImranHSarker"
]
},
"592230594920058880": {
"classes": [
5
],
"hashtags": [],
"parsed_tweet": "4, see 130 air-crafts facilities 30 bed hospital dispatched nepal pakistan today",
"retweet_count": 6,
"tweet_text": "4, C-130 air-crafts with the facilities of a 30 bed hospital, will be dispatched to Nepal by Pakistan, today.",
"urls": [],
"users": [
"YusraSAskari"
]
},
"592233496615071745": {
"classes": [
0
],
"hashtags": [],
"parsed_tweet": "25000 food packets daily send nepal one covered news",
"retweet_count": 0,
"tweet_text": "25000 Food packets daily being send to Nepal But no one covered the news.",
"urls": [],
"users": []
},
"592236359823151104": {
"classes": [
3
],
"hashtags": [
"NepalQuake",
"hmrd"
],
"parsed_tweet": "mt kanakmanidixit blood donations needed call dr manita 98510 84500, nepal red cross blood bank nepalquake hmrd ac",
"retweet_count": 2,
"tweet_text": "MT @KanakManiDixit Blood donations needed. Call Dr. Manita at 98510-84500, Nepal Red Cross Blood Bank. #NepalQuake #hmrd via ^ac",
"urls": [],
"users": [
"HumanityRoad",
"KanakManiDixit"
]
},
"592238754825273345": {
"classes": [
2
],
"hashtags": [],
"parsed_tweet": "hrishikeshtwitt team doctors volunteers way nepal we'll get touch need assistance 2 2",
"retweet_count": 0,
"tweet_text": "@hrishikeshtwitt A team of doctors and volunteers is on its way to Nepal. We'll get in touch with you should we need more assistance (2/2)",
"urls": [],
"users": [
"hrishikeshtwitt"
]
},
"592239782618636288": {
"classes": [
2
],
"hashtags": [],
"parsed_tweet": "south african medical search rescue personnel prepare go nepal",
"retweet_count": 8,
"tweet_text": "South African medical, search and rescue personnel prepare to go to Nepal\nhttp://t.co/xKL6ofCFGg http://t.co/UyyoIfBxVl",
"urls": [
"http://thenewage.co.za/157403-1007-53-South_African_medical_search_and_rescue_personnel_prepare_to_go_to_Nepal"
],
"users": [
"The_New_Age"
]
},
"592239896103780352": {
"classes": [
2
],
"hashtags": [
"Pak",