-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlabelled_tweets.json
22436 lines (22436 loc) · 800 KB
/
labelled_tweets.json
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
{
"591974595525128195": {
"classes": [
0,
5
],
"hashtags": [
"NepalEarthquake",
"NDRF",
"Nepal"
],
"parsed_tweet": "nepalearthquake india sends 39 ndrf team 2 dogs 3 tonnes equipment nepal army rescue operations indian embassy nepal",
"retweet_count": 0,
"tweet_text": "#NepalEarthquake India sends 39 #NDRF team, 2 dogs and 3 tonnes equipment to Nepal Army for rescue operations: Indian Embassy in #Nepal",
"urls": [],
"users": []
},
"591974898139987968": {
"classes": [
0
],
"hashtags": [
"SriLanka",
"earthquake",
"Nepal",
"lka",
"Economynext"
],
"parsed_tweet": "srilanka fly emergency medical help food earthquake struck nepal lka economynext",
"retweet_count": 8,
"tweet_text": "#SriLanka to fly emergency medical help, food to #earthquake -struck #Nepal #lka #Economynext http://t.co/t6F2RXD4tj http://t.co/WMCykXRac0",
"urls": [
"http://www.economynext.com/Sri_Lanka_to_fly_emergency_medical_help,_food_to_earthquake_struck_Nepal-3-1625-13.html#.VTuVs40kI4o.twitter"
],
"users": [
"Economynext"
]
},
"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"
]
},
"591976009823428608": {
"classes": [
3
],
"hashtags": [
"Nepal",
"earthquake",
"RedCross"
],
"parsed_tweet": "want help w nepal earthquake donate redcross blood donations also needed",
"retweet_count": 1,
"tweet_text": "If you want to help w #Nepal #earthquake donate to #RedCross Blood Donations also needed- http://t.co/JRyBbWmFQq",
"urls": [
"http://www.nrcs.org/donate-nrcs"
],
"users": [
"Abbi_Casey"
]
},
"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"
]
},
"591977781749223424": {
"classes": [
2
],
"hashtags": [],
"parsed_tweet": "helpline ambulance police emergency helpline numbers nepal country code 0977 name telephone numbers",
"retweet_count": 0,
"tweet_text": "Helpline:\n\nAmbulance and Police Emergency Helpline numbers in Nepal (country code:0977)\n\nName\n\nTelephone Numbers... http://t.co/XWGu6kq9dF",
"urls": [
"http://fb.me/7cH54Ar8J"
],
"users": []
},
"591978159102435328": {
"classes": [
2
],
"hashtags": [],
"parsed_tweet": "hospital fire brigade blood banks name telephone numbers nepal eye bank 4493684 nepal eye",
"retweet_count": 0,
"tweet_text": " Hospital, Fire Brigade and Blood Banks\n\nName\n\nTelephone Numbers\n\nNepal Eye Bank\n\n4493684\n\nNepal Eye... http://t.co/wx8zMzprOP",
"urls": [
"http://fb.me/6wvNdfyws"
],
"users": []
},
"591978910713139202": {
"classes": [
0,
4,
6
],
"hashtags": [
"Kathmandu",
"Nepal",
"earthquake"
],
"parsed_tweet": "electricity available shankhamul area people staying outside kathmandu nepal earthquake",
"retweet_count": 2,
"tweet_text": "Just electricity is available at Shankhamul area, people are staying outside. #Kathmandu. #Nepal #earthquake",
"urls": [],
"users": []
},
"591979126350741505": {
"classes": [
2,
5
],
"hashtags": [
"NDRF",
"NepalEarthquake"
],
"parsed_tweet": "india sent 2 ndrf team nepal relief work include doctor army sniffer dogs medicine nepalearthquake",
"retweet_count": 0,
"tweet_text": "India has sent 2 #NDRF team to nepal for relief work which include doctor army sniffer dogs and medicine #NepalEarthquake",
"urls": [],
"users": []
},
"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"
]
},
"591983557666414592": {
"classes": [
5
],
"hashtags": [],
"parsed_tweet": "39 ndrf team india 2 dogs 3 tonnes equipment handed nepal army rescue operations indian embassy nepal",
"retweet_count": 29,
"tweet_text": "39 NDRF team from India, 2 dogs and 3 tonnes equipment handed over to Nepal Army for rescue operations: Indian Embassy in Nepal",
"urls": [],
"users": [
"firstpost"
]
},
"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"
]
},
"591985786880327682": {
"classes": [
1
],
"hashtags": [],
"parsed_tweet": "rightwingers religions must keep away nepal survivors need bullshit need food water medicines shelter",
"retweet_count": 13,
"tweet_text": "RightWingers of ALL religions must keep away from Nepal. The survivors, do not need your bullshit. They need,food,water,medicines&shelter",
"urls": [],
"users": [
"karunajohn"
]
},
"591986194893901824": {
"classes": [
2
],
"hashtags": [],
"parsed_tweet": "pm modi orders immediate dispatch relief medical teams nepal directs evacuation indian tourists pti",
"retweet_count": 8,
"tweet_text": "PM Modi orders immediate dispatch of relief and medical teams to Nepal, directs evacuation of Indian tourists | PTI http://t.co/0rYc8FSDk3",
"urls": [],
"users": [
"TheQuint"
]
},
"591986294554632192": {
"classes": [
2
],
"hashtags": [
"India",
"Nepal",
"NepalEarthquake"
],
"parsed_tweet": "india setup field hospital nepal tomorrow morning provide medical facilities nepalearthquake upma23 neelakshigswm drshobha",
"retweet_count": 0,
"tweet_text": "#India to setup Field Hospital in #Nepal by tomorrow morning to provide medical facilities #NepalEarthquake @upma23 @NeelakshiGswm @DrShobha",
"urls": [],
"users": [
"upma23",
"NeelakshiGswm",
"DrShobha"
]
},
"591986490038558722": {
"classes": [
2,
4
],
"hashtags": [],
"parsed_tweet": "peaceful_intent medicare national hospital ambulance 4467067 nepal orthopaedic hospital 4493725",
"retweet_count": 1,
"tweet_text": "@Peaceful_intent \nMedicare National Hospital - Ambulance 4467067\nNepal Orthopaedic Hospital 4493725",
"urls": [],
"users": [
"Peaceful_intent"
]
},
"591986527355338752": {
"classes": [
2
],
"hashtags": [],
"parsed_tweet": "peaceful_intent kathmandu medical college 4476152 nepal medical college teaching hospital jorpati 4486008",
"retweet_count": 0,
"tweet_text": "@Peaceful_intent \nKathmandu Medical College 4476152\nNepal Medical College (Teaching Hospital - Jorpati) 4486008",
"urls": [],
"users": [
"Peaceful_intent"
]
},
"591987020924260354": {
"classes": [
1
],
"hashtags": [
"Nepal"
],
"parsed_tweet": "walked around central old ktm shops bottled water ph recharge cards dry food stock low grid many parts kashishds nepal",
"retweet_count": 0,
"tweet_text": "Walked all arnd central & old KTM.Shops out of bottled water,ph. recharge cards,dry food stock low.Grid off in many parts:@kashishds #Nepal",
"urls": [],
"users": [
"kashishds"
]
},
"591987578498232321": {
"classes": [
0,
4
],
"hashtags": [],
"parsed_tweet": "around 150 tonnes equipment flown kathmandu tonight india launches relief ops quake hit nepal",
"retweet_count": 0,
"tweet_text": "Around 150 tonnes of equipment to be flown to Kathmandu by tonight as India launches relief ops to quake hit Nepal.",
"urls": [],
"users": []
},
"591988336090173440": {
"classes": [
1
],
"hashtags": [],
"parsed_tweet": "food first aid tents would principal needs displaced earthquake temsutulaimsong shaileshkpandey hchaturv",
"retweet_count": 0,
"tweet_text": "Food, First Aid & Tents, would be the principal needs of those displaced by the earthquake. @temsutulaimsong @shaileshkpandey @hchaturv",
"urls": [],
"users": [
"temsutulaimsong",
"shaileshkpandey",
"hchaturv"
]
},
"591989264256106499": {
"classes": [
1
],
"hashtags": [],
"parsed_tweet": "canvassss skyasesh youthforblood search blood donors people injured earthquake help unitenepal",
"retweet_count": 4,
"tweet_text": "@canvassss @skyasesh @YouthForBlood they are in search of blood donors for the people who are injured in earthquake... help them #UniteNepal",
"urls": [],
"users": [
"ankydas0",
"canvassss",
"skyasesh",
"YouthForBlood"
]
},
"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"
]
},
"591991403783159808": {
"classes": [
0,
2,
5
],
"hashtags": [],
"parsed_tweet": "breaking ind army c130 taken nepal foods water ndrf team doctors nurse vaidehisachin sachinkalbag kiranks earthquake",
"retweet_count": 27,
"tweet_text": "Breaking: Ind Army C130 taken off to Nepal with foods, water, NDRF team, Doctors.. Nurse @vaidehisachin @SachinKalbag @KiranKS #earthquake",
"urls": [],
"users": [
"nayanchandra",
"vaidehisachin",
"SachinKalbag"
]
},
"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"
]
},
"591992777736499200": {
"classes": [
0
],
"hashtags": [],
"parsed_tweet": "rescue operations 4 flights sent nepal ready food medicines sniffer dogs flown",
"retweet_count": 9,
"tweet_text": "Rescue operations are on\n4 more flights to be sent to Nepal with ready food & medicines\nSniffer Dogs are flown http://t.co/Pj2m1VHT3e",
"urls": [],
"users": [
"anilkapur_"
]
},
"591992896485597184": {
"classes": [
1
],
"hashtags": [],
"parsed_tweet": "pmoindia 1 lac rail neer bottles nepal needs needs 1 crore liters drinking water",
"retweet_count": 0,
"tweet_text": "@PMOIndia 1 Lac Rail Neer bottles is not what Nepal needs. It needs 1 Crore liters of drinking water.",
"urls": [],
"users": [
"PMOIndia"
]
},
"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"
]
},
"591995052169105408": {
"classes": [
1,
6
],
"hashtags": [],
"parsed_tweet": "adgpi bdutt need resources personnel army restoring power bridges roads substantial presence nepal",
"retweet_count": 0,
"tweet_text": "@adgpi @BDUTT Need more resources and personnel from Army for restoring Power / Bridges / Roads and to have substantial presence in Nepal",
"urls": [],
"users": [
"adgpi",
"BDUTT"
]
},
"591995512171024387": {
"classes": [
2
],
"hashtags": [],
"parsed_tweet": "israeli mother fucking asshole director general israel send humanitarian aid nepal establish field hospital katmandu",
"retweet_count": 56,
"tweet_text": "Israeli MFA director general: Israel will send humanitarian aid to Nepal and will establish a field hospital in Katmandu",
"urls": [],
"users": [
"BarakRavid"
]
},
"591995887360057345": {
"classes": [
5
],
"hashtags": [],
"parsed_tweet": "indian teams land nepal help quake relief india sending disaster-response teams medical aid",
"retweet_count": 0,
"tweet_text": "Indian Teams Land in Nepal to Help With Quake Relief India is sending disaster-response teams, medical aid and... http://t.co/wSdpM9bZEJ",
"urls": [
"http://fb.me/1MttUCd0j"
],
"users": []
},
"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"
]
},
"591996373869826048": {
"classes": [
1
],
"hashtags": [],
"parsed_tweet": "india could surely despatch 3 4 field ambulance units nepal need us",
"retweet_count": 1,
"tweet_text": "India could surely despatch 3-4 Field Ambulance Units to Nepal. They need us now.",
"urls": [],
"users": []
},
"591997966010855424": {
"classes": [
0,
2,
5
],
"hashtags": [
"earthquake",
"Nepal"
],
"parsed_tweet": "male seeking female sending teams 3000 kits non-food items medical kits affected earthquake nepal",
"retweet_count": 54,
"tweet_text": ".@MSF sending teams & 3000 kits of non-food items and medical kits to those affected by the #earthquake in #Nepal",
"urls": [],
"users": [
"MSF",
"MSF"
]
},
"591999286679769090": {
"classes": [
2
],
"hashtags": [],
"parsed_tweet": "kushanmitra big medical team left nepal hospitals set tomorrow maybe preempt fate many",
"retweet_count": 0,
"tweet_text": "@kushanmitra Big medical team has left for Nepal. Should have hospitals set up by tomorrow. Maybe preempt that fate for many",
"urls": [],
"users": [
"kushanmitra"
]
},
"591999421975396352": {
"classes": [
0,
2,
5
],
"hashtags": [],
"parsed_tweet": "pakistan army paf great job short time sending medicine blankets tents 30 bed hospital doctors 2 nepal",
"retweet_count": 23,
"tweet_text": "Pakistan Army/PAF Did Great Job!In very Short Time sending Medicine,Blankets,Tents,30 Bed Hospital & Doctors 2 Nepal! http://t.co/xf8DSYwmFu",
"urls": [],
"users": [
"DrYasirShirazi"
]
},
"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": []
},
"591999611184680961": {
"classes": [
0,
5
],
"hashtags": [],
"parsed_tweet": "haryana government send food package blankets nepal 12301485",
"retweet_count": 0,
"tweet_text": "Haryana government will send food package and blankets in nepal 12301485 http://t.co/hAiN2bMSQ3",
"urls": [
"http://wp.me/p500PW-2Mz"
],
"users": []
},
"592000050017882112": {
"classes": [
5
],
"hashtags": [
"NepalEarthquake",
"earthquake",
"nepal"
],
"parsed_tweet": "25 bed hospital set tonight ndrf operational dawn nepalearthquake earthquake nepal",
"retweet_count": 2,
"tweet_text": "25-bed hospital will be set up by tonight by NDRF and will be operational by dawn. #NepalEarthquake #earthquake #nepal",
"urls": [],
"users": []
},
"592000290921918464": {
"classes": [
0,
2
],
"hashtags": [
"NepalEarthquake"
],
"parsed_tweet": "we're currently sending 4 medical non-medical teams nepal aid affected nepalearthquake",
"retweet_count": 30,
"tweet_text": "We're currently sending 4 medical & non-medical teams to Nepal to aid those affected by the #NepalEarthquake. http://t.co/1XzWh0qv9x",
"urls": [],
"users": [
"MSF_canada"
]
},
"592001500198490112": {
"classes": [
2
],
"hashtags": [
"IAF",
"Nepal"
],
"parsed_tweet": "iaf's 2 rapid aero medical team aerial mobile hospital depart hindon air base kathmandu nepal midnight earthquake",
"retweet_count": 9,
"tweet_text": "#IAF's 2nd \"rapid aero medical team\" (aerial mobile hospital) will depart from Hindon Air Base for Kathmandu, #Nepal at midnight #earthquake",
"urls": [],
"users": [
"JantaKaReporter"
]
},
"592001984951029760": {
"classes": [
0,
5
],
"hashtags": [],
"parsed_tweet": "govt send relief material 21 trucks quake-hit nepal comprising 10 trucks mineral water 10 trucks biscuits 1 truck medicines",
"retweet_count": 0,
"tweet_text": "UP govt to send relief material in 21 trucks to quake-hit Nepal,comprising 10 trucks mineral water,10 trucks biscuits and 1 truck medicines",
"urls": [],
"users": []
},
"592003335454076929": {
"classes": [
0
],
"hashtags": [
"NepalEarthquake"
],
"parsed_tweet": "brilliant gesture planning 1 lac neer water bottles sent nepal ind rail railminindia sureshpprabhu nepalearthquake",
"retweet_count": 1,
"tweet_text": "Brilliant gesture and planning 1lac neer water bottles will be sent to nepal by ind rail @RailMinIndia @sureshpprabhu #NepalEarthquake",
"urls": [],
"users": [
"RailMinIndia",
"sureshpprabhu"
]
},
"592003933238759424": {
"classes": [
0
],
"hashtags": [
"IndiaWithNepal"
],
"parsed_tweet": "sometimes beauracracy political management needs credited 4 lac long time water railways way nepal indiawithnepal",
"retweet_count": 0,
"tweet_text": "Sometimes beauracracy & political management needs to be credited too ! 4 lac Lt of water thru Railways on the way to Nepal #IndiaWithNepal",
"urls": [],
"users": []
},
"592004040961069057": {
"classes": [
0,
5
],
"hashtags": [
"RailNeer",
"IndianRailwayWithNepal",
"IndiaWithNepal"
],
"parsed_tweet": "daily 1 lakh water bottle send nepal india railneer indianrailwaywithnepal indiawithnepal",
"retweet_count": 0,
"tweet_text": "Daily 1 lakh water bottle to be send to Nepal from India. #RailNeer #IndianRailwayWithNepal #IndiaWithNepal",
"urls": [],
"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"
]
},
"592005202816827392": {
"classes": [
0,
2,
5
],
"hashtags": [],
"parsed_tweet": "nepalnews sending 4 medical non-medical teams well 3000 kits non-food items medical kits nepal bihar state",
"retweet_count": 20,
"tweet_text": "@nepalnews we are sending 4 medical and non-medical teams as well as 3000 kits of non-food items and medical kits to Nepal from Bihar State",
"urls": [],
"users": [
"MSF",
"nepalnews"
]
},
"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": []
},
"592006342212063232": {
"classes": [
1
],
"hashtags": [],
"parsed_tweet": "bislerizone please provide water nepal",
"retweet_count": 0,
"tweet_text": "@BisleriZone Plz provide water in Nepal",
"urls": [],
"users": [
"BisleriZone"
]
},
"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"
]
},
"592011381005651968": {
"classes": [
1
],
"hashtags": [
"Earthquake"
],
"parsed_tweet": "thank you teaching hospital earthquake injured getting treatment open space tents urgent need",
"retweet_count": 38,
"tweet_text": "TU teaching hospital. #Earthquake injured are getting treatment on open space. Tents are urgent need. http://t.co/Dp2fswi051",
"urls": [],
"users": [
"dipakbhattarai"
]
},
"592012112500666370": {
"classes": [
1,
3
],
"hashtags": [],
"parsed_tweet": "laveypj people nepal need food medicines bible inhumane shameless creature",
"retweet_count": 0,
"tweet_text": "@laveypj Ppl in nepal need food, medicines nt bible\nhow inhumane shameless creature u r..",
"urls": [],
"users": [
"laveypj"
]
},
"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"
]
},
"592014898785230848": {
"classes": [
5,
6
],
"hashtags": [
"EarthquakeNepal"
],
"parsed_tweet": "indian power minster mr piyushgoyal offered send engineers equipment restore power grids nepal earthquakenepal",
"retweet_count": 0,
"tweet_text": "Indian power minster Mr. @PiyushGoyal has offered to send engineers and equipment to restore the power grids in Nepal #EarthquakeNepal",
"urls": [],
"users": [
"PiyushGoyal"
]
},
"592015991573360640": {
"classes": [
0,
4,
5
],
"hashtags": [],
"parsed_tweet": "pm orders massive relief nepal 15000 blankets 2500 tents ready kanpur airport one c130j aircraft leaves relief team ndtv",
"retweet_count": 147,
"tweet_text": "Pm orders massive relief for Nepal. 15000 blankets and 2500 tents ready at Kanpur airport. One C130J aircraft leaves with relief team @ndtv",
"urls": [],
"users": []
},
"592016672355061760": {
"classes": [
0,
2,
5
],
"hashtags": [
"earthquake",
"Nepal"
],
"parsed_tweet": "male seeking female also sending 3,000 kits non-food items medical kits affected earthquake nepal",
"retweet_count": 148,
"tweet_text": ".@MSF is also sending 3,000 kits of non-food items and medical kits to those affected by the #earthquake in #Nepal",
"urls": [],
"users": [
"MSF_USA",
"MSF"
]
},
"592016806153293825": {
"classes": [
2
],
"hashtags": [
"doctors",
"Nepal",
"earth"
],
"parsed_tweet": "trama center doctors health worker volunteers amazing job nepal earth-quick",
"retweet_count": 0,
"tweet_text": "I am TRAMA center #doctors and health worker and volunteers doing amazing job #Nepal #earth-quick",
"urls": [],
"users": []
},
"592018368279908352": {
"classes": [
0,
2,
5
],
"hashtags": [
"NepalEarthquake"
],
"parsed_tweet": "we're sending 4 male seeking female teams 3000 kits non-food items medical supplies nepal assist nepalearthquake victims",
"retweet_count": 46,
"tweet_text": "We're sending 4 MSF teams, 3000 kits of non-food items & medical supplies to Nepal to assist #NepalEarthquake victims http://t.co/BFJIHWCtqs",
"urls": [],
"users": [
"MSF_canada"
]
},
"592018533673869313": {
"classes": [
3
],
"hashtags": [
"Nepal"
],
"parsed_tweet": "thoughts people nepal large need surgical care even earthquake bjsurgery",
"retweet_count": 25,
"tweet_text": "Our thoughts are with the people of #Nepal. Large need for surgical care even before the earthquake. @BJSurgery http://t.co/SbReTlReWS",
"urls": [],
"users": [
"SurgeryHealth",
"BJSurgery"
]
},
"592019272903172096": {
"classes": [
2
],
"hashtags": [],
"parsed_tweet": "ajoymukherjee working ministry health send doctors paramedical staff nepal",
"retweet_count": 0,
"tweet_text": "@ajoymukherjee we are working with Ministry of Health to send our doctors and paramedical staff to to Nepal.",
"urls": [],
"users": [
"ajoymukherjee"
]
},
"592021167046819841": {
"classes": [
0
],
"hashtags": [],
"parsed_tweet": "20,000 rss people gone aid efforts nepal",
"retweet_count": 2,
"tweet_text": "20,000 RSS people have gone to aid efforts in Nepal.",
"urls": [],
"users": []
},
"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": []
},
"592022537682427904": {
"classes": [
2
],
"hashtags": [
"EarthQuake",
"Nepal",
"IndiaWithNepal"
],
"parsed_tweet": "bishal bazaar ambulance service 977 4244121 please earthquake nepal indiawithnepal",
"retweet_count": 0,
"tweet_text": "Bishal Bazaar Ambulance service:\n+977 4244121 Please RT #EarthQuake #Nepal #IndiaWithNepal",
"urls": [],
"users": []
},