forked from prtk1910/Sentiment-Analysis-Politics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolitics.sql
1960 lines (1939 loc) · 639 KB
/
politics.sql
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
-- phpMyAdmin SQL Dump
-- version 4.8.4
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Feb 10, 2019 at 08:13 AM
-- Server version: 10.1.37-MariaDB
-- PHP Version: 7.3.1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `politics`
--
-- --------------------------------------------------------
--
-- Table structure for table `keywords`
--
CREATE TABLE `keywords` (
`id` int(11) NOT NULL,
`keyword` varchar(20) NOT NULL,
`sadness` float NOT NULL,
`joy` float NOT NULL,
`fear` float NOT NULL,
`disgust` float NOT NULL,
`anger` float NOT NULL,
`words` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `keywords`
--
INSERT INTO `keywords` (`id`, `keyword`, `sadness`, `joy`, `fear`, `disgust`, `anger`, `words`) VALUES
(8, 'Modi', 0.545736, 0.465239, 0.114108, 0.487157, 0.149976, ''),
(14, 'Donald Trump young p', 0.126793, 0.131755, 0.086667, 0.099016, 0.033191, ''),
(15, 'Donald Trump', 0.558452, 0.468926, 0.091772, 0.572578, 0.102015, 'Donald Trump U.S. counterpart Donald Trump https://t.co/IhFzM7ihFQ RT second Trump-Kim summit RT Donald Trump jokes ROK President Moon Jae-in bad guys Theresa May family https://t.co/J1nvUvSYc9 RT Michael Malice '),
(16, 'Narendra Modi', 0.123442, 0.258405, 0.082365, 0.112257, 0.094489, 'large firms crore textile hub 42,000-crore Tirupur textile industry 5lakhs worker Tirupur’s Rs Railway Zone Narendra Modi Ji NaMo App RT black money election promise of Rs ');
-- --------------------------------------------------------
--
-- Table structure for table `posts`
--
CREATE TABLE `posts` (
`id` int(11) NOT NULL,
`posted` datetime NOT NULL,
`text` text NOT NULL,
`sentiment` varchar(30) NOT NULL,
`count` int(11) NOT NULL,
`usermentions` text NOT NULL,
`tags` text NOT NULL,
`username` text NOT NULL,
`imageurl` text NOT NULL,
`location` text NOT NULL,
`keyword` text NOT NULL,
`relevant` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `posts`
--
INSERT INTO `posts` (`id`, `posted`, `text`, `sentiment`, `count`, `usermentions`, `tags`, `username`, `imageurl`, `location`, `keyword`, `relevant`) VALUES
(718, '2019-02-09 19:46:34', '@dnaasingh29 i know that dude. My limited point is that the hashtag is \" tnwelcomes modi\" but hardly people who ar… https://t.co/J8bvb0U7Zt', 'neutral', 0, 'dnaasingh29 ', '', 'Hakuna Matata', 'http://pbs.twimg.com/profile_images/1009091817252405248/zLmXyzen_normal.jpg', 'Mumbai, India', '', ''),
(719, '2019-02-09 19:46:34', 'RT @VarunReddy969: Modi about Citizenship Amendment bill in Assam.\n\"Duty of India to protect such people\"\n\nOther than BJP,no other party in…', 'negative', 0, 'VarunReddy969 ', '', 'Ranjana Mishra', 'http://pbs.twimg.com/profile_images/652205373403721728/2gqcAqos_normal.jpg', 'Bengaluru, Karnataka', '', ''),
(720, '2019-02-09 19:46:31', 'RT @ChandanAnIndian: @saffron0009 Modi ji only for next 10 yrsðŸ™', 'neutral', 0, 'ChandanAnIndian saffron0009 ', '', 'preeti @💯%FB', 'http://pbs.twimg.com/profile_images/1092815428362088448/uiVwgo8I_normal.jpg', 'Bharat', '', ''),
(721, '2019-02-09 19:46:31', 'RT @KirronKherBJP: A 48-yr-old man who can not write a condolence message on his own, is claiming to “figure out†@narendramodi? Modi, a se…', 'negative', 0, 'KirronKherBJP narendramodi ', '', 'J@$', 'http://pbs.twimg.com/profile_images/1041013110218223616/Bc9WBqWx_normal.jpg', 'Surat, India', '', ''),
(722, '2019-02-09 19:46:29', 'RT @im_saiganesh: INC ruled India for majority of 70 years and Tamil Nadu got just 52% toilet coverage till 2014.\n\nModi made it 100% in jus…', 'neutral', 0, 'im_saiganesh ', '', 'sk raj', 'http://pbs.twimg.com/profile_images/1093927672760025088/c7n1gYQr_normal.jpg', 'Chhattisgarh, India', '', ''),
(723, '2019-02-09 19:46:27', 'RT @Srikant2019: Vijayawada to airport route full of\n#GoBackModi banners 😂😂😂\n\nOnly shameless character like modi can continue his planned…', 'positive', 0, 'Srikant2019 ', '#gobackmodi ', 'Jhansi Ki Rani (Gandhi)', 'http://pbs.twimg.com/profile_images/928745988705177600/SNTTpTNz_normal.jpg', 'Mumbai, India', '', ''),
(724, '2019-02-09 19:46:27', 'RT @INCIndia: In the heat & light of the defence of the interference by the PMO in the Rafale deal, we must not forget two simple facts.…', 'neutral', 0, 'INCIndia ', '', 'Nikhil Yesudas', 'http://pbs.twimg.com/profile_images/1001710687499046913/9jEOuSCc_normal.jpg', 'Cochin, India', '', ''),
(725, '2019-02-09 19:46:27', 'RT @Joshebacardilya: #GoBackModi\nWhen it comes to Modi, TN is always the first to kick him out! TN inspires Andhra, Kerala and Assam to kic…', 'neutral', 0, 'Joshebacardilya ', '#gobackmodi ', 'COMRADEfromCAPECOMORIN', 'http://pbs.twimg.com/profile_images/1089240149077053440/32yQ4jhj_normal.jpg', 'Nagercoil, India', '', ''),
(726, '2019-02-09 19:46:27', 'RT @DeepakmishraIND: Modi is making a strong India #TNWelcomesModi', 'neutral', 0, 'DeepakmishraIND ', '#tnwelcomesmodi ', 'Thamizhan J', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(727, '2019-02-09 19:46:20', 'RT @cpimspeak: CPIM and Left parties take out #GoBackModi protests in Guntur, Andhra Pradesh. On 10th, PM Modi is schedule to visit Guntur.…', 'neutral', 0, 'cpimspeak ', '#gobackmodi ', 'Sarath', 'http://pbs.twimg.com/profile_images/979660166600654848/0Hm0wQ3W_normal.jpg', 'Vande Mataram', '', ''),
(728, '2019-02-09 19:46:20', 'RT @adgpi: Shri Narendra Modi @PMOindia laid foundation stone for #Sela #Tunnel project.Two tunnels of 1790 & 475 mtrs will be constructed…', 'neutral', 0, 'adgpi PMOIndia ', '#sela #tunnel ', 'Sonaa.', 'http://pbs.twimg.com/profile_images/1091726969392136193/hDzwfcsb_normal.jpg', 'Mumbai, India', '', ''),
(729, '2019-02-09 19:46:20', 'RT @neo_pac: Barely a week after Modi started campaign in WB, \nTMC MLA Satyajit Biswas, recently married, shot dead in Phulbari!\n\nhttps://…', 'negative', 0, 'neo_pac ', '', 'Smarajit Basu', 'http://pbs.twimg.com/profile_images/963371705447141376/sqA6lthu_normal.jpg', 'Mumbai, India', '', ''),
(730, '2019-02-09 19:46:19', 'RT @padhalikha: n 2014 LS elections, \nMamta got 2 cr votes in Bengal (44%) \nBJP got 74 lakh votes (16%) \n\nSince 2014, Modi have given 7…', 'neutral', 0, 'padhalikha ', '', 'Auro007', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(731, '2019-02-09 19:46:18', 'RT @rssurjewala: Will PM Modi promise registration of a case in Prevention of Corruption Act & Black Money Act against BS Yeddyurappa & oth…', 'neutral', 0, 'rssurjewala ', '', 'Khan Parvez', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(732, '2019-02-09 19:46:17', 'RT @RatanSharda55: I have walked out if @republic debate on #TwitterInsultsIndia. Republic must learn to rein in mindless shouting panelist…', 'neutral', 0, 'RatanSharda55 republic ', '#twitterinsultsindia ', 'Uday N Dubey', 'http://pbs.twimg.com/profile_images/1638809242/DSCF0122_normal.JPG', 'Mumbai', '', ''),
(733, '2019-02-09 19:46:16', '#TNWelcomesModi this is proof how TN love our PM shri @narendramodi ji \n\nAgain Pappu gone back on 4th position worl… https://t.co/AOlyouCEO3', 'positive', 0, 'narendramodi ', '#tnwelcomesmodi ', 'Bachkani', 'http://pbs.twimg.com/profile_images/1030676175641665537/8ItnSZeU_normal.jpg', 'Ghar Ke Paas ', '', ''),
(734, '2019-02-09 19:46:15', 'RT @MinhazMerchant: Dear â¦@RahulGandhiâ©, Qatari Air Force paid Rs 1,875 crore for fully loaded #Rafale jet in 2015. Indian Air Force is pay…', 'neutral', 0, 'MinhazMerchant RahulGandhi ', '#rafale ', 'S S Batra 🇮🇳', 'http://pbs.twimg.com/profile_images/852230289581649922/tL346tHn_normal.jpg', 'India', '', ''),
(735, '2019-02-09 19:46:15', 'RT @anujg: Internal security transformation under PM Modi \n\nComprehensive article by â¦@c_aashishâ©\n\nhttps://t.co/YJuaAVht7F https://t.co/Rnn…', 'neutral', 0, 'anujg c_aashish ', '', '[email protected]', 'http://pbs.twimg.com/profile_images/1092060055132925952/gktNsz8z_normal.jpg', 'New Delhi, India', '', ''),
(736, '2019-02-09 19:46:12', 'RT @Anish_Cherian: The Great Jhumlas of Modi Govt 2014-2019\n\nBJP/RSS Ka Vikas,Desh Ka Vinash, Satyanas #GobackModi https://t.co/MwqgnR2bzg', 'positive', 0, 'Anish_Cherian ', '#gobackmodi ', 'mohamed firthous', 'http://pbs.twimg.com/profile_images/960460228591468544/HAc_zCPB_normal.jpg', 'Dindigul, India', '', ''),
(737, '2019-02-09 19:46:12', 'RT @Sunil_Deodhar: Modi govt gave 5.56 Lakh Cr for the development of Andhra Pradesh which is 5 times more than what Congress had given.…', 'neutral', 0, 'Sunil_Deodhar ', '', 'Anurag Kumar Sahu', 'http://pbs.twimg.com/profile_images/1027560096207785989/r33-iVJ0_normal.jpg', 'वसंत कà¥à¤‚ज, नई दिलà¥à¤²à¥€', '', ''),
(738, '2019-02-09 19:46:11', 'RT @im_saiganesh: INC ruled India for majority of 70 years and Tamil Nadu got just 52% toilet coverage till 2014.\n\nModi made it 100% in jus…', 'neutral', 0, 'im_saiganesh ', '', 'Gupta_Dynasty', 'http://pbs.twimg.com/profile_images/982273513653350400/fToOqfoY_normal.jpg', 'India', '', ''),
(739, '2019-02-09 19:46:10', 'RT @NH_India: Ahead of Prime Minister’s scheduled #GunturRally on Sunday, Feb 10, Andhra Pradesh Chief Minister #ChandrababuNaidu has alrea…', 'neutral', 0, 'NH_India ', '#gunturrally #chandrababunaidu ', 'Naishadh Vyas', 'http://pbs.twimg.com/profile_images/529178024374071297/M3IWJHM0_normal.jpeg', 'Ahmedabad, Gujarat, India', '', ''),
(740, '2019-02-09 19:46:10', 'RT @SavingOurSoul: Chowkidar n Gang is weakening d States n Constitutional institutions.\n\nModi is coming to witness d injustice that was do…', 'neutral', 0, 'SavingOurSoul ', '', 'Arun Culas', 'http://pbs.twimg.com/profile_images/1064100026794692608/vB5MRB0n_normal.jpg', 'Mumbai, Maharashtra.', '', ''),
(741, '2019-02-09 19:46:07', 'RT @NaanuHindustani: @INCIndia @RahulGandhi Vijay Mallya, \nNirav Modi, \nMehul Choksi \n- All got money during the UPA rule.\n\nAnd Congress sa…', 'neutral', 0, 'NaanuHindustani INCIndia RahulGandhi ', '', 'sushilkumar', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(742, '2019-02-09 19:46:06', 'RT @ppurva: @DasComrade The anger against Congress was fuelled by propaganda and fake news. Most of the scams that Cong was accused of turn…', 'neutral', 0, 'ppurva DasComrade ', '', 'Balachander C Mouli', 'http://pbs.twimg.com/profile_images/1074579171483873280/zkq4AdP5_normal.jpg', 'Chennai, Tamil Nadu', '', ''),
(743, '2019-02-09 19:46:05', 'RT @mohan_vinoth: Modi now , on seeing tweets bearing #GoBackModi tag 😂🖕🻠https://t.co/oWfCY5dzy0', 'positive', 0, 'mohan_vinoth ', '#gobackmodi ', 'Reiah Paul Sam', 'http://pbs.twimg.com/profile_images/821323475289866240/3oDqLp_T_normal.jpg', 'Bengaluru South, India', '', ''),
(744, '2019-02-09 19:46:04', 'RT @rishibagree: BJP Helped Mamata - Mamata Backstabbed ABV\nBJP Helped TDP - Naidu backstabbed ABV\nBJP again Helped TDP - Naidu again backs…', 'neutral', 0, 'rishibagree ', '', 'chetan 🇮🇳', 'http://pbs.twimg.com/profile_images/884788600642121730/z2rxJGCg_normal.jpg', 'India', '', ''),
(745, '2019-02-09 19:45:57', 'RT @Bit_2_close: We bring to you the top five marketing gimmicks by Modi govt https://t.co/AtvWkD1TfC via @YouTube', 'neutral', 0, 'Bit_2_close YouTube ', '', 'Not that Jaspal Bhatti🙃', 'http://pbs.twimg.com/profile_images/989953494181347328/F9jt3w5l_normal.jpg', 'India', '', ''),
(746, '2019-02-09 19:45:57', 'RT @prasannavishy: Stunning scale of charity. Kudos to everyone behind this initiative @TVMohandasPai \nPM Modi To Serve ISKCON Affiliate Ak…', 'positive', 0, 'prasannavishy TVMohandasPai ', '', 'Burqa Butt', 'http://pbs.twimg.com/profile_images/579600526607712256/wWCA5A5t_normal.png', 'Lutyens Darbar', '', ''),
(747, '2019-02-09 19:45:56', 'RT @DasComrade: Do you feel that the anger against Modi and BJP, now in 2019, is much more than the anger that was there against UPA2 in 20…', 'positive', 0, 'DasComrade ', '', 'Amar Lodh', 'http://pbs.twimg.com/profile_images/533328048783781888/ykk3As2K_normal.jpeg', 'Mumbai', '', ''),
(748, '2019-02-09 19:45:56', 'RT @08surya: During Modi Government, unemployment is seriously horrible 🙈\n\n22 applicants for one PM POST\n#RafaelDeal \n#TNWelcomesModi \n#MUF…', 'neutral', 0, '08surya ', '#rafaeldeal #tnwelcomesmodi ', 'Suraj Raikwar', 'http://pbs.twimg.com/profile_images/1092032345157169152/BdcxOeG4_normal.jpg', 'Indore, India', '', ''),
(749, '2019-02-09 19:45:51', 'RT @narendramodi177: Retweet If You Want Modi Again. \n#TNWelcomesModi https://t.co/5s1cj8L3E0', 'neutral', 0, 'narendramodi177 ', '#tnwelcomesmodi ', 'Jatin Verma', 'http://pbs.twimg.com/profile_images/1082972864624709632/_ZTPzMiI_normal.jpg', 'New Delhi, India', '', ''),
(750, '2019-02-09 19:45:47', 'RT @im_saiganesh: INC ruled India for majority of 70 years and Tamil Nadu got just 52% toilet coverage till 2014.\n\nModi made it 100% in jus…', 'neutral', 0, 'im_saiganesh ', '', 'Jatin Verma', 'http://pbs.twimg.com/profile_images/1082972864624709632/_ZTPzMiI_normal.jpg', 'New Delhi, India', '', ''),
(751, '2019-02-09 19:45:47', 'RT @pbhushan1: No doubt that Priyanka will defeat Modi from Varanasi as a joint opposition candidate. If she is put up as a joint candidate…', 'neutral', 0, 'pbhushan1 ', '', 'Nitin Raut', 'http://pbs.twimg.com/profile_images/1035775687322476550/p9KwlOqd_normal.jpg', 'Indore, India', '', ''),
(752, '2019-02-09 19:45:42', 'RT @Hariindic: PM Narendra Modi likely to pick Tamil Nadu for 2nd seat this election ðŸ˜ðŸ˜\nIf it happens, BJP + will sweep TamilNadu. #TNWelco…', 'neutral', 0, 'Hariindic ', '', 'Hemu 🇮🇳', 'http://pbs.twimg.com/profile_images/1092052217056489472/Kl9RraTW_normal.jpg', 'India', '', ''),
(753, '2019-02-09 19:45:41', 'RT @SikshaUtkarsh: #Andhra #AndhraPradesh will NEVER welcome the corrupt Modi #GoBackModi #VoteBJPOut', 'neutral', 0, 'SikshaUtkarsh ', '#andhra #andhrapradesh #gobackmodi #votebjpout ', 'Ratna Prasad Gummadi', 'http://pbs.twimg.com/profile_images/965989550966411269/8yGT1Xq0_normal.jpg', 'Mumbai, INDIA ', '', ''),
(754, '2019-02-09 19:45:41', '@Vinayakapran @IndianExpress Wtf 🤣 😂 🙠Modi is doing fake Jumlebazi and you trying to get anything out of it. Lol bhakto ki jai. Good night', 'positive', 0, 'Vinayakapran IndianExpress ', '', 'JS (The Eye)', 'http://pbs.twimg.com/profile_images/1093778673574895617/FWZK16hu_normal.jpg', 'Kepler22b,Cygnus constellation', '', ''),
(755, '2019-02-09 19:45:41', 'Modi lies wont get votes for him in TN..#GoBackModi', 'neutral', 0, '', '#gobackmodi ', 'Peace loving indian', 'http://pbs.twimg.com/profile_images/1074194124163543041/kqvLuQZB_normal.jpg', 'India', '', ''),
(756, '2019-02-09 19:45:38', 'RT @ReshmiDG: First @INCIndia ‘s dirty tricks dept proxies offer @the_hindu a cropped document on #Rafale. Modi-hating journos eagerly acce…', 'negative', 0, 'ReshmiDG INCIndia the_hindu ', '#rafale ', 'Ashwin Patel', 'http://pbs.twimg.com/profile_images/927577718866059264/mGDoqAun_normal.jpg', 'Mumbai, India', '', ''),
(757, '2019-02-09 19:45:37', 'RT @RituRathaur: Bozos trending Modi to go back are none else but the members of Vatic@n controlled Christi@n Church mafia in Tamil Nadu..t…', 'neutral', 0, 'RituRathaur ', '', 'Jatin Verma', 'http://pbs.twimg.com/profile_images/1082972864624709632/_ZTPzMiI_normal.jpg', 'New Delhi, India', '', ''),
(758, '2019-02-09 19:45:37', 'RT @KirenRijiju: In just 55 months! Imagine, had @narendramodi ji become PM 15 years back what would have been the condition of neglected…', 'positive', 0, 'KirenRijiju narendramodi ', '', 'Lava agarwal', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(759, '2019-02-09 19:45:33', 'RT @nirmal_venkat: We are back. Tamilians started saying #GoBackModi. I am using twitter, whenever modi comes to TN. you know what I mean 😂…', 'negative', 0, 'nirmal_venkat ', '#gobackmodi ', 'mohamed firthous', 'http://pbs.twimg.com/profile_images/960460228591468544/HAc_zCPB_normal.jpg', 'Dindigul, India', '', ''),
(760, '2019-02-09 19:45:33', 'Tripura To Become Gateway Of Southeast Asian Countries, Says PM Modi https://t.co/TYOKdmoIcJ https://t.co/PpscHPh6bV', 'neutral', 0, '', '', 'Roger David', 'http://pbs.twimg.com/profile_images/656373918438047744/J3T6WuEt_normal.jpg', 'New Delhi, Delhi', '', ''),
(761, '2019-02-09 19:45:31', 'RT @DilipKannan: How Modi stopped rural Indian women from inhaling an equivalent of 400 cigarettes per day - Free LPG Connection!\n#TNWelcom…', 'positive', 0, 'DilipKannan ', '', 'Mani Sekhar Raman', 'http://pbs.twimg.com/profile_images/969907755006951424/uatyNbIM_normal.jpg', 'Riyadh, Saudi Arabia', '', ''),
(762, '2019-02-09 19:45:31', '@DasComrade @autumnrainwish This is India. Modi will back In 2019. Will make u in this same graveyard.', 'neutral', 0, 'DasComrade autumnrainwish ', '', 'Sajan', 'http://pbs.twimg.com/profile_images/714728816128749568/OUSu6rAf_normal.jpg', 'Delhi, India', '', ''),
(763, '2019-02-09 19:45:31', 'RT @sanjukta: @ndtv You might have gone to West Bengal first time but people there already know you give the same tea-story to every state…', 'neutral', 0, 'sanjukta ndtv ', '', 'riazshq', 'http://pbs.twimg.com/profile_images/928601579221118977/bRfVGcpn_normal.jpg', 'Mumbai, India', '', ''),
(764, '2019-02-09 19:45:31', 'RT @DaharwalK: CJI: Mayawati hs to pay money spent on statues from own, as money belongs to pub 52.2Cr\n\nMe:If petition being filed against…', 'neutral', 0, 'DaharwalK ', '', 'Likey Luke', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(765, '2019-02-09 19:45:28', 'RT @rishibagree: This tweet of Arvind Kejriwal dates back to 2014\n\nModi not only lowered the gas price to 5.6 $/MMBTU from 8 dollars,he als…', 'negative', 0, 'rishibagree ', '', 'Gaurav Nayyar ®', 'http://pbs.twimg.com/profile_images/894257294552305664/a4LbPRu1_normal.jpg', 'Mumbai, India', '', ''),
(766, '2019-02-09 19:45:28', 'RT @vibhor_anand: On the Scale of the 10, How much would you rate Modi Govt in last 4.5 years??', 'neutral', 0, 'vibhor_anand ', '', 'prashant m mehta 🇮🇳', 'http://pbs.twimg.com/profile_images/1078975128346578944/OAsI4CBv_normal.jpg', 'Mumbai, India', '', ''),
(767, '2019-02-09 19:45:28', 'RT @INCIndia: Did the Modi Govt present the document released by @the_hindu to the Supreme Court? Page two of which clearly says that the P…', 'neutral', 0, 'INCIndia the_hindu ', '', 'Nikhil Yesudas', 'http://pbs.twimg.com/profile_images/1001710687499046913/9jEOuSCc_normal.jpg', 'Cochin, India', '', ''),
(768, '2019-02-09 19:45:27', 'RT @im_saiganesh: INC ruled India for majority of 70 years and Tamil Nadu got just 52% toilet coverage till 2014.\n\nModi made it 100% in jus…', 'neutral', 0, 'im_saiganesh ', '', 'Hemu 🇮🇳', 'http://pbs.twimg.com/profile_images/1092052217056489472/Kl9RraTW_normal.jpg', 'India', '', ''),
(769, '2019-02-09 19:45:25', 'RT @jai_bothra: @atamatti @mvmeet @sumit138 yes. India is such a diverse country. \naddressing all section and region in one conduct is no…', 'positive', 0, 'jai_bothra atamatti mvmeet sumit138 ', '', 'Prakash Solanki', 'http://pbs.twimg.com/profile_images/801848791338860544/-qtvh0Hg_normal.jpg', 'Mumbai, India', '', ''),
(770, '2019-02-09 19:45:24', '@ShashiTharoor @INCIndia India wasting such a super PM candidate..Congress how should i tell you Shashi Ka is THE P… https://t.co/RAAHHXwvXC', 'positive', 0, 'ShashiTharoor INCIndia ', '', 'Mohammed Ali', 'http://pbs.twimg.com/profile_images/778165141166850048/MrlhrR3d_normal.jpg', 'Multiple places', '', ''),
(771, '2019-02-09 19:45:22', 'RT @Bhakthur: #GoBackModi in All language\n\n#மோடியே_திரà¯à®®à¯à®ªà®¿_போ \n#GO_BACK_MODI \n#മോദിയെ_തിരിചàµà´šàµ_ഡോ \n#वापस_जल_जाव \n#গছ_বাচক_মোদী \n#গও_বাক_মো…', 'neutral', 0, 'Bhakthur ', '#gobackmodi #மோடியே_திரà¯à®®à¯à®ªà®¿_போ #go_back_modi #മോദിയെ_തിരിചàµà´šàµ_ഡോ #वापस_जल_जाव #গছ_বাচক_মোদী ', 'சிவா', 'http://pbs.twimg.com/profile_images/928105535462817792/HVo2fQsX_normal.jpg', 'Chennai, India', '', ''),
(772, '2019-02-09 19:45:20', 'RT @shibuchandran28: Day by day love for Modi keeps multiplying....\n#TNWelcomesModi', 'positive', 0, 'shibuchandran28 ', '#tnwelcomesmodi ', 'Anand', 'http://pbs.twimg.com/profile_images/1093080269328834561/ISeHtSkk_normal.jpg', 'Mumbai, India', '', ''),
(773, '2019-02-09 19:45:19', 'RT @HLKodo: saw some movie Handel trending against Modi but this is the reply for those #TNWelcomesModi ðŸ‘ðŸ‘💪 https://t.co/ETY1D5eCV9', 'neutral', 0, 'HLKodo ', '#tnwelcomesmodi ', '#justiceforramalingam - கோபிநà¯à®¤à¯ 🇮🇳', 'http://pbs.twimg.com/profile_images/1093954441965797378/uF1-RXFi_normal.jpg', 'Chennai', '', ''),
(774, '2019-02-09 19:45:19', 'RT @ShekharGupta: Modi’s BJP is sliding down the Rafale slope. It can’t get away with outraging at the Opposition and threatening & scoldin…', 'negative', 0, 'ShekharGupta ', '', 'Amit', 'http://pbs.twimg.com/profile_images/956119029583724544/klzgcN2J_normal.jpg', 'Punjab, INDIA ', '', ''),
(775, '2019-02-09 19:45:19', 'RT @ashoswai: Modi has turned Kashmir to a Killing Field:\nYear----- Number of Deaths\n2014-----188\n2015-----178\n2016-----267\n2017-----354\n20…', 'negative', 0, 'ashoswai ', '', 'i was id', 'http://pbs.twimg.com/profile_images/554254475632721920/zD3Toe41_normal.jpeg', 'Near the Thames in Oxon', '', ''),
(776, '2019-02-09 19:45:19', 'RT @jai_bothra: @mvmeet @sumit138 name pm modi. \n see his bungalow where he resides \nwhy he need a house ?\nsee his convey \nwhy he needs a c…', 'neutral', 0, 'jai_bothra mvmeet sumit138 ', '', 'Prakash Solanki', 'http://pbs.twimg.com/profile_images/801848791338860544/-qtvh0Hg_normal.jpg', 'Mumbai, India', '', ''),
(777, '2019-02-09 19:45:19', 'RT @noconversion: Rahul Gandhi @RahulGandhi need to stop using derogatory language, Narendera Modi is Prime Minister of INDIA, not a str…', 'negative', 0, 'noconversion RahulGandhi ', '', 'vandana sharma', 'http://pbs.twimg.com/profile_images/1091551968605003777/r6jGjogH_normal.jpg', 'india', '', ''),
(778, '2019-02-09 19:45:18', 'RT @cpimspeak: CPIM and Left parties take out #GoBackModi protests in Guntur, Andhra Pradesh. On 10th, PM Modi is schedule to visit Guntur.…', 'neutral', 0, 'cpimspeak ', '#gobackmodi ', 'charanbomma', 'http://pbs.twimg.com/profile_images/989606223023493120/-R0ls0tW_normal.jpg', 'Mumbai, India', '', ''),
(779, '2019-02-09 19:45:17', 'RT @KrrisshYadhu: Hon’PM Modi Ji likely to inaugurate the fastest Tejas2 train between Chennai to Madurai on his Tiruppur meeting. This tra…', 'neutral', 0, 'KrrisshYadhu ', '', 'G U B B A N N A. G🇮🇳🌹', 'http://pbs.twimg.com/profile_images/1094315872263401472/4aKoSrOx_normal.jpg', 'Karnataka.', '', ''),
(780, '2019-02-09 19:45:16', 'RT @LogicKilling: #GoBackModi \n#csatvictims \n#ewsjumla \n#compensatoryAttempts \n\nModi \nCHeated Hindi STUDENTS\nCheated RURAL YOUTH\nCHEATED #C…', 'neutral', 0, 'LogicKilling ', '#gobackmodi #csatvictims #ewsjumla #compensatoryattempts ', '#CSATvictims', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Hyderabad, India', '', ''),
(781, '2019-02-09 19:45:14', 'RT @ndtv: PM Modi greeted with black flags in Guwahati, protests may intensify today\n\nRead here: https://t.co/5WDVru4rgd\n#CitizenshipBill h…', 'neutral', 0, 'ndtv ', '#citizenshipbill ', 'Peaceful Indian', 'http://pbs.twimg.com/profile_images/1035164485512773632/6xbiZhHO_normal.jpg', 'Mumbai, India', '', ''),
(782, '2019-02-09 19:45:12', 'RT @SijuRamakrish: #TNWelcomesModi \nAlways Modi', 'neutral', 0, 'SijuRamakrish ', '#tnwelcomesmodi ', 'Navanithakkannan', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(783, '2019-02-09 19:45:09', 'RT @rishibagree: This tweet of Arvind Kejriwal dates back to 2014\n\nModi not only lowered the gas price to 5.6 $/MMBTU from 8 dollars,he als…', 'negative', 0, 'rishibagree ', '', 'Nicky', 'http://pbs.twimg.com/profile_images/641527280338997248/GDs30q9O_normal.jpg', 'Indore, India', '', ''),
(784, '2019-02-09 19:45:08', 'RT @RatanSharda55: I have walked out if @republic debate on #TwitterInsultsIndia. Republic must learn to rein in mindless shouting panelist…', 'neutral', 0, 'RatanSharda55 republic ', '#twitterinsultsindia ', 'Pawan Kumar Rai', 'http://pbs.twimg.com/profile_images/954401907186982913/9rdyybAn_normal.jpg', 'Gorakhpur (UP);Mumbai', '', ''),
(785, '2019-02-09 19:45:07', 'RT @SayaniSengupt15: 1 Didi is enough to tackle 100 Modi and his full BJP army. \n\n#ModiUnstoppable\n#PakdaGayaModi \n#GoBackModi \n#ModiEkDisa…', 'neutral', 0, 'SayaniSengupt15 ', '#modiunstoppable #pakdagayamodi #gobackmodi ', 'Likey Luke', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(786, '2019-02-09 19:45:03', 'RT @Anish_Cherian: The Great Jhumlas of Modi Govt 2014-2019\n\nBJP/RSS Ka Vikas,Desh Ka Vinash, Satyanas #GobackModi https://t.co/MwqgnR2bzg', 'positive', 0, 'Anish_Cherian ', '#gobackmodi ', 'Anish', 'http://pbs.twimg.com/profile_images/1082904566213967873/lf_qr1Cy_normal.jpg', 'India', '', ''),
(787, '2019-02-09 19:45:01', 'RT @rishibagree: BJP will win 272+ only if it replace many of its useless sitting MPs who hardly work on ground but reached Parliament due…', 'neutral', 0, 'rishibagree ', '', '🇮🇳MY NATION..ATAL HAI AUR AJAY BHI!!🇮🇳', 'http://pbs.twimg.com/profile_images/1093525611140861952/3oCMInSz_normal.jpg', 'India', '', ''),
(788, '2019-02-09 19:45:01', 'RT @cpimspeak: CPIM and Left parties take out #GoBackModi protests in Guntur, Andhra Pradesh. On 10th, PM Modi is schedule to visit Guntur.…', 'neutral', 0, 'cpimspeak ', '#gobackmodi ', 'Brinda', 'http://pbs.twimg.com/profile_images/1083728608819068928/3CeB__5N_normal.jpg', 'Mumbai, India', '', ''),
(789, '2019-02-09 19:45:01', 'RT @bainjal: If you believe that Modi threw all procedure under a bus & picked Anil Ambani on merit as an offsets partner in #RafaleDeal th…', 'positive', 0, 'bainjal ', '#rafaledeal ', 'DelhipResident', 'http://pbs.twimg.com/profile_images/1002484423638618117/rv4FrV7O_normal.jpg', 'Delhi', '', ''),
(790, '2019-02-09 19:45:00', 'RT @mahesh10816: Tomorrow our @narendramodi Ji is visiting TN. \n\nCong + DMK + Commies + Naxals + Jihadis + Christian conversion Mafia + fri…', 'neutral', 0, 'mahesh10816 narendramodi ', '', 'JaiHindNationFirst🇮🇳', 'http://pbs.twimg.com/profile_images/1063856022035427328/3ThXKAyR_normal.jpg', 'Bangalore, India', '', ''),
(791, '2019-02-09 19:44:59', 'RT @sonny_chungkham: Already trending!\nBlack flag to Modi in Assam.\n#gobackmodi\n#CitizenshipAmendmentBill https://t.co/hdDWlYET8i', 'neutral', 0, 'sonny_chungkham ', '#gobackmodi #citizenshipamendmentbill ', 'Likey Luke', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(792, '2019-02-09 19:44:59', 'HISTORIC DECISION BY MODI GOVT: LADAKH TO BE THE THIRD ADMINISTRATIVE DIVISION IN J&K - TOOK 70 YRS https://t.co/LGa4sodaWp', 'neutral', 0, '', '', 'Diptanu Dey', 'http://pbs.twimg.com/profile_images/378800000710658117/fb7557e25d26e92160069db2e5d248e3_normal.jpeg', 'Mumbai, India', '', ''),
(793, '2019-02-09 19:44:57', 'RT @rishibagree: This tweet of Arvind Kejriwal dates back to 2014\n\nModi not only lowered the gas price to 5.6 $/MMBTU from 8 dollars,he als…', 'negative', 0, 'rishibagree ', '', 'Akshit Walia 🇮🇳', 'http://pbs.twimg.com/profile_images/1021094181333331968/A-YycbPl_normal.jpg', 'Mumbai, India', '', ''),
(794, '2019-02-09 19:44:57', 'RT @Sathya_33: #TNWelcomesModi yes i am tamilan modi Supporter https://t.co/2jVVE8DIpb', 'positive', 0, 'Sathya_33 ', '#tnwelcomesmodi ', 'गोरà¥à¤–ा Krishna শরà§à¦®à¦¾', 'http://pbs.twimg.com/profile_images/1083245831845601280/v1gpUh8A_normal.jpg', 'Assam, India', '', ''),
(795, '2019-02-09 19:44:56', 'RT @BodkheShilpa: Modi ji please have some shame. say no more\n#pomonemodi #GoBackModi https://t.co/ckxLPN5wEp', 'negative', 0, 'BodkheShilpa ', '#pomonemodi #gobackmodi ', 'Likey Luke', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(796, '2019-02-09 19:44:55', 'saw some movie Handel trending against Modi but this is the reply for those #TNWelcomesModi ðŸ‘ðŸ‘💪 https://t.co/ETY1D5eCV9', 'neutral', 3, '', '#tnwelcomesmodi ', 'Vishwatma 🇮🇳', 'http://pbs.twimg.com/profile_images/1029269996415868929/V4ywTAQx_normal.jpg', 'India', '', ''),
(797, '2019-02-09 19:44:54', '#Andhra #AndhraPradesh will NEVER welcome the corrupt Modi #GoBackModi #VoteBJPOut', 'neutral', 1, '', '#andhra #andhrapradesh #gobackmodi #votebjpout ', 'Siksha Utkarsh', 'http://pbs.twimg.com/profile_images/1093656804247175169/wGc7Q-A__normal.jpg', 'Mumbai, India', '', ''),
(798, '2019-02-09 19:44:53', 'RT @amit_nawaria: where is the josh? \nNow full josh of youth is in to remove modi in next poll.\ntrending #GoBackModi #ModiDestroysNorthEast…', 'neutral', 0, 'amit_nawaria ', '#gobackmodi #modidestroysnortheast ', 'Brinda', 'http://pbs.twimg.com/profile_images/1083728608819068928/3CeB__5N_normal.jpg', 'Mumbai, India', '', ''),
(799, '2019-02-09 19:44:52', 'RT @Rudravishnu1008: Go back Modi is used by all parties other than bjp. But #TNWelcomesModi is used only by bjp and bjp supporters. See th…', 'neutral', 0, 'Rudravishnu1008 ', '#tnwelcomesmodi ', 'Navanithakkannan', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(800, '2019-02-09 19:44:51', 'RT @INCHimachal: Congress President Rahul Gandhi convened a meeting with PCC president and CLP leaders of Congress Party Today. Congress P…', 'neutral', 0, 'INCHimachal ', '', 'Eternal Bharat', 'http://pbs.twimg.com/profile_images/1093973699688988672/NchD9OYN_normal.jpg', 'Mumbai, India', '', ''),
(801, '2019-02-09 19:44:50', 'RT @amarakhbaranth1: What is LK Advani ji’s inner voice screaming to Modi ... 🙀 \n\nThalaiva Dhoni 👉👇\n\n#GobackModi #GoBackSadistModi #TNWelco…', 'neutral', 0, 'amarakhbaranth1 ', '#gobackmodi #gobacksadistmodi ', 'sehaj', 'http://pbs.twimg.com/profile_images/1078565445605736448/wOS10Po5_normal.jpg', 'Mumbai, India', '', ''),
(802, '2019-02-09 19:44:50', 'RT @MrAdityaNaraya2: i am always confused on our Tamil brothers or sisters mind. Does they support or Oppose Modi actually ? #tnwelcomesmo…', 'negative', 0, 'MrAdityaNaraya2 ', '', 'Thamizhan J', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(803, '2019-02-09 19:48:49', 'RT @talk_anderson: Modi government brings dignity for Level 4 employees, removes British Era Tag of Dhobi, Safai Wala etc; Know why this st…', 'neutral', 0, 'talk_anderson ', '', 'Biju Nair', 'http://pbs.twimg.com/profile_images/804246718506102784/1uO9Sf8n_normal.jpg', 'India', '', ''),
(804, '2019-02-09 19:48:46', '@praveenroczzz @davidfrawleyved @narendramodi I never spoke abt the twitter trend!! 😂 My point is abt the growth of… https://t.co/8Kao9YLsIj', 'negative', 0, 'praveenroczzz davidfrawleyved narendramodi ', '', 'Srinivas Jayaprakash', 'http://pbs.twimg.com/profile_images/1088873211729592321/fvoujnPj_normal.jpg', 'Velachery, Chennai ', '', ''),
(805, '2019-02-09 19:48:46', 'RT @bainjal: If you believe that Modi threw all procedure under a bus & picked Anil Ambani on merit as an offsets partner in #RafaleDeal th…', 'positive', 0, 'bainjal ', '#rafaledeal ', 'riazshq', 'http://pbs.twimg.com/profile_images/928601579221118977/bRfVGcpn_normal.jpg', 'Mumbai, India', '', ''),
(806, '2019-02-09 19:48:45', 'RT @pbhushan1: No doubt that Priyanka will defeat Modi from Varanasi as a joint opposition candidate. If she is put up as a joint candidate…', 'neutral', 0, 'pbhushan1 ', '', 'rejithomas', 'http://pbs.twimg.com/profile_images/3599861586/4ee0bfee1004c012ffa9b26211bae978_normal.jpeg', 'Bangalore', '', ''),
(807, '2019-02-09 19:48:45', '#TNWelcomesModi New India Was Born Under Modi Ji.', 'neutral', 0, '', '#tnwelcomesmodi ', 'Vj Balaji', 'http://pbs.twimg.com/profile_images/1093154060830556161/e7ebNhQt_normal.jpg', 'Mumbai, India', '', ''),
(808, '2019-02-09 19:48:44', 'RT @umakantsingh_IN: @ndtv Whether Bengal, Uttar Pradesh, Maharashtra,Jammu & Kashmir, Assam,Meghalaya, Telangana or any other state,all pa…', 'neutral', 0, 'umakantsingh_IN ndtv ', '', '100daystoNTRbirthdayðŸ…ðŸ…', 'http://pbs.twimg.com/profile_images/1063329029766299649/cTuyAtLB_normal.jpg', 'Mumbai, India', '', ''),
(809, '2019-02-09 19:48:42', 'RT @umakantsingh_IN: @ndtv Whether Bengal, Uttar Pradesh, Maharashtra,Jammu & Kashmir, Assam,Meghalaya, Telangana or any other state,all pa…', 'neutral', 0, 'umakantsingh_IN ndtv ', '', 'Madhu Gullapalli', 'http://pbs.twimg.com/profile_images/1094220599616917504/_H-rIvC9_normal.jpg', 'Mumbai, India', '', ''),
(810, '2019-02-09 19:48:42', 'RT @iam_suriyan: First i Tweeted for Go back modi when I came to Twitter\n\nBut now I realized and \n\nWelcoming #TNWelcomesModi and now inform…', 'positive', 0, 'iam_suriyan ', '#tnwelcomesmodi ', 'Parveen Abstruse', 'http://pbs.twimg.com/profile_images/1034714706932523008/ZazWDz8B_normal.jpg', 'Sivakasi,Maraneri', '', ''),
(811, '2019-02-09 19:48:41', '@ShashiTharoor @INCIndia Sir but we will vote for Modi Ji in 2019.😀', 'neutral', 0, 'ShashiTharoor INCIndia ', '', 'Sumant Choudhary', 'http://pbs.twimg.com/profile_images/1029983927174344704/TB9fiRg8_normal.jpg', 'Mohali, India', '', ''),
(812, '2019-02-09 19:48:38', 'Where is bjp jindabad,in assam , only modi jindabad,which i knowledge,', 'neutral', 0, '', '', 'Ranjit Deka', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(813, '2019-02-09 19:48:37', 'RT @JeyanRabi: During Modi Government, unemployment is seriously at its peak...\n22 applicants for one PM POST.\nEarlier it used to be just 2…', 'positive', 0, 'JeyanRabi ', '', 'Anand', 'http://pbs.twimg.com/profile_images/1093080269328834561/ISeHtSkk_normal.jpg', 'Mumbai, India', '', ''),
(814, '2019-02-09 19:48:37', 'RT @mat_jane_de_yar: #GoBackModi.... Public welcoming Modi in each state he is visiting. The new Safroon of Sanghi sarkar.... Even we non S…', 'neutral', 0, 'mat_jane_de_yar ', '#gobackmodi ', 'Sarath', 'http://pbs.twimg.com/profile_images/979660166600654848/0Hm0wQ3W_normal.jpg', 'Vande Mataram', '', ''),
(815, '2019-02-09 19:48:37', 'RT @umakantsingh_IN: @ndtv Whether Bengal, Uttar Pradesh, Maharashtra,Jammu & Kashmir, Assam,Meghalaya, Telangana or any other state,all pa…', 'neutral', 0, 'umakantsingh_IN ndtv ', '', 'Prasad bobburi', 'http://pbs.twimg.com/profile_images/1005843813422673920/Ak-FR9Y4_normal.jpg', 'Mumbai, India', '', ''),
(816, '2019-02-09 19:48:36', 'RT @mohan_vinoth: Modi now , on seeing tweets bearing #GoBackModi tag 😂🖕🻠https://t.co/oWfCY5dzy0', 'positive', 0, 'mohan_vinoth ', '#gobackmodi ', 'PP Dhasan', 'http://pbs.twimg.com/profile_images/774652725724188672/4nDtpcn4_normal.jpg', 'Trichy', '', ''),
(817, '2019-02-09 19:48:35', 'RT @t_d_h_nair: B J P horse trading attempts in Karanataka: Transcript of the alleged telephone conversation of B S Yeddyurappa and other s…', 'neutral', 0, 't_d_h_nair ', '', 'Daredevil.', 'http://pbs.twimg.com/profile_images/1083045354675683328/Pdpgk6VV_normal.jpg', 'Kolkata, West Bengal', '', ''),
(818, '2019-02-09 19:48:34', 'Talking about Anna or Modi? 🤔\n#GoBackModi https://t.co/esbU0mPTYq', 'neutral', 0, '', '#gobackmodi ', 'Sanghamitra', 'http://pbs.twimg.com/profile_images/1090852126203437057/FkmfEoQx_normal.jpg', 'Mumbai, India', '', ''),
(819, '2019-02-09 19:48:33', 'RT @rishibagree: BJP will win 272+ only if it replace many of its useless sitting MPs who hardly work on ground but reached Parliament due…', 'neutral', 0, 'rishibagree ', '', 'Abinav Pandit', 'http://pbs.twimg.com/profile_images/595871612823535616/v6zuK1WJ_normal.jpg', 'Mumbai, India', '', ''),
(820, '2019-02-09 19:48:33', '@ashokgehlot51 Rahul is copy cat. He just copies what great PM Modi ji is doing. We can not trust Rahul. #CongressMuktBharat', 'neutral', 0, 'ashokgehlot51 ', '#congressmuktbharat ', 'सही बात है', 'http://pbs.twimg.com/profile_images/840316370227154945/-vXWCcXC_normal.jpg', 'Mumbai, India', '', ''),
(821, '2019-02-09 19:48:30', 'RT @anandraja509: #TNWelcomesModi\n\nWe people are tweeting here without worrying about data consumed because of his digital india policy and…', 'neutral', 0, 'anandraja509 ', '#tnwelcomesmodi ', 'Anand', 'http://pbs.twimg.com/profile_images/1093080269328834561/ISeHtSkk_normal.jpg', 'Mumbai, India', '', ''),
(822, '2019-02-09 19:48:25', 'RT @erbmjha: Rahul Gandhi completely exposed Narendra Modi on Rafale deal. Please RT & Spread :) https://t.co/j7Eqh7NuWA', 'neutral', 0, 'erbmjha ', '', 'Deraj Choudhary', 'http://pbs.twimg.com/profile_images/1079512728547381248/QkCWHf27_normal.jpg', 'Jaipur, India', '', ''),
(823, '2019-02-09 19:48:25', 'RT @KPetchiselvam: #TNWelcomesModi once again twitter proves its Congress marketing agency. Twitter is promoting anti Modi hastag. https://…', 'neutral', 0, 'KPetchiselvam ', '#tnwelcomesmodi ', 'Anand', 'http://pbs.twimg.com/profile_images/1093080269328834561/ISeHtSkk_normal.jpg', 'Mumbai, India', '', ''),
(824, '2019-02-09 19:48:23', 'RT @KirronKherBJP: A 48-yr-old man who can not write a condolence message on his own, is claiming to “figure out†@narendramodi? Modi, a se…', 'negative', 0, 'KirronKherBJP narendramodi ', '', 'Modified Dinesh', 'http://pbs.twimg.com/profile_images/1091754011110313986/rp_HXrj__normal.jpg', 'Mumbai, India', '', ''),
(825, '2019-02-09 19:48:21', 'RT @arunjaitley: Prime Minister Narendra Modi’s reply in Parliament is a Report Card of the Government’s Five Year Performance. @narendramo…', 'neutral', 0, 'arunjaitley ', '', 'Nitish sharma', 'http://pbs.twimg.com/profile_images/678457874096328705/sk3wSJrI_normal.jpg', 'Mumbai,Maharashtra,India ', '', ''),
(826, '2019-02-09 19:48:18', 'RT @amritabhinder: Its terribly sad that we’re at a stage in India where even someone as committed & as clean as a whistle, PM Modi needs 2…', 'neutral', 0, 'amritabhinder ', '', 'D Pushpendra', 'http://pbs.twimg.com/profile_images/1006040065594810369/94pkcQxb_normal.jpg', 'Bhilai, India', '', ''),
(827, '2019-02-09 19:48:18', 'RT @KShyrush: #RahulKaBaapChorHai papoo k liye special ...#MODI AGAIN..... https://t.co/Q9Wy5OxLav', 'positive', 0, 'KShyrush ', '#rahulkabaapchorhai #modi ', 'D Nebhnani!', 'http://pbs.twimg.com/profile_images/1093129888674922496/HKDbli7W_normal.jpg', 'Mumbai, India', '', ''),
(828, '2019-02-09 19:48:15', 'Modi is King of lies\n#GoBackModi', 'neutral', 0, '', '#gobackmodi ', 'Safeer', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(829, '2019-02-09 19:48:15', 'RT @KirronKherBJP: A 48-yr-old man who can not write a condolence message on his own, is claiming to “figure out†@narendramodi? Modi, a se…', 'negative', 0, 'KirronKherBJP narendramodi ', '', 'Atindra Shukla🇮🇳', 'http://pbs.twimg.com/profile_images/1040798946124156928/TguhXhWv_normal.jpg', 'India', '', ''),
(830, '2019-02-09 19:48:14', '@anandraja509 Yes we Love Modi ji', 'positive', 0, 'anandraja509 ', '', 'Vj Balaji', 'http://pbs.twimg.com/profile_images/1093154060830556161/e7ebNhQt_normal.jpg', 'Mumbai, India', '', ''),
(831, '2019-02-09 19:48:13', '@noconversion @RahulGandhi Besides eerything else Modi is aged than RaGa. RaGa should talk like a Party president n… https://t.co/5WpymHWig7', 'positive', 0, 'noconversion RahulGandhi ', '', '☇Amrit अमृत 🇮🇳', 'http://pbs.twimg.com/profile_images/1038473772049649664/gnmM0bsD_normal.jpg', 'Bharat !', '', ''),
(832, '2019-02-09 19:48:11', 'RT @RomeshNadir: PM Modi unlike past PMs took a hard look at internal security. : ahttps://the-pulse.in/candidate-modi-took-a-hard-line-on…', 'negative', 0, 'RomeshNadir ', '', 'Ravin Trakru', 'http://pbs.twimg.com/profile_images/1003178141848752128/lExOHZlE_normal.jpg', 'India', '', ''),
(833, '2019-02-09 19:48:09', 'RT @rssurjewala: ‘Deliberate Lies’ & ‘Spins’ of Modi Govt Nailed!!\n\nFin Adviser,Defence Services (uptil May 2016)exposes Modi Govt on #Rafa…', 'neutral', 0, 'rssurjewala ', '', 'Krishanjhully INC', 'http://pbs.twimg.com/profile_images/1087179944382259200/4n_GvQr0_normal.jpg', 'हरियाणा, à¤à¤¾à¤°à¤¤', '', ''),
(834, '2019-02-09 19:48:09', 'RT @sanjayuvacha: All those people who say that it is Modi-hate that drives some persons, my response is \"Modi will go some day, but I will…', 'neutral', 0, 'sanjayuvacha ', '', 'riazshq', 'http://pbs.twimg.com/profile_images/928601579221118977/bRfVGcpn_normal.jpg', 'Mumbai, India', '', ''),
(835, '2019-02-09 19:48:07', 'RT @INCIndia: In the heat & light of the defence of the interference by the PMO in the Rafale deal, we must not forget two simple facts.…', 'neutral', 0, 'INCIndia ', '', 'Hajeeth Basha', 'http://pbs.twimg.com/profile_images/1051923792279162880/KOhaLlw7_normal.jpg', 'Mumbai, India', '', ''),
(836, '2019-02-09 19:48:07', 'RT @MinhazMerchant: Dear â¦@RahulGandhiâ©, Qatari Air Force paid Rs 1,875 crore for fully loaded #Rafale jet in 2015. Indian Air Force is pay…', 'neutral', 0, 'MinhazMerchant RahulGandhi ', '#rafale ', 'Vikramjit P Datta', 'http://pbs.twimg.com/profile_images/1070745650298531841/zFlwwZYH_normal.jpg', 'Pune Maharashtra. India', '', ''),
(837, '2019-02-09 19:48:01', 'RT @RatanSharda55: I have walked out if @republic debate on #TwitterInsultsIndia. Republic must learn to rein in mindless shouting panelist…', 'neutral', 0, 'RatanSharda55 republic ', '#twitterinsultsindia ', 'Surendar Reddy Jakka', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(838, '2019-02-09 19:48:00', 'RT @narendramodi177: Retweet If You Want Modi Again. \n#TNWelcomesModi https://t.co/5s1cj8L3E0', 'neutral', 0, 'narendramodi177 ', '#tnwelcomesmodi ', 'Malay Kumar Samal', 'http://pbs.twimg.com/profile_images/1060461529445715968/QpocvcUj_normal.jpg', 'Mumbai, India', '', ''),
(839, '2019-02-09 19:47:56', 'RT @PradyotManikya: Seeing black balloons over the iconic Ujayanta Palace while Narendra Modi addresses the public at the Astabal Ground .…', 'neutral', 0, 'PradyotManikya ', '', '[email protected]', 'http://pbs.twimg.com/profile_images/1082108581451886594/4XpAc68F_normal.jpg', 'Mumbai, India', '', ''),
(840, '2019-02-09 19:47:53', 'RT @saini1503: This merger is nothing but a scam of hiding the misdeeds of BoB and Dena bank done by direction of Government of Gujrat - ak…', 'neutral', 0, 'saini1503 ', '', 'Pooja Saini', 'http://pbs.twimg.com/profile_images/1052557532659499014/rjqycE3M_normal.jpg', 'Indore, India', '', ''),
(841, '2019-02-09 19:47:50', 'RT @HaftaWasooli: North East is agitated with Citizenship Bill. Modi is shown black flags. But the great dictator will be seen blabbering l…', 'positive', 0, 'HaftaWasooli ', '', 'RSITM â€â€Žâ€Žâ€Žâ€ŽØ¢Ø± یس آئ ٹریڈ ماستر', 'http://pbs.twimg.com/profile_images/1075937050745061376/j5I1AyTt_normal.jpg', 'Mumbai, India', '', ''),
(842, '2019-02-09 19:47:50', '@ndtv Whether Bengal, Uttar Pradesh, Maharashtra,Jammu & Kashmir, Assam,Meghalaya, Telangana or any other state,all… https://t.co/jHPdvGRBVF', 'neutral', 5, 'ndtv ', '', 'Uma Kant Singh', 'http://pbs.twimg.com/profile_images/604009481354129408/bWADtwPN_normal.jpg', 'New Delhi', '', ''),
(843, '2019-02-09 19:47:44', 'RT @Srikant2019: Vijayawada to airport route full of\n#GoBackModi banners 😂😂😂\n\nOnly shameless character like modi can continue his planned…', 'positive', 0, 'Srikant2019 ', '#gobackmodi ', 'sankar', 'http://pbs.twimg.com/profile_images/677096105692278785/vJUsdVbY_normal.jpg', 'காரைகà¯à®•à¯à®Ÿà®¿', '', ''),
(844, '2019-02-09 19:47:44', '@PlsToAvoid @Sand_In_Deed @BollywoodGandu Are you sure? I Know of multiple 13 years old who would be able to tell y… https://t.co/17DCLyI8oD', 'negative', 0, 'PlsToAvoid Sand_In_Deed BollywoodGandu ', '', 'Dharm Pravartak Mahendra', 'http://pbs.twimg.com/profile_images/979080533018750976/P1B7Q5Nq_normal.jpg', 'Lucknow', '', ''),
(845, '2019-02-09 19:47:42', 'RT @padhalikha: n 2014 LS elections, \nMamta got 2 cr votes in Bengal (44%) \nBJP got 74 lakh votes (16%) \n\nSince 2014, Modi have given 7…', 'neutral', 0, 'padhalikha ', '', 'Media BS Detector', 'http://pbs.twimg.com/profile_images/1088369887381057536/MTwTOVP6_normal.jpg', 'India and US', '', ''),
(846, '2019-02-09 19:47:40', 'RT @mohan_vinoth: Modi now , on seeing tweets bearing #GoBackModi tag 😂🖕🻠https://t.co/oWfCY5dzy0', 'positive', 0, 'mohan_vinoth ', '#gobackmodi ', 'Mc.Balu', 'http://pbs.twimg.com/profile_images/1090314182946258944/PXPaGKs8_normal.jpg', 'Mumbai, India', '', ''),
(847, '2019-02-09 19:47:38', 'RT @NationWantsNaMo: Did @narendramodi fulfill his promises?\n\nFive year report card of Narendra Modi. \n\n#NationWantsNamo https://t.co/yvWLH…', 'neutral', 0, 'NationWantsNaMo narendramodi ', '#nationwantsnamo ', 'Sakul Gupta', 'http://pbs.twimg.com/profile_images/444985851408183296/90AueVta_normal.jpeg', 'Mumbai, India', '', ''),
(848, '2019-02-09 19:47:38', 'RT @bprerna: How artists are celebrated in this country under Modi’s rule. https://t.co/2SHvlmH4mX', 'positive', 0, 'bprerna ', '', 'Globalist', 'http://pbs.twimg.com/profile_images/732068990198022144/Ksu2urU__normal.jpg', 'Mumbai, India', '', ''),
(849, '2019-02-09 19:47:38', 'RT @patil_prashanth: @rose_k01 @narendramodi Cho was great man. He was very intelligent. His political views were strong and correct. He wa…', 'positive', 0, 'patil_prashanth rose_k01 narendramodi ', '', 'Inder Gopal', 'http://pbs.twimg.com/profile_images/1078960214039248896/QcHfm0J-_normal.jpg', 'New Delhi, India', '', ''),
(850, '2019-02-09 19:47:37', 'RT @narendramodi177: Retweet If You Want Modi Again. \n#TNWelcomesModi https://t.co/5s1cj8L3E0', 'neutral', 0, 'narendramodi177 ', '#tnwelcomesmodi ', 'LaKsHyA D AdVaNi', 'http://pbs.twimg.com/profile_images/1065676921894141952/RwNMP3Eb_normal.jpg', 'Mumbai, India', '', ''),
(851, '2019-02-09 19:47:35', 'RT @MinhazMerchant: Dear â¦@RahulGandhiâ©, Qatari Air Force paid Rs 1,875 crore for fully loaded #Rafale jet in 2015. Indian Air Force is pay…', 'neutral', 0, 'MinhazMerchant RahulGandhi ', '#rafale ', 'Guddu', 'http://pbs.twimg.com/profile_images/674277381863960577/RU3Wcdvn_normal.jpg', 'Mumbai, India', '', ''),
(852, '2019-02-09 19:47:32', 'PM Modi unlike past PMs took a hard look at internal security. : ahttps://the-pulse.in/candidate-modi-took-a-hard-… https://t.co/e7eZ8l5dR9', 'negative', 1, '', '', 'RomeshNadir🇮🇳', 'http://pbs.twimg.com/profile_images/1067041339915685890/kDO2YpOF_normal.jpg', ' California.', '', ''),
(853, '2019-02-09 19:47:32', 'RT @OpIndia_com: \"Apart from politics, we have been attracted to Modi for his love towards the nation and he had made every Indian proud in…', 'positive', 0, 'OpIndia_com ', '', 'Manish Gupta', 'http://pbs.twimg.com/profile_images/987921679732092928/YTDQl1Ft_normal.jpg', 'New York, USA', '', ''),
(854, '2019-02-09 19:47:30', 'RT @cpimspeak: CPIM and Left parties take out #GoBackModi protests in Guntur, Andhra Pradesh. On 10th, PM Modi is schedule to visit Guntur.…', 'neutral', 0, 'cpimspeak ', '#gobackmodi ', 'Achinth Gurkhi', 'http://pbs.twimg.com/profile_images/845092452776079360/Gcuz28mA_normal.jpg', 'India', '', ''),
(855, '2019-02-09 19:47:30', 'RT @JustKno62970745: #TNWelcomesModi We love Modi Ji. Constructor Of Modern India', 'positive', 0, 'JustKno62970745 ', '#tnwelcomesmodi ', 'Anand', 'http://pbs.twimg.com/profile_images/1093080269328834561/ISeHtSkk_normal.jpg', 'Mumbai, India', '', ''),
(856, '2019-02-09 19:47:29', '@ndtv tell them smelly rat @narendramodi i am chutiya _______ banane wala hu give me more 5Years coward modi', 'negative', 0, 'ndtv narendramodi ', '', 'riazshq', 'http://pbs.twimg.com/profile_images/928601579221118977/bRfVGcpn_normal.jpg', 'Mumbai, India', '', ''),
(857, '2019-02-09 19:47:28', '@adgpi @PMOIndia @PIB_India @SpokespersonMoD @HQ_IDS_India Good job Modi Ji', 'positive', 0, 'adgpi PMOIndia PIB_India SpokespersonMoD HQ_IDS_India ', '', 'ram anuj tiwari', 'http://pbs.twimg.com/profile_images/1067398305024540673/YFYxyeZO_normal.jpg', 'Delhi', '', ''),
(858, '2019-02-09 19:47:27', 'RT @go_backmodi: 35 lakh jobs lost due to DEMONetisation !\n\nUPA Govt provided a golden opportunity to youngsters with its progressive polic…', 'neutral', 0, 'go_backmodi ', '', 'Ria', 'http://pbs.twimg.com/profile_images/1077926160556802048/_8SHvFXS_normal.jpg', 'Warden Road Area, Mumbai', '', ''),
(859, '2019-02-09 19:47:27', 'RT @Pushpa83105: Even the children were also cheated by Modi. \n#GoBackModi. https://t.co/BLXjwnineO', 'neutral', 0, 'Pushpa83105 ', '#gobackmodi ', 'Common Man', 'http://pbs.twimg.com/profile_images/1021749123936993280/kf_E8ajY_normal.jpg', 'Eluru, India', '', ''),
(860, '2019-02-09 19:47:26', 'RT @SikshaUtkarsh: #Andhra #AndhraPradesh will NEVER welcome the corrupt Modi #GoBackModi #VoteBJPOut', 'neutral', 0, 'SikshaUtkarsh ', '#andhra #andhrapradesh #gobackmodi #votebjpout ', 'Surya_versatile King', 'http://pbs.twimg.com/profile_images/1079820544646627328/TeczawUN_normal.jpg', 'Mumbai, India', '', ''),
(861, '2019-02-09 19:47:24', 'RT @prasannavishy: Stunning scale of charity. Kudos to everyone behind this initiative @TVMohandasPai \nPM Modi To Serve ISKCON Affiliate Ak…', 'positive', 0, 'prasannavishy TVMohandasPai ', '', 'AnthargAmi', 'http://pbs.twimg.com/profile_images/821938742432702465/Cfturk6z_normal.jpg', 'Mumbai, India', '', ''),
(862, '2019-02-09 19:47:23', 'RT @bainjal: If you believe that Modi threw all procedure under a bus & picked Anil Ambani on merit as an offsets partner in #RafaleDeal th…', 'positive', 0, 'bainjal ', '#rafaledeal ', 'johar', 'http://pbs.twimg.com/profile_images/967433896139902976/qFoM922u_normal.jpg', 'Mumbai, India', '', ''),
(863, '2019-02-09 19:47:23', 'RT @Hariindic: #GoBackModi with 82K tweets, is trending at number # 1 in India.\n\nWhile #TNWelcomesModi with 359K tweets, has been pushed to…', 'neutral', 0, 'Hariindic ', '#gobackmodi #tnwelcomesmodi ', 'Shailendra Singh', 'http://pbs.twimg.com/profile_images/799917687249911808/OtiQj8kv_normal.jpg', 'बैंगलà¥à¤°à¥, à¤à¤¾à¤°à¤¤', '', ''),
(864, '2019-02-09 19:47:23', 'RT @AutoRaja12: The senseless execution of demonetisation cost us Rs 3 lakh crore in GDP growth and wiped out over 25 lakh jobs, while a ha…', 'neutral', 0, 'AutoRaja12 ', '', 'mohamed firthous', 'http://pbs.twimg.com/profile_images/960460228591468544/HAc_zCPB_normal.jpg', 'Dindigul, India', '', ''),
(865, '2019-02-09 19:47:22', 'RT @RamHindu6: #TNWelcomesModi \n#DMKFails Irony is that no one looks at the data which is relevant for the country. What they say is Modi…', 'neutral', 0, 'RamHindu6 ', '#tnwelcomesmodi #dmkfails ', 'Rajeev', 'http://pbs.twimg.com/profile_images/1074695565773021184/OL6W5k8k_normal.jpg', 'Kerala, India', '', ''),
(866, '2019-02-09 19:47:22', 'RT @KirronKherBJP: A 48-yr-old man who can not write a condolence message on his own, is claiming to “figure out†@narendramodi? Modi, a se…', 'negative', 0, 'KirronKherBJP narendramodi ', '', 'JaiHindNationFirst🇮🇳', 'http://pbs.twimg.com/profile_images/1063856022035427328/3ThXKAyR_normal.jpg', 'Bangalore, India', '', '');
INSERT INTO `posts` (`id`, `posted`, `text`, `sentiment`, `count`, `usermentions`, `tags`, `username`, `imageurl`, `location`, `keyword`, `relevant`) VALUES
(867, '2019-02-09 19:47:21', 'RT @tisaiyan: A New Congress Lie on Rafale Busted- ‘Defense Officer Punished by Modi Government’ https://t.co/mBYal7421F via @the_truepictu…', 'neutral', 0, 'tisaiyan ', '', 'Rajan Tiwari', 'http://pbs.twimg.com/profile_images/1075691696824868864/BWx6rN23_normal.jpg', 'India', '', ''),
(868, '2019-02-09 19:47:20', 'RT @SunitaT39819396: Black Baloon were flown against Citizenship amendment bill during the visite of Prime Minister Mr.Narendra Modi at Ita…', 'neutral', 0, 'SunitaT39819396 ', '', '[email protected]', 'http://pbs.twimg.com/profile_images/1082108581451886594/4XpAc68F_normal.jpg', 'Mumbai, India', '', ''),
(869, '2019-02-09 19:47:20', 'RT @Sunil_Deodhar: One who talks about democracy in rest of India has murdered democracy in his own state.\n\nYes the name is ‘Chanda’ Babu.…', 'positive', 0, 'Sunil_Deodhar ', '', 'Krish Maheshwari🇮🇳', 'http://pbs.twimg.com/profile_images/966289554503118848/NBT3grlE_normal.jpg', 'Agra ✈Gwalior ✈Delhi✈Pune', '', ''),
(870, '2019-02-09 19:47:17', 'RT @SBJadejaBJP: Lie No.3: #LiarRahul claimed that a senior officer at MoD was ‘punished’ by Modi govt for submitting a dissent note on Raf…', 'negative', 0, 'SBJadejaBJP ', '#liarrahul ', 'Rajan Tiwari', 'http://pbs.twimg.com/profile_images/1075691696824868864/BWx6rN23_normal.jpg', 'India', '', ''),
(871, '2019-02-09 19:47:16', 'RT @im_saiganesh: INC ruled India for majority of 70 years and Tamil Nadu got just 52% toilet coverage till 2014.\n\nModi made it 100% in jus…', 'neutral', 0, 'im_saiganesh ', '', 'LaKsHyA D AdVaNi', 'http://pbs.twimg.com/profile_images/1065676921894141952/RwNMP3Eb_normal.jpg', 'Mumbai, India', '', ''),
(872, '2019-02-09 19:47:16', 'RT @padhalikha: Sonia gave coal worth 1.86 lakh cr to 10 Industrialists. \nModi gave cylinders to 6 cr women! \n\nSonia & co opened accounts i…', 'neutral', 0, 'padhalikha ', '', 'Media BS Detector', 'http://pbs.twimg.com/profile_images/1088369887381057536/MTwTOVP6_normal.jpg', 'India and US', '', ''),
(873, '2019-02-09 19:47:12', 'RT @ashoswai: Modi’s sand castle in the Northeast is collapsing like anything! https://t.co/uztc4n1BVK', 'positive', 0, 'ashoswai ', '', 'Stonedwashed', 'http://pbs.twimg.com/profile_images/880648554909401088/x9DZX1uL_normal.jpg', 'Johannesburg - South Africa', '', ''),
(874, '2019-02-09 19:47:11', 'RT @mohan_vinoth: Modi now , on seeing tweets bearing #GoBackModi tag 😂🖕🻠https://t.co/oWfCY5dzy0', 'positive', 0, 'mohan_vinoth ', '#gobackmodi ', 'mohamed firthous', 'http://pbs.twimg.com/profile_images/960460228591468544/HAc_zCPB_normal.jpg', 'Dindigul, India', '', ''),
(875, '2019-02-09 19:47:11', 'RT @BJP4India: Lie No.3: #LiarRahul claimed that a senior officer at MoD was ‘punished’ by Modi govt for submitting a dissent note on Rafal…', 'negative', 0, 'BJP4India ', '#liarrahul ', 'Rajan Tiwari', 'http://pbs.twimg.com/profile_images/1075691696824868864/BWx6rN23_normal.jpg', 'India', '', ''),
(876, '2019-02-09 19:47:08', 'RT @ashoswai: Modi has turned Kashmir to a Killing Field:\nYear----- Number of Deaths\n2014-----188\n2015-----178\n2016-----267\n2017-----354\n20…', 'negative', 0, 'ashoswai ', '', 'Basavaraj Hirur', 'http://pbs.twimg.com/profile_images/1057927175008145408/bRZDJVKl_normal.jpg', 'Mumbai, India', '', ''),
(877, '2019-02-09 19:47:08', '@gimmydowns @SuryahSG Rice bags and Dumeels feel Modi has no impact in TN, but are tweeting and trending the whole… https://t.co/gWmQ5b57zF', 'negative', 0, 'gimmydowns SuryahSG ', '', 'nithya4india', 'http://pbs.twimg.com/profile_images/1022901990446092289/CDaXjckq_normal.jpg', 'Mumbai, India', '', ''),
(878, '2019-02-09 19:47:07', 'RT @desimojito: Modi’s 2019 campaign gets a big boost! Swiss banks show India winning Black money battle. Wow just wow. Ab ki baar 400 paar…', 'positive', 0, 'desimojito ', '', 'Suraj Raikwar', 'http://pbs.twimg.com/profile_images/1092032345157169152/BdcxOeG4_normal.jpg', 'Indore, India', '', ''),
(879, '2019-02-09 19:47:07', 'RT @TimesNow: 24 hours after PM Modi inaugurated the circuit bench in Jalpaiguri, West Bengal; Sources say the state government has decided…', 'neutral', 0, 'TimesNow ', '', 'Dr Abhinav Tripathi', 'http://pbs.twimg.com/profile_images/582211193114259456/kfqEp3Qm_normal.jpg', 'Rajendra Nagar, Gorakhpur', '', ''),
(880, '2019-02-09 19:47:06', '#TNWelcomesModi once again twitter proves its Congress marketing agency. Twitter is promoting anti Modi hastag. https://t.co/FUE85uuWMI', 'neutral', 1, '', '#tnwelcomesmodi ', 'K.PETCHISELVAM', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(881, '2019-02-09 19:47:02', 'RT @pokershash: See this video to know who is playing with institutions. Everything that opposition blame Modi for, is being practiced by o…', 'neutral', 0, 'pokershash ', '', 'Sanskari♠', 'http://pbs.twimg.com/profile_images/1093910978079539200/I5ITH8DE_normal.jpg', 'Mumbai, India', '', ''),
(882, '2019-02-09 19:47:00', 'RT @HLKodo: saw some movie Handel trending against Modi but this is the reply for those #TNWelcomesModi ðŸ‘ðŸ‘💪 https://t.co/ETY1D5eCV9', 'neutral', 0, 'HLKodo ', '#tnwelcomesmodi ', 'Kadaram Kondan', 'http://pbs.twimg.com/profile_images/1093433069044932609/YeRzrVcJ_normal.jpg', 'Mumbai, India', '', ''),
(883, '2019-02-09 19:43:55', 'Citizenship bill will not cause any harm to Assam: PM Modi ', 'negative', 1, '', '', 'newsbot_', '', 'Mumbai, India', '', ''),
(884, '2019-02-09 19:31:27', '[IN] - India rebuts China on Modi’s visit to Arunachal | The Hindu ', 'neutral', 1, '', '', 'AutoNewspaperAdmin', '', 'Mumbai, India', '', ''),
(885, '2019-02-09 19:31:26', '[IN] - Modi’s visit to Tamil Nadu raises expectation of alliance | The Hindu ', 'neutral', 1, '', '', 'AutoNewspaperAdmin', '', 'Mumbai, India', '', ''),
(886, '2019-02-09 19:22:45', '[IN] - In Assam, PM Modi Has A Message For Local Media On Covering Development | NDTV ', 'neutral', 1, '', '', 'AutoNewspaperAdmin', '', 'Mumbai, India', '', ''),
(887, '2019-02-09 19:22:43', '[IN] - Tripura To Become Gateway Of Southeast Asian Countries, Says PM Modi | NDTV ', 'neutral', 1, '', '', 'AutoNewspaperAdmin', '', 'Mumbai, India', '', ''),
(888, '2019-02-09 20:06:24', 'RT @EconomicTimes: PM @narendramodi laid the foundation stone of North East Gas Grid which will ensure uninterrupted availability of natura…', 'neutral', 0, 'EconomicTimes narendramodi ', '', 'Shivika', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(889, '2019-02-09 20:06:21', 'RT @SavingOurSoul: Chowkidar n Gang is weakening d States n Constitutional institutions.\n\nModi is coming to witness d injustice that was do…', 'neutral', 0, 'SavingOurSoul ', '', 'mohammad hanif', 'http://pbs.twimg.com/profile_images/1058832142048751617/6cN6178e_normal.jpg', 'mumbai', '', ''),
(890, '2019-02-09 20:06:21', 'RT @SuryahSG: Let people with agenda spread their canards. Do independent research on previous regimes especially DMK + Congress 2004 - 201…', 'positive', 0, 'SuryahSG ', '', 'veera 🇮🇳', 'http://pbs.twimg.com/profile_images/1092835511503212544/5uN_Vgp__normal.jpg', 'Mumbai, India', '', ''),
(891, '2019-02-09 20:06:16', 'Welcome modi', 'positive', 0, '', '', 'Resigesh', 'http://pbs.twimg.com/profile_images/1093054331207602176/JPTFqruJ_normal.jpg', 'Mumbai, India', '', ''),
(892, '2019-02-09 20:06:15', 'The kind of partisan poison being fed to kids today. This is the ICSE 10th class textbook for civics - it also cont… https://t.co/mt94XJjxzg', 'positive', 0, '', '', 'پرندوں کی نظر', 'http://pbs.twimg.com/profile_images/1087595755991453696/_ktBeeQ0_normal.jpg', 'Mumbai, India', '', ''),
(893, '2019-02-09 20:06:14', 'RT @Ramesh_BJP: #TNWelcomesModi \n#DMKFails \nEvery time PM Modi visits TN, the 2G beneficiaries gets jittery and use the bots to intimidate.…', 'neutral', 0, 'Ramesh_BJP ', '#tnwelcomesmodi #dmkfails ', 'N âš• T H âš• S H 7ï¸âƒ£ 7ï¸âƒ£ 7ï¸âƒ£', 'http://pbs.twimg.com/profile_images/1089452836004421633/G7S_KGCB_normal.jpg', 'SIVAGANGA~PUDUKOTTAI~ RAMNAD', '', ''),
(894, '2019-02-09 20:06:13', '#ModiUnstoppable @TajinderBagga @DrGPradhan \n\nThe Disrespectful Tag of Level 4 employees of Indian Railways, “Safai… https://t.co/3li6v5jBtK', 'neutral', 0, 'TajinderBagga DrGPradhan ', '#modiunstoppable ', '★ Shreya.. ★', 'http://pbs.twimg.com/profile_images/1092135891944919040/aw_XVnnR_normal.jpg', 'Singapore', '', ''),
(895, '2019-02-09 20:06:13', 'RT @pbhushan1: No doubt that Priyanka will defeat Modi from Varanasi as a joint opposition candidate. If she is put up as a joint candidate…', 'neutral', 0, 'pbhushan1 ', '', 'Shakeel Ahmed', 'http://pbs.twimg.com/profile_images/457354549766799360/d4mlsUXh_normal.jpeg', 'Mumbai, India', '', ''),
(896, '2019-02-09 20:06:13', 'RT @venki_rv: Tiruppur getting ready to welcome our honourable PM Shri.Narendra Modi ji. \n\n#TNWelcomesModi https://t.co/MberluNK2r', 'positive', 0, 'venki_rv ', '#tnwelcomesmodi ', 'Vignesh Balaji', 'http://pbs.twimg.com/profile_images/1315629839/240_normal.jpg', 'Coimbatore, Tamilnadu, India', '', ''),
(897, '2019-02-09 20:06:12', 'RT @rachitseth: Under Modi, Insurgency is being revived in Assam. \n\nDo you know that under Congress-UPA\n\nA number of militant outfits suspe…', 'neutral', 0, 'rachitseth ', '', 'suresh jain', 'http://pbs.twimg.com/profile_images/669760369624113152/kSO47GoL_normal.png', 'chennai india', '', ''),
(898, '2019-02-09 20:06:12', 'RT @mohan_vinoth: Modi now , on seeing tweets bearing #GoBackModi tag 😂🖕🻠https://t.co/oWfCY5dzy0', 'positive', 0, 'mohan_vinoth ', '#gobackmodi ', 'Pradeep', 'http://pbs.twimg.com/profile_images/1063471826632724480/ykvY0uWZ_normal.jpg', 'Mumbai, India', '', ''),
(899, '2019-02-09 20:06:11', 'RT @yarlagaddavrao: Modi deceived people of AP on Special Status/Package #GoBackModi', 'positive', 0, 'yarlagaddavrao ', '#gobackmodi ', 'Lokesh Alikapati', 'http://pbs.twimg.com/profile_images/1081443912248483841/-TDxjFI5_normal.jpg', 'Chittoor', '', ''),
(900, '2019-02-09 20:06:10', 'RT @VinayDokania: Kharge to PM Modi: You came to power by making false promises and you are still lying https://t.co/zK4R4A5vZh', 'neutral', 0, 'VinayDokania ', '', 'IMA', 'http://pbs.twimg.com/profile_images/691689811401265152/ffGmAaxe_normal.png', 'India & GCC', '', ''),
(901, '2019-02-09 20:06:10', 'RT @ani_digital: PM Narendra Modi pins hope on development work, Assam Accord to win the battle of ballots in northeast\n\nRead @ANI Story |…', 'neutral', 0, 'ani_digital ANI ', '', 'Avinash Dixit', 'http://pbs.twimg.com/profile_images/1054244000859807745/Nz2PGIJS_normal.jpg', 'Lucknow, India', '', ''),
(902, '2019-02-09 20:06:09', 'RT @Pushpa83105: Even the children were also cheated by Modi. \n#GoBackModi. https://t.co/BLXjwnineO', 'neutral', 0, 'Pushpa83105 ', '#gobackmodi ', 'Naresh', 'http://pbs.twimg.com/profile_images/979295342658076673/iLDdTf_y_normal.jpg', 'Mumbai, India', '', ''),
(903, '2019-02-09 20:06:06', '@HRajaBJP Half buses went to Tiruppur, Modi function... #bjp\nHEAVY TRAFFIC in TN... \n\nPeople Suffering Lot ðŸ˜\nதமிழà¯â€¦ https://t.co/lapYP1p9CK', 'neutral', 0, 'HRajaBJP ', '#bjp ', 'JK / Kannan J.', 'http://pbs.twimg.com/profile_images/1027086090727907328/1uOf00Br_normal.jpg', 'Salem', '', ''),
(904, '2019-02-09 20:06:03', 'RT @AutoRaja12: The senseless execution of demonetisation cost us Rs 3 lakh crore in GDP growth and wiped out over 25 lakh jobs, while a ha…', 'neutral', 0, 'AutoRaja12 ', '', 'GABBAR - BIHAD KA BAAGHI', 'http://pbs.twimg.com/profile_images/1093485437405065216/UHe_uk1b_normal.jpg', 'Mumbai, India', '', ''),
(905, '2019-02-09 20:06:03', 'RT @b4politics: We are Andhra people . We have Self respect . We reject Modi #GobackModi #MODIcheatedAP #APWITHCBN https://t.co/9OhhER03ze', 'negative', 0, 'b4politics ', '#gobackmodi #modicheatedap #apwithcbn ', 'Lokesh Alikapati', 'http://pbs.twimg.com/profile_images/1081443912248483841/-TDxjFI5_normal.jpg', 'Chittoor', '', ''),
(906, '2019-02-09 20:06:01', 'RT @AudaciousQuest_: Talking about Anna or Modi? 🤔\n#GoBackModi https://t.co/esbU0mPTYq', 'neutral', 0, 'AudaciousQuest_ ', '#gobackmodi ', 'A.S. Deesawala', 'http://pbs.twimg.com/profile_images/1079315768838246400/ZBwDDehj_normal.jpg', 'Injambakkam, Sholinganallur', '', ''),
(907, '2019-02-09 20:06:01', 'RT @rishibagree: This tweet of Arvind Kejriwal dates back to 2014\n\nModi not only lowered the gas price to 5.6 $/MMBTU from 8 dollars,he als…', 'negative', 0, 'rishibagree ', '', 'Sumod Kuhar', 'http://pbs.twimg.com/profile_images/845139862529323010/HQ9XF8BR_normal.jpg', 'Ghar', '', ''),
(908, '2019-02-09 20:05:59', '@divyaspandana Therefore All should vote for Modi Ji. Birds of a feather, drink tea together and vote for Modi as one India.', 'positive', 0, 'divyaspandana ', '', 'Rajat Rana', 'http://pbs.twimg.com/profile_images/1125299164/rr_normal.jpg', 'India', '', ''),
(909, '2019-02-09 20:05:58', 'RT @AudaciousQuest_: Talking about Anna or Modi? 🤔\n#GoBackModi https://t.co/esbU0mPTYq', 'neutral', 0, 'AudaciousQuest_ ', '#gobackmodi ', 'Anurag', 'http://pbs.twimg.com/profile_images/1093141948364337152/4GJGRjf9_normal.jpg', 'India', '', ''),
(910, '2019-02-09 20:05:58', '@sardesairajdeep Aur jab Incometax will raid your house then you will say Modi ji fascist.', 'neutral', 0, 'sardesairajdeep ', '', 'Rajendra M', 'http://pbs.twimg.com/profile_images/1059262667712577539/oRhy_O6R_normal.jpg', 'Mumbai, India', '', ''),
(911, '2019-02-09 20:05:56', 'RT @b4politics: Andhra rejects Modi #gobackmodi #ModiCheatedAP #APWithCBN https://t.co/OAYJUCvGCQ', 'neutral', 0, 'b4politics ', '#gobackmodi #modicheatedap #apwithcbn ', 'Lokesh Alikapati', 'http://pbs.twimg.com/profile_images/1081443912248483841/-TDxjFI5_normal.jpg', 'Chittoor', '', ''),
(912, '2019-02-09 20:05:56', 'RT @stonedwashed: #GoBackModi\nModi trying to hide from Rahul Gandhi https://t.co/vbjSaeFWjd', 'neutral', 0, 'stonedwashed ', '#gobackmodi ', 'அசà¯à®°à®©à¯', 'http://pbs.twimg.com/profile_images/1076834901293322240/pIYA1Bzz_normal.jpg', 'Mumbai, India', '', ''),
(913, '2019-02-09 20:05:55', 'RT @AudaciousQuest_: @timesofindia Vote for Congress. It will fulfil manifesto promises. Tell Modi to resign who never fulfilled a single e…', 'negative', 0, 'AudaciousQuest_ timesofindia ', '', 'Nonconformist', 'http://pbs.twimg.com/profile_images/1077026562451619846/r4Nz5YhR_normal.jpg', 'Achedin', '', ''),
(914, '2019-02-09 20:05:53', 'RT @b4politics: Modi go back .. you should bury your head in shame #gobackmodi #ModiCheatedAP #APWITHCBN https://t.co/hcGJmR8DUG', 'neutral', 0, 'b4politics ', '#gobackmodi #modicheatedap #apwithcbn ', 'Lokesh Alikapati', 'http://pbs.twimg.com/profile_images/1081443912248483841/-TDxjFI5_normal.jpg', 'Chittoor', '', ''),
(915, '2019-02-09 20:05:51', 'RT @venki_rv: Tiruppur getting ready to welcome our honourable PM Shri.Narendra Modi ji. \n\n#TNWelcomesModi https://t.co/MberluNK2r', 'positive', 0, 'venki_rv ', '#tnwelcomesmodi ', 'vicky thala', 'http://pbs.twimg.com/profile_images/1089365885901406208/1YTk-WB-_normal.jpg', 'Mumbai, India', '', ''),
(916, '2019-02-09 20:05:44', 'RT @aayeff1: Modi attacking Mamata in WB and says she dreams of becoming PM while she cant control violence in WB. Seriously? Modi is all…', 'neutral', 0, 'aayeff1 ', '', 'Rajesh Vivekanandan', 'http://pbs.twimg.com/profile_images/1044271982781489153/irZnGdid_normal.jpg', 'Chennai, India', '', ''),
(917, '2019-02-09 20:05:42', 'RT @kochattil: Narendra Modi government should release the name of the defence major which is behind this campaign against #Rafale being ru…', 'neutral', 0, 'kochattil ', '#rafale ', 'Atul Batra', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Gurgaon India', '', ''),
(918, '2019-02-09 20:05:37', '@ashokepandit @VORdotcom @Twitter Modi insults parliament regularly by leaving parliament earlier or not being pres… https://t.co/ljOWqGQ6Pl', 'negative', 0, 'ashokepandit VORdotcom Twitter ', '', 'Night King', 'http://pbs.twimg.com/profile_images/1093091252508205058/GPzgykWC_normal.jpg', 'Kolkata, India', '', ''),
(919, '2019-02-09 20:05:34', 'RT @alok_kumar_IN: The Present Government Always Take Decision In Favour of Our Country and Soldiers,\nSo, Modi Government Will Be Back in 2…', 'neutral', 0, 'alok_kumar_IN ', '', 'mahendra patel', 'http://pbs.twimg.com/profile_images/586702192490459136/5lrlpMYV_normal.jpg', 'Mumbai, India', '', ''),
(920, '2019-02-09 20:05:33', 'RT @timesofindia: Citizenship bill will never cause any harm to Assam, northeast: PM @narendramodi \n\nRead: https://t.co/UJYpFSt0Xx \n\n#Assam…', 'negative', 0, 'timesofindia narendramodi ', '#assam ', 'Intolerant Arvind', 'http://pbs.twimg.com/profile_images/673947663545462784/sDS5_vVK_normal.jpg', 'India', '', ''),
(921, '2019-02-09 20:05:33', 'RT @pokershash: See this video to know who is playing with institutions. Everything that opposition blame Modi for, is being practiced by o…', 'neutral', 0, 'pokershash ', '', 'ऋतà¥à¤°à¤¾à¤œðŸ‡®ðŸ‡³', 'http://pbs.twimg.com/profile_images/761188655960563712/DBHTIwHF_normal.jpg', 'Mumbai, India', '', ''),
(922, '2019-02-09 20:05:33', 'RT @Bachkani1: #TNWelcomesModi this is proof how TN love our PM shri @narendramodi ji \n\nAgain Pappu gone back on 4th position world wide po…', 'positive', 0, 'Bachkani1 narendramodi ', '#tnwelcomesmodi ', 'पीके Verमा', 'http://pbs.twimg.com/profile_images/1071017305558016002/7V1tWUuq_normal.jpg', 'Madhya Pradesh, India', '', ''),
(923, '2019-02-09 20:05:32', 'RT @sgurumurthy: Rafale issue is a YouToo campaign by Sonia Family to say Modi too is like them. The last bit of the lies has been exposed…', 'positive', 0, 'sgurumurthy ', '', 'यथारà¥à¤¥ யதாரà¯à®¤à¯à®¤', 'http://pbs.twimg.com/profile_images/1093009464825802752/fThmz2Mw_normal.jpg', 'Bharat', '', ''),
(924, '2019-02-09 20:05:28', 'RT @RituRathaur: Bozos trending Modi to go back are none else but the members of Vatic@n controlled Christi@n Church mafia in Tamil Nadu..t…', 'neutral', 0, 'RituRathaur ', '', '(((Pradeep)))', 'http://pbs.twimg.com/profile_images/768022593756475392/mJ2oChyC_normal.jpg', 'Bangalore', '', ''),
(925, '2019-02-09 20:05:23', 'RT @Sunil_Deodhar: Modi govt gave 5.56 Lakh Cr for the development of Andhra Pradesh which is 5 times more than what Congress had given.…', 'neutral', 0, 'Sunil_Deodhar ', '', 'Luffy', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(926, '2019-02-09 20:05:22', 'RT @stonedwashed: #GoBackModi\nModi trying to hide from Rahul Gandhi https://t.co/vbjSaeFWjd', 'neutral', 0, 'stonedwashed ', '#gobackmodi ', 'Surya_versatile King', 'http://pbs.twimg.com/profile_images/1079820544646627328/TeczawUN_normal.jpg', 'Mumbai, India', '', ''),
(927, '2019-02-09 20:05:21', 'RT @JantaKaReporter: Pro-BJP filmmaker Vivek Agnihotri left embarrassed after his Twitter poll gives huge advantage to Rahul Gandhi over Na…', 'neutral', 0, 'JantaKaReporter ', '', 'TrulyHuman', 'http://pbs.twimg.com/profile_images/453887683958300672/rkCCrqjj_normal.jpeg', 'Mumbai, India', '', ''),
(928, '2019-02-09 20:05:16', 'RT @VarunReddy969: Modi about Citizenship Amendment bill in Assam.\n\"Duty of India to protect such people\"\n\nOther than BJP,no other party in…', 'negative', 0, 'VarunReddy969 ', '', 'Bajirao I', 'http://pbs.twimg.com/profile_images/1089194050761252871/4AsfsqcA_normal.jpg', 'Mumbai, India', '', ''),
(929, '2019-02-09 20:05:14', 'RT @BairagyaBarun: #ForTheFirstTime\nIndia launched 104 satellites in one go and is now aiming for a manned space mission. This is an aspira…', 'positive', 0, 'BairagyaBarun ', '#forthefirsttime ', 'srikrish', 'http://pbs.twimg.com/profile_images/1031953472302678016/qQ7-xv4m_normal.jpg', 'Mumbai, India', '', ''),
(930, '2019-02-09 20:05:14', 'RT @rishibagree: BJP Helped Mamata - Mamata Backstabbed ABV\nBJP Helped TDP - Naidu backstabbed ABV\nBJP again Helped TDP - Naidu again backs…', 'neutral', 0, 'rishibagree ', '', 'feluda', 'http://pbs.twimg.com/profile_images/728280349432676352/S9SG24UO_normal.jpg', 'San Francisco', '', ''),
(931, '2019-02-09 20:05:13', 'RT @Hariindic: #GoBackModi with 82K tweets, is trending at number # 1 in India.\n\nWhile #TNWelcomesModi with 359K tweets, has been pushed to…', 'neutral', 0, 'Hariindic ', '#gobackmodi #tnwelcomesmodi ', 'soulkarma 🇮🇳', 'http://pbs.twimg.com/profile_images/675648611770699776/721etVXD_normal.jpg', 'Bangalore', '', ''),
(932, '2019-02-09 20:05:13', 'Protectors of chit fund fraudsters will not be spared, says PM Modi https://t.co/i79Knaun1h', 'negative', 0, '', '', 'UG OUTSOURCING', 'http://pbs.twimg.com/profile_images/3439233862/16f7964fc54166610d77ce1f2fdc5c8e_normal.png', 'india', '', ''),
(933, '2019-02-09 20:05:13', 'RT @alok_kumar_IN: The Present Government Always Take Decision In Favour of Our Country and Soldiers,\nSo, Modi Government Will Be Back in 2…', 'neutral', 0, 'alok_kumar_IN ', '', '#justiceforramalingam - கோபிநà¯à®¤à¯ 🇮🇳', 'http://pbs.twimg.com/profile_images/1093954441965797378/uF1-RXFi_normal.jpg', 'Chennai', '', ''),
(934, '2019-02-09 20:05:08', 'RT @IAnirbanG: Are the Go back Modi trenders Ashamed of the fact that #TNWelcomesModi has over 400k tweets, whereas they are still languish…', 'neutral', 0, 'IAnirbanG ', '#tnwelcomesmodi ', 'SATHYANANDAM', 'http://pbs.twimg.com/profile_images/890634306451718144/w15nX0y3_normal.jpg', 'Vellore,Tamil Nadu, India', '', ''),
(935, '2019-02-09 20:05:08', 'RT @im_saiganesh: INC ruled India for majority of 70 years and Tamil Nadu got just 52% toilet coverage till 2014.\n\nModi made it 100% in jus…', 'neutral', 0, 'im_saiganesh ', '', 'Sakul Gupta', 'http://pbs.twimg.com/profile_images/444985851408183296/90AueVta_normal.jpeg', 'Mumbai, India', '', ''),
(936, '2019-02-09 20:05:07', '@skalavjm Half buses went to Tiruppur, Modi function... #bjp\nHEAVY TRAFFIC in TN... \n\nPeople Suffering Lot ðŸ˜\nதமிழà¯â€¦ https://t.co/pS427uqNSc', 'neutral', 0, 'skalavjm ', '#bjp ', 'JK / Kannan J.', 'http://pbs.twimg.com/profile_images/1027086090727907328/1uOf00Br_normal.jpg', 'Salem', '', ''),
(937, '2019-02-09 20:05:06', '@IchbinUjjaini @SreenivasanJain @TwitterIndia Can you show what data is present on the @PRSLegislative page on Modi?', 'neutral', 0, 'IchbinUjjaini SreenivasanJain TwitterIndia PRSLegislative ', '', 'Janardhanan S🇮🇳', 'http://pbs.twimg.com/profile_images/792820236147892224/gGqfnF-T_normal.jpg', 'New Delhi, India', '', ''),
(938, '2019-02-09 20:05:03', 'RT @sgurumurthy: Rafale issue is a YouToo campaign by Sonia Family to say Modi too is like them. The last bit of the lies has been exposed…', 'positive', 0, 'sgurumurthy ', '', 'Amar Rajpal', 'http://pbs.twimg.com/profile_images/1094268068115697664/Vqf514OV_normal.jpg', 'Maharashtra, India', '', ''),
(939, '2019-02-09 20:05:00', 'RT @rkhuria: Modi can spend 300 cr to engineer defections in Karnataka. (16 MLAs*10 cr + 50 cr for speaker+ unspecified sum for Judges) Bu…', 'neutral', 0, 'rkhuria ', '', 'Alam Nuri', 'http://pbs.twimg.com/profile_images/525041273237798912/xB5Wrezg_normal.jpeg', 'Mumbai, India', '', ''),
(940, '2019-02-09 20:04:59', 'RT @nirmal_venkat: We are back. Tamilians started saying #GoBackModi. I am using twitter, whenever modi comes to TN. you know what I mean 😂…', 'negative', 0, 'nirmal_venkat ', '#gobackmodi ', 'கரிசற௠காடà¯à®Ÿà®¾à®©à¯', 'http://pbs.twimg.com/profile_images/1077126015338434560/pMiZEdeH_normal.jpg', 'Mumbai, India', '', ''),
(941, '2019-02-09 20:04:57', 'RT @attomeybharti: India TV doing a show on how Modi’s relatives are living simple lives. @BJP4India make janta see the contrast between Mo…', 'positive', 0, 'attomeybharti BJP4India ', '', 'Subash', 'http://pbs.twimg.com/profile_images/777795707033968641/DvSsVFie_normal.jpg', 'USA, India', '', ''),
(942, '2019-02-09 20:04:56', '#ForTheFirstTime\nIndia launched 104 satellites in one go and is now aiming for a manned space mission. This is an a… https://t.co/slSoaMRnwm', 'positive', 1, '', '#forthefirsttime ', 'Barun Das Bairagya', 'http://pbs.twimg.com/profile_images/1090514462744801281/zHO5lNJ3_normal.jpg', 'पशà¥à¤šà¤¿à¤® बंगाल, à¤à¤¾à¤°à¤¤', '', ''),
(943, '2019-02-09 20:04:54', 'RT @padhalikha: n 2014 LS elections, \nMamta got 2 cr votes in Bengal (44%) \nBJP got 74 lakh votes (16%) \n\nSince 2014, Modi have given 7…', 'neutral', 0, 'padhalikha ', '', 'Sumod Kuhar', 'http://pbs.twimg.com/profile_images/845139862529323010/HQ9XF8BR_normal.jpg', 'Ghar', '', ''),
(944, '2019-02-09 20:04:53', '#GoBackModi\nModi trying to hide from Rahul Gandhi https://t.co/vbjSaeFWjd', 'neutral', 2, '', '#gobackmodi ', 'Stonedwashed', 'http://pbs.twimg.com/profile_images/880648554909401088/x9DZX1uL_normal.jpg', 'Johannesburg - South Africa', '', ''),
(945, '2019-02-09 20:04:51', 'RT @Anish_Cherian: The Great Jhumlas of Modi Govt 2014-2019\n\nBJP/RSS Ka Vikas,Desh Ka Vinash, Satyanas #GobackModi https://t.co/MwqgnR2bzg', 'positive', 0, 'Anish_Cherian ', '#gobackmodi ', 'கரிசற௠காடà¯à®Ÿà®¾à®©à¯', 'http://pbs.twimg.com/profile_images/1077126015338434560/pMiZEdeH_normal.jpg', 'Mumbai, India', '', ''),
(946, '2019-02-09 20:04:51', 'RT @jay_bhadrakali8: Bhakts reactions when\n\nModi refused @Twitter refused https://t.co/ZWBzefd0Kg', 'neutral', 0, 'jay_bhadrakali8 Twitter ', '', 'Brigadier Suryadev Singh.', 'http://pbs.twimg.com/profile_images/1093053142391029760/-3APt0-K_normal.jpg', 'Mumbai, India', '', ''),
(947, '2019-02-09 20:04:50', 'RT @rkhuria: #GoBackModi. Yeddyurappa has let the cat out of bag. ‘Modi, Shah will manage Judges’. Is this how Judge Loya & Rafale judgemen…', 'neutral', 0, 'rkhuria ', '#gobackmodi ', 'Akhenaten/ÙیروÛ', 'http://pbs.twimg.com/profile_images/1074006977699704833/XQJa2JEP_normal.jpg', 'Mumbai, India', '', ''),
(948, '2019-02-09 20:04:48', 'RT @HAL_India: Finally Defmin tells Rajya Sabha, that there is no difference in the configuration of original 126 Rafale jets and the 36 o…', 'negative', 0, 'HAL_India ', '', 'A.S. Deesawala', 'http://pbs.twimg.com/profile_images/1079315768838246400/ZBwDDehj_normal.jpg', 'Injambakkam, Sholinganallur', '', ''),
(949, '2019-02-09 20:04:47', 'RT @ashoswai: Modi’s sand castle in the Northeast is collapsing like anything! https://t.co/uztc4n1BVK', 'positive', 0, 'ashoswai ', '', 'The Anarchy Man Ⓐ', 'http://pbs.twimg.com/profile_images/1092098420179779590/3JKt6xo0_normal.jpg', 'Bozeman, MT', '', ''),
(950, '2019-02-09 20:04:46', 'RT @mvmeet: Name: Narendra Modi\nCM: 13 yrs\nPM of India: Since last 5 yrs\nLeaves taken: 0\nCash in hand: Rs 48,944\nDoes he own vehicle: NO\nHo…', 'neutral', 0, 'mvmeet ', '', 'Amit Trivedi 🇮🇳', 'http://pbs.twimg.com/profile_images/901458949710499841/qQBFmjH8_normal.jpg', 'India', '', ''),
(951, '2019-02-09 20:04:46', '@IndianExpress Who are you to judge modi ,, why you came out from congress & why you now with congress , how many father you have ??', 'positive', 0, 'IndianExpress ', '', 'nripendutta', 'http://pbs.twimg.com/profile_images/948251991318265857/FyAMCLFO_normal.jpg', 'Mumbai ', '', ''),
(952, '2019-02-09 20:04:44', 'RT @JantaKaReporter: Pro-BJP filmmaker Vivek Agnihotri left embarrassed after his Twitter poll gives huge advantage to Rahul Gandhi over Na…', 'neutral', 0, 'JantaKaReporter ', '', 'R.RAMACHANDRAN', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(953, '2019-02-09 20:04:44', 'RT @ArnazHathiram: 2 months ago, just before the 5-state Assembly Polls, Modi & BJP had a eureka moment as if they had got Dawood back to I…', 'neutral', 0, 'ArnazHathiram ', '', 'Rana Dev Rajbanshi', 'http://pbs.twimg.com/profile_images/1060743015315062784/oP7daD1H_normal.jpg', 'India', '', ''),
(954, '2019-02-09 20:04:42', 'RT @mohan_vinoth: Modi now , on seeing tweets bearing #GoBackModi tag 😂🖕🻠https://t.co/oWfCY5dzy0', 'positive', 0, 'mohan_vinoth ', '#gobackmodi ', 'கரிசற௠காடà¯à®Ÿà®¾à®©à¯', 'http://pbs.twimg.com/profile_images/1077126015338434560/pMiZEdeH_normal.jpg', 'Mumbai, India', '', ''),
(955, '2019-02-09 20:04:42', 'RT @the_hindu: Here are four reasons why the line of attack against The Hindu story on Rafale is not only shallow, but also implicates the…', 'negative', 0, 'the_hindu ', '', 'indian@2018', 'http://pbs.twimg.com/profile_images/1034865314750578688/FgM4B8L3_normal.jpg', 'Mumbai, India', '', ''),
(956, '2019-02-09 20:04:42', '@EpicRoflDon Doing great job bro. He sound modi ki na jaish allad. Keep it up buddy', 'positive', 0, 'EpicRoflDon ', '', 'amarsons', 'http://pbs.twimg.com/profile_images/1076266864588800002/szd5rcvj_normal.jpg', 'London, England', '', ''),
(957, '2019-02-09 20:04:39', 'RT @yarlagaddavrao: Modi deceived people of AP on Special Status/Package #GoBackModi', 'positive', 0, 'yarlagaddavrao ', '#gobackmodi ', 'commonjeevi', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(958, '2019-02-09 20:04:38', '@TheShahjadAli @brumbyoz @asadowaisi Modi has bhakts not only in UAE across world so u r laughing for urself 😂 😂', 'negative', 0, 'TheShahjadAli brumbyoz asadowaisi ', '', '[email protected]', 'http://pbs.twimg.com/profile_images/1056623172680859648/I2ZP2M8M_normal.jpg', 'Mumbai, India', '', ''),
(959, '2019-02-09 20:04:38', 'RT @OpIndia_com: \"Apart from politics, we have been attracted to Modi for his love towards the nation and he had made every Indian proud in…', 'positive', 0, 'OpIndia_com ', '', 'NP', 'http://pbs.twimg.com/profile_images/1010109993935228929/rl4xtYc0_normal.jpg', 'India', '', ''),
(960, '2019-02-09 20:04:34', 'RT @GummadiRatna: Go Back Modi #MODICHEATEDAP\n#Gobackmodi https://t.co/o4vQicqpIy', 'neutral', 0, 'GummadiRatna ', '#modicheatedap #gobackmodi ', 'Nithish', 'http://pbs.twimg.com/profile_images/831181341081346048/Gq1QWeK8_normal.jpg', 'Nellore, India', '', ''),
(961, '2019-02-09 20:04:34', '@narendramodi Well said modi ji', 'positive', 0, 'narendramodi ', '', 'Gautham Mazumder', 'http://pbs.twimg.com/profile_images/1056641680391061505/sorvbnA6_normal.jpg', 'Kolkata, India', '', ''),
(962, '2019-02-09 20:04:32', 'RT @mvmeet: Name: Narendra Modi\nCM: 13 yrs\nPM of India: Since last 5 yrs\nLeaves taken: 0\nCash in hand: Rs 48,944\nDoes he own vehicle: NO\nHo…', 'neutral', 0, 'mvmeet ', '', 'v.r.prasad', 'http://pbs.twimg.com/profile_images/1093663398363987973/TMB8TNkb_normal.jpg', 'à¤à¤¾à¤°à¤¤ India.', '', ''),
(963, '2019-02-09 20:04:30', '#ForTheFirstTime\nA direct income support scheme for small & marginal farmers, 10% Reservation for economically weak… https://t.co/oZIZmYKp4H', 'neutral', 0, '', '#forthefirsttime ', 'Barun Das Bairagya', 'http://pbs.twimg.com/profile_images/1090514462744801281/zHO5lNJ3_normal.jpg', 'पशà¥à¤šà¤¿à¤® बंगाल, à¤à¤¾à¤°à¤¤', '', ''),
(964, '2019-02-09 20:04:27', 'RT @KirronKherBJP: A 48-yr-old man who can not write a condolence message on his own, is claiming to “figure out†@narendramodi? Modi, a se…', 'negative', 0, 'KirronKherBJP narendramodi ', '', 'Prathvi S Shetty', 'http://pbs.twimg.com/profile_images/792799866065915911/fKw62z3A_normal.jpg', 'Mangalore, India', '', ''),
(965, '2019-02-09 19:51:46', '[IN] - Expectations of railway zone during Modi’s visit today | The Hindu ', 'neutral', 1, '', '', 'AutoNewspaperAdmin', '', 'Mumbai, India', '', ''),
(966, '2019-02-09 19:43:55', 'Citizenship bill will not cause any harm to Assam: PM Modi ', 'negative', 1, '', '', 'newsbot_', '', 'Mumbai, India', '', ''),
(967, '2019-02-09 19:31:27', '[IN] - India rebuts China on Modi’s visit to Arunachal | The Hindu ', 'neutral', 1, '', '', 'AutoNewspaperAdmin', '', 'Mumbai, India', '', ''),
(968, '2019-02-09 19:31:26', '[IN] - Modi’s visit to Tamil Nadu raises expectation of alliance | The Hindu ', 'neutral', 1, '', '', 'AutoNewspaperAdmin', '', 'Mumbai, India', '', ''),
(969, '2019-02-09 19:22:45', '[IN] - In Assam, PM Modi Has A Message For Local Media On Covering Development | NDTV ', 'neutral', 1, '', '', 'AutoNewspaperAdmin', '', 'Mumbai, India', '', ''),
(970, '2019-02-09 20:10:27', 'RT @rishibagree: BJP will win 272+ only if it replace many of its useless sitting MPs who hardly work on ground but reached Parliament due…', 'neutral', 0, 'rishibagree ', '', 'Nithin Viswanath', 'http://pbs.twimg.com/profile_images/1091408266167570433/3_TCM7YF_normal.jpg', 'Kerala, India', '', ''),
(971, '2019-02-09 20:10:26', 'RT @TariqueKhanJave: Citizenship bill: Protesters again wave black flags at Modi in Assam https://t.co/9DAd28H5mA', 'neutral', 0, 'TariqueKhanJave ', '', 'Mawish Moulvi', 'http://pbs.twimg.com/profile_images/898983787249401856/ShTrrezK_normal.jpg', 'Karachi, Pakistan', '', ''),
(972, '2019-02-09 20:10:25', 'RT @_narendramodi_1: Retweet If You Want Modi Again. \n#TNWelcomesModi https://t.co/2wp4yXep54', 'neutral', 0, '_narendramodi_1 ', '#tnwelcomesmodi ', 'vicky thala', 'http://pbs.twimg.com/profile_images/1089365885901406208/1YTk-WB-_normal.jpg', 'Mumbai, India', '', ''),
(973, '2019-02-09 20:10:25', 'RT @prasannavishy: Stunning scale of charity. Kudos to everyone behind this initiative @TVMohandasPai \nPM Modi To Serve ISKCON Affiliate Ak…', 'positive', 0, 'prasannavishy TVMohandasPai ', '', 'IT Coolie', 'http://pbs.twimg.com/profile_images/923716045658918912/oTi-6Jot_normal.jpg', 'Colorado Springs, CO', '', ''),
(974, '2019-02-09 20:10:25', 'RT @b4politics: Modi , You are not Welcome to Andhra #ModiGoBack #gobackmodi #nomo #NoMoreModi #apwithcbn https://t.co/Co0X8jXwlt', 'neutral', 0, 'b4politics ', '#modigoback #gobackmodi #nomo #nomoremodi #apwithcbn ', 'Naishadh Vyas', 'http://pbs.twimg.com/profile_images/529178024374071297/M3IWJHM0_normal.jpeg', 'Ahmedabad, Gujarat, India', '', ''),
(975, '2019-02-09 20:10:23', 'RT @kapsology: Modi paid 3x price for Rafael but it is not a scam.\nModi helped Ambani getting offset contract but it is not a scam.\nModi di…', 'negative', 0, 'kapsology ', '', 'Shakeel Ahmed', 'http://pbs.twimg.com/profile_images/457354549766799360/d4mlsUXh_normal.jpeg', 'Mumbai, India', '', ''),
(976, '2019-02-09 20:10:21', 'RT @Tinni_Aphrodite: #ModiDestroysNorthEast\nPM Modi is in NE today and as usual he will try to mislead people with his lies. Modi ji itna b…', 'neutral', 0, 'Tinni_Aphrodite ', '#modidestroysnortheast ', 'A K Tripathi', 'http://pbs.twimg.com/profile_images/1076785675125604352/2UR8foZg_normal.jpg', 'New Delhi, India', '', ''),
(977, '2019-02-09 20:10:18', 'RT @aadhilmmd: we are not welcoming PM Narendra Modi to Tiruppur\n\n#GoBackModi', 'negative', 0, 'aadhilmmd ', '#gobackmodi ', 'Liyakathali.sdpi', 'http://pbs.twimg.com/profile_images/897529869705367553/4qM5R-Ig_normal.jpg', 'Mumbai, India', '', ''),
(978, '2019-02-09 20:10:18', '@narendramodi @BJP4Assam Why lie Mr. Modi? Reality is this:- #India Was https://t.co/7BAIcQ5K8U', 'neutral', 0, 'narendramodi BJP4Assam ', '#india ', 'Siksha Utkarsh', 'http://pbs.twimg.com/profile_images/1093656804247175169/wGc7Q-A__normal.jpg', 'Mumbai, India', '', ''),
(979, '2019-02-09 20:10:17', 'RT @Sunil_Deodhar: Modi govt gave 5.56 Lakh Cr for the development of Andhra Pradesh which is 5 times more than what Congress had given.…', 'neutral', 0, 'Sunil_Deodhar ', '', 'Mani Sekhar Raman', 'http://pbs.twimg.com/profile_images/969907755006951424/uatyNbIM_normal.jpg', 'Riyadh, Saudi Arabia', '', ''),
(980, '2019-02-09 20:10:17', 'RT @SitaramYechury: Where are the Jobs? Modi promised 10 crore new jobs to fool the people of the country, and as expected, after five year…', 'neutral', 0, 'SitaramYechury ', '', 'Ranjeet', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(981, '2019-02-09 20:10:16', 'Mr.Modi is the one and only PM who spent more days in election campaign and foreign tours. Take 365 days if 2018 ne… https://t.co/NRcJI2oypr', 'positive', 0, '', '', 'Indian', 'http://pbs.twimg.com/profile_images/1060764135829340160/1PG0xr34_normal.jpg', 'India', '', ''),
(982, '2019-02-09 20:10:16', '@nangpa01 Tulsi Gabbard, the first Hindu in the US Congress, on Modi, Hinduism, and linking Islam to terror\n\nShe we… https://t.co/HpI5hEdvho', 'neutral', 0, 'nangpa01 ', '', 'swepost', 'http://pbs.twimg.com/profile_images/1033805751138099200/Eail1USO_normal.jpg', 'Hyderabad, city, Telangana ', '', ''),
(983, '2019-02-09 20:10:12', 'RT @KapilSibal: Farm Sector Drought : \nNeeded a monsoon shower not a few drops of rain (Rs 17/day for a family) .\n\nForgot urban poor\nForgot…', 'negative', 0, 'KapilSibal ', '', 'moghan mathiah', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(984, '2019-02-09 20:10:11', 'I hope that India gives PM Narendra Modi a further term and people are savvy to the global politics /agendas/greed.… https://t.co/MScWotMMA2', 'negative', 0, '', '', 'Ally Minch', 'http://pbs.twimg.com/profile_images/607193987401838592/1ZWctOW6_normal.jpg', ' England', '', ''),
(985, '2019-02-09 20:10:08', 'RT @YourGirlNeha: #LiarRahul?? No way the King of LIES is one and only modi...\n\n https://t.co/mVUmCYZEzo', 'neutral', 0, 'YourGirlNeha ', '#liarrahul ', 'SamJags', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'India', '', ''),
(986, '2019-02-09 20:10:08', 'RT @RatanSharda55: I have walked out if @republic debate on #TwitterInsultsIndia. Republic must learn to rein in mindless shouting panelist…', 'neutral', 0, 'RatanSharda55 republic ', '#twitterinsultsindia ', 'Shivesh Kumar🇮🇳', 'http://pbs.twimg.com/profile_images/1036687199817719809/yqZSoF9V_normal.jpg', 'Bengaluru, India', '', ''),
(987, '2019-02-09 20:10:07', 'Old Photographs Used to Project Show of Strength at PM Modi’s West Bengal Rally\n\nSet of fake images has been shared… https://t.co/6csAxYhAZU', 'negative', 0, '', '', 'NewsCentral24x7', 'http://pbs.twimg.com/profile_images/1058102185597140993/i-eQvBnv_normal.jpg', 'Mumbai, India', '', ''),
(988, '2019-02-09 20:10:07', 'RT @prasannavishy: Stunning scale of charity. Kudos to everyone behind this initiative @TVMohandasPai \nPM Modi To Serve ISKCON Affiliate Ak…', 'positive', 0, 'prasannavishy TVMohandasPai ', '', 'RTK', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(989, '2019-02-09 20:10:05', 'RT @LEOVSN: #NoMoreModi\nNarendra Modi cheated Andhra Pradesh. \nWe are ashamed of Narendra Modi \nNarendra Modi &all his supporters should be…', 'neutral', 0, 'LEOVSN ', '#nomoremodi ', 'Naishadh Vyas', 'http://pbs.twimg.com/profile_images/529178024374071297/M3IWJHM0_normal.jpeg', 'Ahmedabad, Gujarat, India', '', ''),
(990, '2019-02-09 20:10:03', '@bhupendrachaube @Olacabs @Uber_India @narendramodi Have never met a rickshaw guy in mumbai who had any kind words… https://t.co/EPqToOdbiq', 'neutral', 0, 'bhupendrachaube Olacabs Uber_India narendramodi ', '', 'R', 'http://pbs.twimg.com/profile_images/1089970802919903232/_pY2ovPP_normal.jpg', 'All over !', '', ''),
(991, '2019-02-09 20:10:02', '@ZarfOfficial @soulofosho Modi never mention his drug trafficker uncle who were running a tea stall at railway plat… https://t.co/MBMVjKEhy6', 'negative', 0, 'ZarfOfficial soulofosho ', '', 'Mohit Izac Newton', 'http://pbs.twimg.com/profile_images/1090940740748877826/2LvlckCl_normal.jpg', 'Gujrat ', '', ''),
(992, '2019-02-09 20:10:01', 'RT @Swamy39: EXCLUSIVE: Ram Temple in Ayodhya is well within reach now, says Subramanian Swamy https://t.co/YK3QLqaHtZ', 'positive', 0, 'Swamy39 ', '', 'saloni gupta', 'http://pbs.twimg.com/profile_images/699896174036135936/4KoyLbXw_normal.jpg', 'Mumbai, India', '', ''),
(993, '2019-02-09 20:10:01', 'RT @RatanSharda55: I have walked out if @republic debate on #TwitterInsultsIndia. Republic must learn to rein in mindless shouting panelist…', 'neutral', 0, 'RatanSharda55 republic ', '#twitterinsultsindia ', 'राघव - ਰਾਘਵ THE GOOD HINDU 🇮🇳', 'http://pbs.twimg.com/profile_images/1085222894244773889/VL2EMxi6_normal.jpg', 'à¤à¤¾à¤°à¤¤', '', ''),
(994, '2019-02-09 20:10:00', 'RT @anandraja509: #TNWelcomesModi \n\nWe people of TN love our PM.\n\nModi themed cafe @ kovilpatti, Tamil Nadu. https://t.co/SdVrPN2knq', 'positive', 0, 'anandraja509 ', '#tnwelcomesmodi ', 'D Nebhnani!', 'http://pbs.twimg.com/profile_images/1093129888674922496/HKDbli7W_normal.jpg', 'Mumbai, India', '', ''),
(995, '2019-02-09 20:09:57', 'RT @kaybudeva: @yazhinisundaram As everyone knows Goback is fake. \nSee Modi entering TN in Petta Style #TNWelcomesModi https://t.co/r9d2eIl…', 'neutral', 0, 'kaybudeva yazhinisundaram ', '#tnwelcomesmodi ', 'Vignesh Balaji', 'http://pbs.twimg.com/profile_images/1315629839/240_normal.jpg', 'Coimbatore, Tamilnadu, India', '', ''),
(996, '2019-02-09 20:09:50', 'RT @IbrahimJafr: All I see out here is insecure people looking for approval from other insecure people.😒...L O L🤦ðŸ¾â€â™‚ï¸', 'neutral', 0, 'IbrahimJafr ', '', 'Sir Savage the 21st', 'http://pbs.twimg.com/profile_images/1089669649732653058/Ky8j88MB_normal.jpg', 'Yola, Nigeria', '', ''),
(997, '2019-02-09 20:09:47', 'RT @mat_jane_de_yar: #GoBackModi.... Public welcoming Modi in each state he is visiting. The new Safroon of Sanghi sarkar.... Even we non S…', 'neutral', 0, 'mat_jane_de_yar ', '#gobackmodi ', 'Aftab Nazim Ø¢Ùتاب نجیم', 'http://pbs.twimg.com/profile_images/1094323468064120832/LKetQK6q_normal.jpg', 'New Delhi, India', '', ''),
(998, '2019-02-09 20:09:46', 'RT @rishibagree: BJP will win 272+ only if it replace many of its useless sitting MPs who hardly work on ground but reached Parliament due…', 'neutral', 0, 'rishibagree ', '', 'Nikhil Singh', 'http://pbs.twimg.com/profile_images/818899270585585665/hvGmrVqs_normal.jpg', 'Roorkee, India', '', ''),
(999, '2019-02-09 20:09:45', 'RT @BJP4India: PM Modi lays foundation stone and inaugurates development projects at Itanagar, Arunachal Pradesh. Watch at https://t.co/Mp2…', 'neutral', 0, 'BJP4India ', '', 'Taher Rizvi', 'http://pbs.twimg.com/profile_images/931937196151418881/y-goT5pJ_normal.jpg', 'Mumbai, India', '', ''),
(1000, '2019-02-09 20:09:45', 'RT @IronyOfIndia_: Modi never Again.\nAP people has taken #GoBackModi to next level with #NoMoreModi #ModiIsAMistake .. https://t.co/QDnyK9…', 'negative', 0, 'IronyOfIndia_ ', '#gobackmodi #nomoremodi #modiisamistake ', 'Naishadh Vyas', 'http://pbs.twimg.com/profile_images/529178024374071297/M3IWJHM0_normal.jpeg', 'Ahmedabad, Gujarat, India', '', ''),
(1001, '2019-02-09 20:09:44', 'RT @bainjal: If you believe that Modi threw all procedure under a bus & picked Anil Ambani on merit as an offsets partner in #RafaleDeal th…', 'positive', 0, 'bainjal ', '#rafaledeal ', 'Shakeel Ahmed', 'http://pbs.twimg.com/profile_images/457354549766799360/d4mlsUXh_normal.jpeg', 'Mumbai, India', '', ''),
(1002, '2019-02-09 20:09:42', '@YashwanthPNaik @republic How do you know Modi purchased 90 percent media? Get your goti fixed so that your software works', 'neutral', 0, 'YashwanthPNaik republic ', '', 'Sudhir Kunder', 'http://pbs.twimg.com/profile_images/507647157428445186/KxrDrjB2_normal.jpeg', 'Navi Mumbai, India', '', ''),
(1003, '2019-02-09 20:09:39', 'watch Modi Lies https://t.co/ztiMx2OvXy', 'neutral', 0, '', '', 'Sameer Shaikh صمیر', 'http://pbs.twimg.com/profile_images/1043633376983506946/3fZU1Dgb_normal.jpg', 'India UAE', '', ''),
(1004, '2019-02-09 20:09:39', 'RT @Srikant2019: Vijayawada to airport route full of\n#GoBackModi banners 😂😂😂\n\nOnly shameless character like modi can continue his planned…', 'positive', 0, 'Srikant2019 ', '#gobackmodi ', 'Naresh', 'http://pbs.twimg.com/profile_images/979295342658076673/iLDdTf_y_normal.jpg', 'Mumbai, India', '', ''),
(1005, '2019-02-09 20:09:37', 'RT @the_hindu: Here are four reasons why the line of attack against The Hindu story on Rafale is not only shallow, but also implicates the…', 'negative', 0, 'the_hindu ', '', 'Nawaz Shaik نواز شیخ', 'http://pbs.twimg.com/profile_images/984926629368680448/BtYV-61x_normal.jpg', 'Riyadh', '', ''),
(1006, '2019-02-09 20:09:35', 'RT @CharuPragya: .â¦@RahulGandhiâ© comes from a family famous for giving themselves the ‘Bharat Ratna’!\n\nHe doesn’t understand that people wi…', 'positive', 0, 'CharuPragya RahulGandhi ', '', 'Anjaneya', 'http://pbs.twimg.com/profile_images/1087047286444584960/ErbtntGU_normal.jpg', 'Mumbai, India', '', ''),
(1007, '2019-02-09 20:09:34', 'RT @Pushpa83105: Even the children were also cheated by Modi. \n#GoBackModi. https://t.co/BLXjwnineO', 'neutral', 0, 'Pushpa83105 ', '#gobackmodi ', 'mohd haris', 'http://pbs.twimg.com/profile_images/2818656264/90f44d920a903526f41e09bf33759452_normal.jpeg', 'delhi', '', ''),
(1008, '2019-02-09 20:09:30', 'RT @Sanjay98271767: Modi will defeat in all States ... #GoBackModi\n&\nJhola utha kar chal doonga.. https://t.co/wITA5BMelD', 'neutral', 0, 'Sanjay98271767 ', '#gobackmodi ', 'அனà¯à®ªà¯à®°à®¾à®œà®¾', 'http://pbs.twimg.com/profile_images/984542538907336705/4DlhDEsN_normal.jpg', 'செனà¯à®©à¯ˆ', '', ''),
(1009, '2019-02-09 20:09:27', 'RT @Ish_Bhandari: People gave congress many chances, including famously in 1971 for “garibi hatao “ in 2019 congress still wants to run on…', 'neutral', 0, 'Ish_Bhandari ', '', 'Nikhil Singh', 'http://pbs.twimg.com/profile_images/818899270585585665/hvGmrVqs_normal.jpg', 'Roorkee, India', '', ''),
(1010, '2019-02-09 20:09:26', 'RT @DasComrade: Do you feel that the anger against Modi and BJP, now in 2019, is much more than the anger that was there against UPA2 in 20…', 'positive', 0, 'DasComrade ', '', '🇮🇳AuroraBorealis🇮🇳', 'http://pbs.twimg.com/profile_images/1039893936016384000/7Yge-tJ2_normal.jpg', 'India', '', ''),
(1011, '2019-02-09 20:09:26', 'RT @mat_jane_de_yar: #GoBackModi.... Public welcoming Modi in each state he is visiting. The new Safroon of Sanghi sarkar.... Even we non S…', 'neutral', 0, 'mat_jane_de_yar ', '#gobackmodi ', 'Manoj Mehta', 'http://pbs.twimg.com/profile_images/983016507612454912/4Ir2xZhg_normal.jpg', 'Himachal Pradesh, India', '', ''),
(1012, '2019-02-09 20:09:24', 'RT @AnjaliKoundinya: Dirty fellow @jigneshmevani80 where r u nw ????\nIncident has taken place in non BJP ruled state ,so Ur silent ?\n@Rahul…', 'negative', 0, 'AnjaliKoundinya jigneshmevani80 ', '', 'Sudhakar Rao 🇮🇳', 'http://pbs.twimg.com/profile_images/1052066850404618240/YHpbUqei_normal.jpg', 'India', '', ''),
(1013, '2019-02-09 20:09:23', 'RT @SavingOurSoul: Chowkidar n Gang is weakening d States n Constitutional institutions.\n\nModi is coming to witness d injustice that was do…', 'neutral', 0, 'SavingOurSoul ', '', 'Naresh', 'http://pbs.twimg.com/profile_images/979295342658076673/iLDdTf_y_normal.jpg', 'Mumbai, India', '', ''),
(1014, '2019-02-09 20:09:22', 'RT @ZakirHu57071955: We want Justice for equal share of divisional headquarter\n#KargilDemandEqualShare\n#RotationalHeaquarter\n@modi\n@Mehboob…', 'neutral', 0, 'ZakirHu57071955 Modi ', '#kargildemandequalshare #rotationalheaquarter ', 'THE LADAKH', 'http://pbs.twimg.com/profile_images/1090301664404267008/osbAYHnK_normal.jpg', 'Jammu And Kashmir', '', ''),
(1015, '2019-02-09 20:09:22', 'RT @SmitiMahabir: @narendramodi Modi Ji, the people of New Gurgaon face similar apathy & neglect. And right under your nose! We aren’t allo…', 'neutral', 0, 'SmitiMahabir narendramodi ', '', 'Rahul Lakhanpal', 'http://pbs.twimg.com/profile_images/962723411473530880/GP9zuYSB_normal.jpg', 'Gurgaon, India', '', ''),
(1016, '2019-02-09 20:09:22', 'RT @Sunil_Deodhar: Modi govt gave 5.56 Lakh Cr for the development of Andhra Pradesh which is 5 times more than what Congress had given.…', 'neutral', 0, 'Sunil_Deodhar ', '', 'Petrol wala Indian (Open Category)', 'http://pbs.twimg.com/profile_images/1051597291902160897/F1YEwAep_normal.jpg', 'Mumbai, Nasik, Pune', '', ''),
(1017, '2019-02-09 20:09:21', 'RT @Salman_for_life: One is from Modi Gang. @yoursAbhi_\nOne is From Gandhi Gang😎 @ShristiRawat3 https://t.co/b9EaiYQQiu', 'positive', 0, 'Salman_for_life yoursAbhi_ ShristiRawat3 ', '', 'HBD Arnav â¤', 'http://pbs.twimg.com/profile_images/1094283806754947072/IYdE-lnJ_normal.jpg', 'Lucknow', '', ''),
(1018, '2019-02-09 20:09:19', 'RT @noconversion: Rahul Gandhi @RahulGandhi need to stop using derogatory language, Narendera Modi is Prime Minister of INDIA, not a str…', 'negative', 0, 'noconversion RahulGandhi ', '', 'Yadunath Bilisare', 'http://pbs.twimg.com/profile_images/668078019748106240/AVk4Q9xE_normal.jpg', 'Mysuru, India', '', ''),
(1019, '2019-02-09 20:09:16', 'RT @IronyOfIndia_: Ahead of Modi’s Andhra visit, MODI No ENTRY billboards appear multiple places across city. \n#NoMoreModi https://t.co/CN4…', 'negative', 0, 'IronyOfIndia_ ', '#nomoremodi ', 'Naishadh Vyas', 'http://pbs.twimg.com/profile_images/529178024374071297/M3IWJHM0_normal.jpeg', 'Ahmedabad, Gujarat, India', '', ''),
(1020, '2019-02-09 20:09:14', 'RT @rishibagree: BJP will win 272+ only if it replace many of its useless sitting MPs who hardly work on ground but reached Parliament due…', 'neutral', 0, 'rishibagree ', '', 'Lila Modhawadia', 'http://pbs.twimg.com/profile_images/1089985790254432256/Jz8xW6fs_normal.jpg', 'London United Kingdom', '', ''),
(1021, '2019-02-09 20:09:10', 'RT @Abdul_BLR: This is first time happening in Independent India. \n\"Ahead of Modi andhra visit modi no entry billboards appear multiple pla…', 'neutral', 0, 'Abdul_BLR ', '', 'Naishadh Vyas', 'http://pbs.twimg.com/profile_images/529178024374071297/M3IWJHM0_normal.jpeg', 'Ahmedabad, Gujarat, India', '', '');
INSERT INTO `posts` (`id`, `posted`, `text`, `sentiment`, `count`, `usermentions`, `tags`, `username`, `imageurl`, `location`, `keyword`, `relevant`) VALUES
(1022, '2019-02-09 20:09:09', 'RT @postcard_news: Rafale Deal: Rahul Gandhi and The Hindu scores a massive self-goal in a hurry to attack Modi Govt using a distorted docu…', 'neutral', 0, 'postcard_news ', '', 'Anadi', 'http://pbs.twimg.com/profile_images/746326589051285504/rqlO92cj_normal.jpg', 'Windows Phone', '', ''),
(1023, '2019-02-09 20:09:03', 'RT @ZlatanicPikaChu: Idiot! This cap is a token of respect for Arunachal people. Just because u r an ignoramus doesn’t dilute its significa…', 'neutral', 0, 'ZlatanicPikaChu ', '', 'Harshad', 'http://pbs.twimg.com/profile_images/1008747153139777537/iwnIcw4T_normal.jpg', 'Mumbai', '', ''),
(1024, '2019-02-09 20:09:02', 'RT @nithya4india: @gimmydowns @SuryahSG Rice bags and Dumeels feel Modi has no impact in TN, but are tweeting and trending the whole day.…', 'neutral', 0, 'nithya4india gimmydowns SuryahSG ', '', 'venkata ramanan', 'http://pbs.twimg.com/profile_images/982097269775204358/EU_nBJGn_normal.jpg', 'India', '', ''),
(1025, '2019-02-09 20:08:58', '@kavita_krishnan @PoMoGandhi @MIT Kavita krishnan. I like you because you look great and posses human. But what I d… https://t.co/OZYEmZ0cnb', 'positive', 0, 'kavita_krishnan PoMoGandhi MIT ', '', 'Sonu Verma', 'http://pbs.twimg.com/profile_images/1085190131009544200/yxzoxwJz_normal.jpg', 'Gorakhpur', '', ''),
(1026, '2019-02-09 20:08:54', 'RT @nimiraja2011: Why Tirupur’s Rs 42,000 crore textile hub fears a wipeout | Explained News, The Indian Express #GoBackModi https://t.co/…', 'neutral', 0, 'nimiraja2011 ', '#gobackmodi ', 'Manikandan', 'http://pbs.twimg.com/profile_images/1050741610814746624/bhxM0PKu_normal.jpg', 'Mettupalayam', '', ''),
(1027, '2019-02-09 20:08:53', 'RT @rwac48: Modi’s BJP is sliding down the Rafale slope. It must stop outraging and come clean https://t.co/A9agdTp1Ac', 'positive', 0, 'rwac48 ', '', 'theonlyblueberryhill', 'http://pbs.twimg.com/profile_images/1004389243664429056/Gfb3mcka_normal.jpg', 'Romania', '', ''),
(1028, '2019-02-09 20:08:50', 'RT @im_saiganesh: INC ruled India for majority of 70 years and Tamil Nadu got just 52% toilet coverage till 2014.\n\nModi made it 100% in jus…', 'neutral', 0, 'im_saiganesh ', '', 'Mani Sekhar Raman', 'http://pbs.twimg.com/profile_images/969907755006951424/uatyNbIM_normal.jpg', 'Riyadh, Saudi Arabia', '', ''),
(1029, '2019-02-09 20:08:50', 'RT @desimojito: Modi’s 2019 campaign gets a big boost! Swiss banks show India winning Black money battle. Wow just wow. Ab ki baar 400 paar…', 'positive', 0, 'desimojito ', '', 'pankaj agarwal', 'http://pbs.twimg.com/profile_images/919319324514332672/1xvl_pv4_normal.jpg', 'Mumbai, India', '', ''),
(1030, '2019-02-09 20:08:49', 'RT @kaybudeva: @yazhinisundaram As everyone knows Goback is fake. \nSee Modi entering TN in Petta Style #TNWelcomesModi https://t.co/r9d2eIl…', 'neutral', 0, 'kaybudeva yazhinisundaram ', '#tnwelcomesmodi ', 'Venkat', 'http://pbs.twimg.com/profile_images/1036056528556421120/V1qYZpnb_normal.jpg', 'Vellore,Tamil Nadu, India.', '', ''),
(1031, '2019-02-09 20:08:49', 'RT @Srikant2019: Vijayawada to airport route full of\n#GoBackModi banners 😂😂😂\n\nOnly shameless character like modi can continue his planned…', 'positive', 0, 'Srikant2019 ', '#gobackmodi ', 'Anandhicold', 'http://pbs.twimg.com/profile_images/1091404909801398272/WQSk0jrl_normal.jpg', 'Mumbai, India', '', ''),
(1032, '2019-02-09 20:08:48', 'RT @padhalikha: n 2014 LS elections, \nMamta got 2 cr votes in Bengal (44%) \nBJP got 74 lakh votes (16%) \n\nSince 2014, Modi have given 7…', 'neutral', 0, 'padhalikha ', '', '(अ)विवेकी_बोल🤔🇮🇳', 'http://pbs.twimg.com/profile_images/1056773315061338113/-ataK4mt_normal.jpg', 'Latur, Maharashtra', '', ''),
(1033, '2019-02-09 20:08:48', 'RT @zoo_bear: @ianuragthakur Sir, Accounts who were critical of Modi govt were suspended by Twitter. Pls take appropriate action against Tw…', 'positive', 0, 'zoo_bear ianuragthakur ', '', 'Indian007', 'http://pbs.twimg.com/profile_images/1089835753625079808/vGKjkT7f_normal.jpg', 'Earth', '', ''),
(1034, '2019-02-09 20:08:47', 'RT @TimesNow: 24 hours after PM Modi inaugurated the circuit bench in Jalpaiguri, West Bengal; Sources say the state government has decided…', 'neutral', 0, 'TimesNow ', '', 'Ramana', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(1035, '2019-02-09 20:08:45', 'RT @Sunil_Deodhar: Modi govt gave 5.56 Lakh Cr for the development of Andhra Pradesh which is 5 times more than what Congress had given.…', 'neutral', 0, 'Sunil_Deodhar ', '', 'Akshit Dangayach', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(1036, '2019-02-09 20:08:43', 'RT @pankhuripathak: If you don’t support Modi then in North India - You are a Pakistani .\nEast India - You are a Rohingya .\n\nWhat do they c…', 'neutral', 0, 'pankhuripathak ', '', 'javed khanâ€â€Žâ€ŽØ¬Ø§ÙˆÛŒØ¯ خان', 'http://pbs.twimg.com/profile_images/1058643498482786304/G2w9_AOc_normal.jpg', 'Faridabad, India', '', ''),
(1037, '2019-02-09 20:08:42', 'RT @Manojku74580785: Modi cheating not give special status for AP\n#GobackModi \n#modigoback https://t.co/1SdPQ8ewep', 'neutral', 0, 'Manojku74580785 ', '#gobackmodi #modigoback ', 'Achinth Gurkhi', 'http://pbs.twimg.com/profile_images/845092452776079360/Gcuz28mA_normal.jpg', 'India', '', ''),
(1038, '2019-02-09 20:08:41', 'RT @mahesh10816: Toor Dal in 2013 Congress rule - Rs 210 / kg \nToday in Modi sarkar- 65/ kg\n\nWhose Govt do you want ?\n\n#BharatBacksModi', 'neutral', 0, 'mahesh10816 ', '#bharatbacksmodi ', 'sachin akhani', 'http://pbs.twimg.com/profile_images/841640041466150912/vjnry5El_normal.jpg', 'India', '', ''),
(1039, '2019-02-09 20:08:41', 'RT @Hariindic: PM Narendra Modi likely to pick Tamil Nadu for 2nd seat this election ðŸ˜ðŸ˜\nIf it happens, BJP + will sweep TamilNadu. #TNWelco…', 'neutral', 0, 'Hariindic ', '', 'NIKHIL THAKUR 🇮🇳', 'http://pbs.twimg.com/profile_images/1093113789455716352/XesVu2wD_normal.jpg', 'Trigart State, à¤à¤¾à¤°à¤¤', '', ''),
(1040, '2019-02-09 20:08:41', 'RT @AudaciousQuest_: @timesofindia Vote for Congress. It will fulfil manifesto promises. Tell Modi to resign who never fulfilled a single e…', 'negative', 0, 'AudaciousQuest_ timesofindia ', '', 'A.S. Deesawala', 'http://pbs.twimg.com/profile_images/1079315768838246400/ZBwDDehj_normal.jpg', 'Injambakkam, Sholinganallur', '', ''),
(1041, '2019-02-09 20:08:36', '@Joydas #ShamelessLies\nStop Distorting.\nFrom the Video,one can see Amol ji tried to talk about Naintara Saigal (Gan… https://t.co/r0yyxD328A', 'positive', 0, 'Joydas ', '#shamelesslies ', 'Indian', 'http://pbs.twimg.com/profile_images/1077522903506272259/P20f8pgA_normal.jpg', 'à¤à¤¾à¤°à¤¤', '', ''),
(1042, '2019-02-09 20:08:33', 'RT @narendramodi177: Retweet If You Support PM Modi Ji. #TNWelcomesModi https://t.co/0rm1XAplnH', 'neutral', 0, 'narendramodi177 ', '#tnwelcomesmodi ', 'Mani Sekhar Raman', 'http://pbs.twimg.com/profile_images/969907755006951424/uatyNbIM_normal.jpg', 'Riyadh, Saudi Arabia', '', ''),
(1043, '2019-02-09 20:08:32', 'RT @SitaramYechury: After lies about the non-existent CAG report, Modi govt hides crucial facts about PMO role from Supreme Court. Modi gov…', 'neutral', 0, 'SitaramYechury ', '', 'Hore Nishikant.', 'http://pbs.twimg.com/profile_images/871418519946219521/0rGZDG-o_normal.jpg', 'Nagpur, Maharashtra 440022', '', ''),
(1044, '2019-02-09 20:08:32', 'RT @rssurjewala: ‘Deliberate Lies’ & ‘Spins’ of Modi Govt Nailed!!\n\nFin Adviser,Defence Services (uptil May 2016)exposes Modi Govt on #Rafa…', 'neutral', 0, 'rssurjewala ', '', 'Amit Singh Rathore', 'http://pbs.twimg.com/profile_images/942099324061863936/upoNOtyc_normal.jpg', 'Mumbai, India', '', ''),
(1045, '2019-02-09 20:08:31', 'RT @pokershash: See this video to know who is playing with institutions. Everything that opposition blame Modi for, is being practiced by o…', 'neutral', 0, 'pokershash ', '', 'Bharat Mata Ki Jai', 'http://pbs.twimg.com/profile_images/719581529433702400/Z_ppgzLa_normal.jpg', 'Bandar Kuala Lumpur, Wilayah P', '', ''),
(1046, '2019-02-09 20:08:28', 'RT @bainjal: The @bjp trending sick attacks on @RahulGandhi are actually proving that the General of the troll army Modi is panicked #Rafal…', 'negative', 0, 'bainjal ', '', 'Afshan Adeeb', 'http://pbs.twimg.com/profile_images/881016690284220416/F6lHWLsY_normal.jpg', 'Mumbai, India', '', ''),
(1047, '2019-02-09 20:08:28', 'RT @vibhor_anand: On the Scale of the 10, How much would you rate Modi Govt in last 4.5 years??', 'neutral', 0, 'vibhor_anand ', '', 'Amul', 'http://pbs.twimg.com/profile_images/1013452547183370240/WvpFTmBe_normal.jpg', 'Mumbai, India', '', ''),
(1048, '2019-02-09 20:08:28', 'RT @SavingOurSoul: Chowkidar n Gang is weakening d States n Constitutional institutions.\n\nModi is coming to witness d injustice that was do…', 'neutral', 0, 'SavingOurSoul ', '', 'Anandhicold', 'http://pbs.twimg.com/profile_images/1091404909801398272/WQSk0jrl_normal.jpg', 'Mumbai, India', '', ''),
(1049, '2019-02-10 02:19:55', '@TimesNow Yes that’s true PMO during congress rule did not intervene and even in 10 years theirs could not happen a… https://t.co/WD3DUrU2KA', 'neutral', 0, 'TimesNow ', '', 'nishant agrawal', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(1050, '2019-02-10 02:19:54', 'RT @nandan_raja: What is the use of infrastructure like Bullet Trains when people are not provided basic infrastructure for healthy educati…', 'neutral', 0, 'nandan_raja ', '', 'sreeramaneni poojith', 'http://pbs.twimg.com/profile_images/1081392156198068224/q-PDnP8V_normal.jpg', 'Tirupati, India', '', ''),
(1051, '2019-02-10 02:19:54', 'RT @sagenaradamuni: You have Backstabbed numerous people in your life, list is endless...\n\nNTR\nNBR\nKCR\nABV\nModi https://t.co/ClQIAPVhqN', 'neutral', 0, 'sagenaradamuni ', '', '🚩🇮🇳Sandeep Hindustani🚩🇮🇳', 'http://pbs.twimg.com/profile_images/1053317697986019328/McPSZ5kT_normal.jpg', 'New Delhi, India', '', ''),
(1052, '2019-02-10 02:19:53', 'RT @bhsenid: #tirupur never welcomes modi\n#GobackModi https://t.co/7z8OYuAZkN', 'negative', 0, 'bhsenid ', '#tirupur #gobackmodi ', 'SudhaTuraga', 'http://pbs.twimg.com/profile_images/1026670583789101057/ZKytset1_normal.jpg', 'Amaravati, India', '', ''),
(1053, '2019-02-10 02:19:52', 'RT @t_d_h_nair: B J P horse trading attempts in Karanataka: Transcript of the alleged telephone conversation of B S Yeddyurappa and other s…', 'neutral', 0, 't_d_h_nair ', '', 'mz', 'http://pbs.twimg.com/profile_images/1084365588686790657/ArU_FtNK_normal.jpg', 'Mumbai, India', '', ''),
(1054, '2019-02-10 02:19:51', 'RT @Being_Selva: #GoBackModi Once Tamilnadu was most peacefull and developed state in india, then modi came to power and rest is history.', 'neutral', 0, 'Being_Selva ', '#gobackmodi ', 'SudhaTuraga', 'http://pbs.twimg.com/profile_images/1026670583789101057/ZKytset1_normal.jpg', 'Amaravati, India', '', ''),
(1055, '2019-02-10 02:19:51', 'RT @KannanSrikumar: #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• Modi Govt provided ambulance facility to SL Tamils. #TNWelcomesModi https://t.co/NNraj3hjDd', 'neutral', 0, 'KannanSrikumar ', '#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• #tnwelcomesmodi ', 'jfkix', 'http://pbs.twimg.com/profile_images/952867527121489921/YPXH5Y7G_normal.jpg', 'Chennai, India', '', ''),
(1056, '2019-02-10 02:19:51', 'RT @KannanSrikumar: #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• Modi Govt provided ambulance facility to SL Tamils. #TNWelcomesModi https://t.co/NNraj3hjDd', 'neutral', 0, 'KannanSrikumar ', '#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• #tnwelcomesmodi ', 'SundipKapur🇮🇳', 'http://pbs.twimg.com/profile_images/1060029434869227520/1YQ1hw5J_normal.jpg', 'Noida, India', '', ''),
(1057, '2019-02-10 02:19:51', 'RT @vrprasad12: #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®•\nCrores of people just love #Modi not becoz he is PM, but bcoz he is so humane & cares so much for al…', 'neutral', 0, 'vrprasad12 ', '#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• #modi ', 'Ramesh S', 'http://pbs.twimg.com/profile_images/1085747232626733056/ZOLmOV6-_normal.jpg', 'Chennai, India', '', ''),
(1058, '2019-02-10 02:19:47', 'RT @mmaheesh: When Modi think to visit TN.\n#GoBackModi https://t.co/q4uUetKNPf', 'neutral', 0, 'mmaheesh ', '#gobackmodi ', 'SudhaTuraga', 'http://pbs.twimg.com/profile_images/1026670583789101057/ZKytset1_normal.jpg', 'Amaravati, India', '', ''),
(1059, '2019-02-10 02:19:46', 'RT @ChinarajappaN: No promise in the AP reorganization act has been fulfilled by Modi till now to AP.\nWe demand justice.\n#GoBackModi \n#APDe…', 'neutral', 0, 'ChinarajappaN ', '#gobackmodi ', 'sreeramaneni poojith', 'http://pbs.twimg.com/profile_images/1081392156198068224/q-PDnP8V_normal.jpg', 'Tirupati, India', '', ''),
(1060, '2019-02-10 02:19:45', 'RT @ndtv: WATCH | “I have a very special connection with North Bengal. This connection is of tea. You people grow tea, I make tea,†says Pr…', 'positive', 0, 'ndtv ', '', 'ಪà³à²°à²¶à²¾à²‚ತೠಸಿಂಹ', 'http://pbs.twimg.com/profile_images/797718438135341056/z2-sUx_6_normal.jpg', 'KARNATAKA', '', ''),
(1061, '2019-02-10 02:19:45', 'RT @KannanSrikumar: #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• Modi Govt provided ambulance facility to SL Tamils. #TNWelcomesModi https://t.co/NNraj3hjDd', 'neutral', 0, 'KannanSrikumar ', '#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• #tnwelcomesmodi ', 'ParthaPratim Pradhan', 'http://pbs.twimg.com/profile_images/1045528095825043461/nXqeaU5__normal.jpg', 'Mumbai, India', '', ''),
(1062, '2019-02-10 02:19:45', 'RT @CheekuPrasanth: #TNWelcomesModi welcome back modi https://t.co/sPmG6JXvjl', 'positive', 0, 'CheekuPrasanth ', '#tnwelcomesmodi ', '[email protected]', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(1063, '2019-02-10 02:19:44', 'Going thru post budget tweets each year from 2015 is mind blowing.. Most of us have suspected that Modi will give h… https://t.co/FVOlr6AtlO', 'neutral', 0, '', '', 'Nellore PeddaReddy', 'http://pbs.twimg.com/profile_images/798415268582162432/atC_BJVA_normal.jpg', 'Hyderabad, INDIA', '', ''),
(1064, '2019-02-10 02:19:43', 'True https://t.co/FfKeYwndh9', 'neutral', 0, '', '', 'S.Chandrasekhar', 'http://pbs.twimg.com/profile_images/648864144351883264/ZvZCnGRF_normal.jpg', 'Hyderabad, Andhra Pradesh', '', ''),
(1065, '2019-02-10 02:19:42', 'RT @Hariindic: 600+ Indian Tamil fishermen shot dead by Srilankan Navy during 10 years of UPA! Not a single fisherman casualty in the last…', 'negative', 0, 'Hariindic ', '', 'rathinamurali', 'http://pbs.twimg.com/profile_images/1054589621814751233/PSlurbnR_normal.jpg', 'Mumbai, India', '', ''),
(1066, '2019-02-10 02:19:42', 'RT @Johnfelix17: when Modi is that fraud guy n police is tamilnadu imagine 😂😀🤣🤣#GoBackModi https://t.co/LK3KbPIXJw', 'positive', 0, 'Johnfelix17 ', '#gobackmodi ', 'sreeramaneni poojith', 'http://pbs.twimg.com/profile_images/1081392156198068224/q-PDnP8V_normal.jpg', 'Tirupati, India', '', ''),
(1067, '2019-02-10 02:19:40', 'RT @subhashwodeyar1: #TNWelcomesModi\nThalaiva modi is Only leader can make india as Great. https://t.co/k1XlFHZDzl', 'positive', 0, 'subhashwodeyar1 ', '#tnwelcomesmodi ', 'Jegadish', 'http://pbs.twimg.com/profile_images/949351141237649408/IDuUqper_normal.jpg', 'Seattle, WA', '', ''),
(1068, '2019-02-10 02:19:38', 'RT @KrrisshYadhu: Hon’PM Modi Ji likely to inaugurate the fastest Tejas2 train between Chennai to Madurai on his Tiruppur meeting. This tra…', 'neutral', 0, 'KrrisshYadhu ', '', '#VJ63 ராஜூ', 'http://pbs.twimg.com/profile_images/1011291205261381632/3-WlH3iK_normal.jpg', 'Nagercoil', '', ''),
(1069, '2019-02-10 02:19:38', 'RT @ButtaRenuka_MP: Modi ji denied SCS to AP,\nModi ji denied Special package to AP,\nModi ji denied Funds for Capital city,\nModi ji denied a…', 'positive', 0, 'ButtaRenuka_MP ', '', 'sreeramaneni poojith', 'http://pbs.twimg.com/profile_images/1081392156198068224/q-PDnP8V_normal.jpg', 'Tirupati, India', '', ''),
(1070, '2019-02-10 02:19:38', 'Out of 11 institutions in Schedule-XIII, 9 have been sanctioned so far. AP has provided 2,900 acres of valuable la… https://t.co/cHLLi9sRml', 'neutral', 1, '', '', 'Sai Nandan Raja', 'http://pbs.twimg.com/profile_images/968166502196117504/DR0eR7Hz_normal.jpg', 'Hyderabad, India', '', ''),
(1071, '2019-02-10 02:19:38', 'RT @nandan_raja: 12 National Institutes have been sanctioned worth 7000 Crores such as AIIMS, IIT, NIT, IISER, IIIT, Central University, Pe…', 'neutral', 0, 'nandan_raja ', '', 'SudhaTuraga', 'http://pbs.twimg.com/profile_images/1026670583789101057/ZKytset1_normal.jpg', 'Amaravati, India', '', ''),
(1072, '2019-02-10 02:19:37', 'RT @RitaNegi11: #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®•\nNarendra Modi is the only leader who puts service before self. This nation needs him to forge ahead.…', 'neutral', 0, 'RitaNegi11 ', '#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• ', 'Senthil Andavan🇮🇳', 'http://pbs.twimg.com/profile_images/1015093167836811264/LoGX9HPE_normal.jpg', 'Mumbai, India', '', ''),
(1073, '2019-02-10 02:19:37', 'RT @rssurjewala: ‘Deliberate Lies’ & ‘Spins’ of Modi Govt Nailed!!\n\nFin Adviser,Defence Services (uptil May 2016)exposes Modi Govt on #Rafa…', 'neutral', 0, 'rssurjewala ', '', 'Proud Indian', 'http://pbs.twimg.com/profile_images/1069141417673588736/ouZtqjLM_normal.jpg', 'Mumbai, India', '', ''),
(1074, '2019-02-10 02:19:37', 'RT @the_hindu: Here are four reasons why the line of attack against The Hindu story on Rafale is not only shallow, but also implicates the…', 'negative', 0, 'the_hindu ', '', 'Summerhill', 'http://pbs.twimg.com/profile_images/1080772717232586752/zVo1wyiX_normal.jpg', 'Mumbai, India', '', ''),
(1075, '2019-02-10 02:19:35', 'RT @SuryahSG: Let people with agenda spread their canards. Do independent research on previous regimes especially DMK + Congress 2004 - 201…', 'positive', 0, 'SuryahSG ', '', 'SundipKapur🇮🇳', 'http://pbs.twimg.com/profile_images/1060029434869227520/1YQ1hw5J_normal.jpg', 'Noida, India', '', ''),
(1076, '2019-02-10 02:19:35', 'RT @narendramodi177: Retweet If You Want Modi Again. \n#TNWelcomesModi https://t.co/5s1cj8L3E0', 'neutral', 0, 'narendramodi177 ', '#tnwelcomesmodi ', 'Vamshidhar Gurram', 'http://pbs.twimg.com/profile_images/716480222305001472/BDGSFgpZ_normal.jpg', 'Hyderabad, India', '', ''),
(1077, '2019-02-10 02:19:35', '@gimmydowns Come lets join for a beef steak and i will show you over dinner what MODI has done for TN.… https://t.co/esbWCUSVBI', 'neutral', 0, 'gimmydowns ', '', 'Shakti Aggarwal', 'http://pbs.twimg.com/profile_images/2186814773/1_normal.jpg', 'Mumbai, India', '', ''),
(1078, '2019-02-10 02:19:34', 'RT @ChinarajappaN: No promise in the AP reorganization act has been fulfilled by Modi till now to AP.\nWe demand justice.\n#GoBackModi \n#APDe…', 'neutral', 0, 'ChinarajappaN ', '#gobackmodi ', 'b.srinu', 'http://pbs.twimg.com/profile_images/1051463047225569282/Vk2Ky_ME_normal.jpg', 'Mumbai, India', '', ''),
(1079, '2019-02-10 02:19:33', 'RT @padhalikha: n 2014 LS elections, \nMamta got 2 cr votes in Bengal (44%) \nBJP got 74 lakh votes (16%) \n\nSince 2014, Modi have given 7…', 'neutral', 0, 'padhalikha ', '', 'Sri 🇮🇳', 'http://pbs.twimg.com/profile_images/1092831654090104833/DTjP6e9s_normal.jpg', 'Bangalore', '', ''),
(1080, '2019-02-10 02:19:33', 'RT @iam_suriyan: First i Tweeted for Go back modi when I came to Twitter\n\nBut now I realized and \n\nWelcoming #TNWelcomesModi and now inform…', 'positive', 0, 'iam_suriyan ', '#tnwelcomesmodi ', 'Selva Vengaipuli', 'http://pbs.twimg.com/profile_images/1093552540333953025/S9jD5uxB_normal.jpg', 'Nellai', '', ''),
(1081, '2019-02-10 02:19:32', 'RT @ConservationLi1: East or west modi is the best #TNWelcomesModi', 'neutral', 0, 'ConservationLi1 ', '#tnwelcomesmodi ', '[email protected]', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(1082, '2019-02-10 02:19:32', 'RT @b4politics: Modi go back .. you should bury your head in shame #gobackmodi #ModiCheatedAP #APWITHCBN https://t.co/hcGJmR8DUG', 'neutral', 0, 'b4politics ', '#gobackmodi #modicheatedap #apwithcbn ', '#GoBackModi', 'http://pbs.twimg.com/profile_images/943675780143366144/s1qGnluV_normal.jpg', 'Amaravathi, India', '', ''),
(1083, '2019-02-10 02:19:30', 'Wherein Tavleen Singh berates Modi ji 4 being defensive about his many achievements but can find nothing beyond Swa… https://t.co/JhLHWp88ZE', 'neutral', 0, '', '', 'SonaliRanade', 'http://pbs.twimg.com/profile_images/1656825134/sonali_Pic_normal.jpg', 'Seattle', '', ''),
(1084, '2019-02-10 02:19:29', 'RT @im_saiganesh: INC ruled India for majority of 70 years and Tamil Nadu got just 52% toilet coverage till 2014.\n\nModi made it 100% in jus…', 'neutral', 0, 'im_saiganesh ', '', 'Bhargav GN', 'http://pbs.twimg.com/profile_images/949590503099478016/gFptu8-g_normal.jpg', 'Bangalore', '', ''),
(1085, '2019-02-10 02:19:28', 'RT @RevathyNS: Modi all geared up to visit Tamil Nadu tomorrow. Last visit #GoBackModi was trending worldwide num 1.\n\n(Pic: Modi with the s…', 'positive', 0, 'RevathyNS ', '#gobackmodi ', 'Ravi Naid Gorle', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(1086, '2019-02-10 02:19:25', 'RT @irshadbenson: 👉 Rafael scam\n👉 De-Mo failures\n👉 Jio institute of eminence scam\n👉 Viyabam scam\n👉 Digital India failure\n👉 Clean Ganga fail…', 'positive', 0, 'irshadbenson ', '', 'sreeramaneni poojith', 'http://pbs.twimg.com/profile_images/1081392156198068224/q-PDnP8V_normal.jpg', 'Tirupati, India', '', ''),
(1087, '2019-02-10 02:19:23', 'RT @ksrisrimal: #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®•\nStatus of public sefty and security in the country, under #Modi regime, endorsed by #Sadhguru \n\n#TN…', 'positive', 0, 'ksrisrimal ', '#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• #modi #sadhguru ', 'Ramya', 'http://pbs.twimg.com/profile_images/952084042073096192/Or6-qXwo_normal.jpg', 'Mumbai, India', '', ''),
(1088, '2019-02-10 02:19:22', 'RT @catty1416: After successfully tweeting 10 go back modi tweets 😂 #TNWelcomesModi https://t.co/qaRNZleVCt', 'neutral', 0, 'catty1416 ', '#tnwelcomesmodi ', '#VJ63 ராஜூ', 'http://pbs.twimg.com/profile_images/1011291205261381632/3-WlH3iK_normal.jpg', 'Nagercoil', '', ''),
(1089, '2019-02-10 02:19:22', 'RT @zainabsikander: Modi ji, mobile ki battery nahi mobile ki FLASHLIGHT ..\nThe audience was like 🤔\nhttps://t.co/onSNoWzBAy', 'positive', 0, 'zainabsikander ', '', '# Bharat Mata ki', 'http://pbs.twimg.com/profile_images/1081408831840604161/BF9tgGea_normal.jpg', ' India Indian', '', ''),
(1090, '2019-02-10 02:19:21', 'RT @rishibagree: BJP Helped Mamata - Mamata Backstabbed ABV\nBJP Helped TDP - Naidu backstabbed ABV\nBJP again Helped TDP - Naidu again backs…', 'neutral', 0, 'rishibagree ', '', 'Khiladi Ram', 'http://pbs.twimg.com/profile_images/1057482884880097280/fyNDmYt9_normal.jpg', 'Honolulu, HI', '', ''),
(1091, '2019-02-10 02:19:20', 'RT @INCAssam: June 2017: Modi laying foundation stone for construction of AIIMS in Assam…', 'neutral', 0, 'INCAssam ', '', 'Jiaur Rahman', 'http://pbs.twimg.com/profile_images/954877969578758145/pTJpyFFW_normal.jpg', 'Marigaon, India', '', ''),
(1092, '2019-02-10 02:19:17', 'RT @ReutersBiz: PODCAST: If Narendra Modi’s government is re-elected, he will probably do more to rein in India’s finances and privatize en…', 'neutral', 0, 'ReutersBiz ', '', '9jaevents', 'http://pbs.twimg.com/profile_images/982363330932367360/uvOHP0GO_normal.jpg', 'Nigeria', '', ''),
(1093, '2019-02-10 02:19:17', 'RT @prema_chellappa: #GoBackModi\nIf modi comes in 2019, there will be no place in thihar jail', 'negative', 0, 'prema_chellappa ', '#gobackmodi ', 'N.vijiGuna', 'http://pbs.twimg.com/profile_images/1020488099997147136/sTjJHiZA_normal.jpg', 'MGR Nagar chennai ', '', ''),
(1094, '2019-02-10 02:19:16', 'RT @Kaapulam: As an #Andhra guy i am ashamed on my self and as a South Indian am proud of neighbour #Tamil peoples courage on protest again…', 'positive', 0, 'Kaapulam ', '#andhra #tamil ', '#GoBackModi', 'http://pbs.twimg.com/profile_images/943675780143366144/s1qGnluV_normal.jpg', 'Amaravathi, India', '', ''),
(1095, '2019-02-10 02:19:16', '@narendramodi177 But now only N MODI AND A SHAH AND A AMBANI ARE INFLATED\nA SC, A ED, A CBI, A RBI, & A EC ARE DEFLATED !', 'positive', 0, 'narendramodi177 ', '', 'badrinath', 'http://pbs.twimg.com/profile_images/537533961157607424/20UmMDRr_normal.jpeg', 'Mumbai, India', '', ''),
(1096, '2019-02-10 02:19:16', 'RT @Johnfelix17: when Modi is that fraud guy n police is tamilnadu imagine 😂😀🤣🤣#GoBackModi https://t.co/LK3KbPIXJw', 'positive', 0, 'Johnfelix17 ', '#gobackmodi ', 'TheNoMan', 'http://pbs.twimg.com/profile_images/987335264250023936/ThlENe9j_normal.jpg', 'Pitcairn Islands', '', ''),
(1097, '2019-02-10 02:19:15', 'RT @swamisaranamm: Results of GO back modi 😂😂😂\n\n#TNWelcomesModi 8160\n\n#DMKFails 7150 https://t.co/5euXBCbCaY', 'neutral', 0, 'swamisaranamm ', '#tnwelcomesmodi #dmkfails ', 'கிரà¯à®·à¯à®£à®©à¯', 'http://pbs.twimg.com/profile_images/1094291782928482305/stNk7nKT_normal.jpg', 'Mumbai, India', '', ''),
(1098, '2019-02-10 02:19:14', 'RT @vishnuvardhans: #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• #TNWelcomesModi \n\nWelcome Mr Modi ji. Every time you come to Tamil Nadu we are blessed. #ModiOn…', 'neutral', 0, 'vishnuvardhans ', '#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• #tnwelcomesmodi ', 'Ramya', 'http://pbs.twimg.com/profile_images/952084042073096192/Or6-qXwo_normal.jpg', 'Mumbai, India', '', ''),
(1099, '2019-02-10 02:19:14', 'RT @RituRathaur: Bozos trending Modi to go back are none else but the members of Vatic@n controlled Christi@n Church mafia in Tamil Nadu..t…', 'neutral', 0, 'RituRathaur ', '', '🇮🇳 #नमो_नमः #ModiFor2019 #narendramodi', 'http://pbs.twimg.com/profile_images/1091523956807528448/pVU43LSj_normal.jpg', '#NY #AMD #GZP #VNS', '', ''),
(1100, '2019-02-10 02:19:13', 'RT @manoj_gujaran: #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®•\n@narendramodi ji said -\n1) No govt at Centre has done so much for Tamil Nadu (TN) as BJP has done…', 'negative', 0, 'manoj_gujaran narendramodi ', '#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• ', 'आवारा नकारा नालायक', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'आरà¥à¤•à¤Ÿà¤¿à¤• महासागर', '', ''),
(1101, '2019-02-10 02:19:12', 'RT @Sunil_Deodhar: PM @narendramodi Ji is the only leader in last 70 years who has allocated close to 6 Lakh Crore for Andhra Pradesh.\n\nAnd…', 'neutral', 0, 'Sunil_Deodhar narendramodi ', '', 'Atul🇮🇳', 'http://pbs.twimg.com/profile_images/974511391087341568/3fZNQubs_normal.jpg', 'Gurgaon & Mewat(Haryana)India', '', ''),
(1102, '2019-02-10 02:19:11', 'We welcome Modi ji to Tamilnadu - People of Tamilnadu\n #TNWelcomesModi', 'positive', 0, '', '#tnwelcomesmodi ', 'Rajarajan Srinivasan', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(1103, '2019-02-10 02:19:11', 'RT @rishibagree: BJP Helped Mamata - Mamata Backstabbed ABV\nBJP Helped TDP - Naidu backstabbed ABV\nBJP again Helped TDP - Naidu again backs…', 'neutral', 0, 'rishibagree ', '', 'Saby', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(1104, '2019-02-10 02:19:11', 'RT @subhashwodeyar1: #TNWelcomesModi\nThalaiva modi is Only leader can make india as Great. https://t.co/k1XlFHZDzl', 'positive', 0, 'subhashwodeyar1 ', '#tnwelcomesmodi ', 'Prithivi India🇮🇳', 'http://pbs.twimg.com/profile_images/792703216991375361/a3B-iwG9_normal.jpg', 'Mumbai, India', '', ''),
(1105, '2019-02-10 02:19:11', 'RT @subhashwodeyar1: #TNWelcomesModi\nThalaiva modi is Only leader can make india as Great. https://t.co/k1XlFHZDzl', 'positive', 0, 'subhashwodeyar1 ', '#tnwelcomesmodi ', '[email protected]', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(1106, '2019-02-10 02:19:11', 'RT @priatharisini: Modi ji has make a incredible india...\n#TNwelcomesmodi #TNwelcomesmodi\n#TNwelcomesmodi #TNwelcomesmodi\n#TNwelcomesmodi #…', 'neutral', 0, 'priatharisini ', '#tnwelcomesmodi #tnwelcomesmodi #tnwelcomesmodi #tnwelcomesmodi #tnwelcomesmodi ', 'SARAVANAN K', 'http://pbs.twimg.com/profile_images/344513261582564060/6c792b0ebe0ab37f65d84dc1ecf127ed_normal.jpeg', 'Mumbai, India', '', ''),
(1107, '2019-02-10 02:19:10', 'RT @desimojito: Modi’s 2019 campaign gets a big boost! Swiss banks show India winning Black money battle. Wow just wow. Ab ki baar 400 paar…', 'positive', 0, 'desimojito ', '', 'Vishwanath N', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(1108, '2019-02-10 02:19:09', 'RT @Nithyas22287167: Welcome Modi #TNWelcomesModi', 'positive', 0, 'Nithyas22287167 ', '#tnwelcomesmodi ', 'Muthukumar', 'http://pbs.twimg.com/profile_images/637632988080005120/9_Jtthwm_normal.jpg', 'Mumbai, India', '', ''),
(1109, '2019-02-10 02:19:08', 'RT @Johnfelix17: When people ask Modi about 15lac 👇👇🤣🤣🤣🤣#GoBackModi https://t.co/4a3dtUKE3G', 'neutral', 0, 'Johnfelix17 ', '#gobackmodi ', 'TheNoMan', 'http://pbs.twimg.com/profile_images/987335264250023936/ThlENe9j_normal.jpg', 'Pitcairn Islands', '', ''),
(1110, '2019-02-10 02:19:08', 'RT @nbmayuran: Accidental insurance for Just Re:1 in Modi Government\n#TNWelcomesModi\n#DMKFails', 'neutral', 0, 'nbmayuran ', '#tnwelcomesmodi #dmkfails ', 'Prithivi India🇮🇳', 'http://pbs.twimg.com/profile_images/792703216991375361/a3B-iwG9_normal.jpg', 'Mumbai, India', '', ''),
(1111, '2019-02-10 02:19:07', 'RT @ksrisrimal: #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• Modi announced his arrival on global diplomatic stage when he invited leaders in the subcontinent to…', 'neutral', 0, 'ksrisrimal ', '#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• ', 'Krishnaswamy', 'http://pbs.twimg.com/profile_images/1037726647380856832/rw068UUO_normal.jpg', 'Delaware, USA', '', ''),
(1112, '2019-02-10 02:19:06', 'RT @zhaTamil: @RohitJain700 I know the diff bw indiatimes and theindiantimes, i mentioned the facts they came up with. Most Tamils and @twi…', 'positive', 0, 'zhaTamil RohitJain700 ', '', 'SudhaTuraga', 'http://pbs.twimg.com/profile_images/1026670583789101057/ZKytset1_normal.jpg', 'Amaravati, India', '', ''),
(1113, '2019-02-10 02:19:05', 'RT @Anti_Racist_007: https://t.co/0LsWkxSpQG\nThe family is accusing U @OmarAbdullah of Ur direct involvement in murder of #HajiYousufCase\n@…', 'neutral', 0, 'Anti_Racist_007 OmarAbdullah ', '#hajiyousufcase ', 'Bilal Arizoo', 'http://pbs.twimg.com/profile_images/709312915459989504/z7eos9G4_normal.jpg', 'india', '', ''),
(1114, '2019-02-10 02:19:02', 'RT @mvmeet: Name: Narendra Modi\nCM: 13 yrs\nPM of India: Since last 5 yrs\nLeaves taken: 0\nCash in hand: Rs 48,944\nDoes he own vehicle: NO\nHo…', 'neutral', 0, 'mvmeet ', '', 'Ankit Rohila', 'http://pbs.twimg.com/profile_images/471153228885684225/p55dwyI6_normal.jpeg', 'Roorkee ', '', ''),
(1115, '2019-02-10 02:19:02', 'PM Modi in West Bengal: Lays foundation stone for national highway project; how it will benefit local people… https://t.co/6SjxVxvdkZ', 'neutral', 0, '', '', 'AMRUT DAVE', 'http://pbs.twimg.com/profile_images/378800000254236230/f4264aece3dac6ceeeff41bfb4b1bdea_normal.jpeg', 'DEESA,B.K.GUJRAT,INDIA', '', ''),
(1116, '2019-02-10 02:19:02', 'RT @karthikk_h: People of tamilnadu welcome Modi ji and thank him immensely for the development projects allotted to us #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வ…', 'positive', 0, 'karthikk_h ', '', 'JainsForModi', 'http://pbs.twimg.com/profile_images/705363388684066817/KMqjvTOH_normal.jpg', 'Mumbai, India', '', ''),
(1117, '2019-02-10 02:19:01', 'PODCAST: If Narendra Modi’s government is re-elected, he will probably do more to rein in India’s finances and priv… https://t.co/xxzBivzqYx', 'neutral', 0, '', '', 'Twheater', 'http://pbs.twimg.com/profile_images/1002953536148144128/MnVp1u_s_normal.jpg', 'Mumbai, India', '', ''),
(1118, '2019-02-10 02:19:01', 'RT @zhaTamil: @RohitJain700 I know the diff bw indiatimes and theindiantimes, i mentioned the facts they came up with. Most Tamils and @twi…', 'positive', 0, 'zhaTamil RohitJain700 ', '', 'Krishna', 'http://pbs.twimg.com/profile_images/1042238172527120384/YbOzgQfE_normal.jpg', 'Salem', '', ''),
(1119, '2019-02-10 02:19:01', 'The only time I want Modi to be No.1 Worldwide is #GoBackModi', 'negative', 0, '', '#gobackmodi ', 'Saajan', 'http://pbs.twimg.com/profile_images/1088007622328909824/5FjXLXA__normal.jpg', 'Mumbai, India', '', ''),
(1120, '2019-02-10 02:19:01', 'RT @KPadmaRani1: Modi is perfectly working on his plan of surrendering NE to China\n\n#ModiDestroysNorthEast\n\nBlack flags welcome PM Modi in…', 'positive', 0, 'KPadmaRani1 ', '#modidestroysnortheast ', 'Faiz Mohd. Khan', 'http://pbs.twimg.com/profile_images/947123571737821184/M9YzcdA-_normal.jpg', 'Chandni Chowk, New Delhi', '', ''),
(1121, '2019-02-10 02:19:01', 'RT @mvmeet: Name: Narendra Modi\nCM: 13 yrs\nPM of India: Since last 5 yrs\nLeaves taken: 0\nCash in hand: Rs 48,944\nDoes he own vehicle: NO\nHo…', 'neutral', 0, 'mvmeet ', '', 'MunirajuGowda Fans club', 'http://pbs.twimg.com/profile_images/954261469717176321/_1gWCwSk_normal.jpg', 'Mumbai, India', '', ''),
(1122, '2019-02-10 02:19:01', 'RT @mvmeet: Name: Narendra Modi\nCM: 13 yrs\nPM of India: Since last 5 yrs\nLeaves taken: 0\nCash in hand: Rs 48,944\nDoes he own vehicle: NO\nHo…', 'neutral', 0, 'mvmeet ', '', 'Mariner Capt.Sanjay 🇮🇳', 'http://pbs.twimg.com/profile_images/1089131089904439296/-v7QiygU_normal.jpg', 'Mumbai, India', '', ''),
(1123, '2019-02-10 02:18:59', 'RT @manoj_gujaran: #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®•\n@narendramodi ji said -\n1) No govt at Centre has done so much for Tamil Nadu (TN) as BJP has done…', 'negative', 0, 'manoj_gujaran narendramodi ', '#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• ', 'JainsForModi', 'http://pbs.twimg.com/profile_images/705363388684066817/KMqjvTOH_normal.jpg', 'Mumbai, India', '', ''),
(1124, '2019-02-10 02:18:58', 'Go back modi', 'neutral', 0, '', '', 'Nakkeeran K', 'http://pbs.twimg.com/profile_images/1091000107401601026/Vd_8TjGI_normal.jpg', 'Mayiladuthurai ', '', ''),
(1125, '2019-02-10 02:18:57', 'RT @Ahmedshabbir20: TJS George points out how PM Modi & #BJP came to power raising #Vadra issue at every rally. They did nothing after that…', 'neutral', 0, 'Ahmedshabbir20 ', '#bjp #vadra ', 'Ashwin Pandian', 'http://pbs.twimg.com/profile_images/1014032754839732224/26Fzht2N_normal.jpg', 'Chennai', '', ''),
(1126, '2019-02-10 02:18:57', 'RT @Vishj05: I wanted to watch News and my nephew wanted to watch Cartoon. So we settled on watching this speech of Modi. https://t.co/4yFT…', 'neutral', 0, 'Vishj05 ', '', 'Ravi Naid Gorle', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', '', ''),
(1127, '2019-02-10 02:18:53', 'RT @anandraja509: #TNWelcomesModi \n\nWe people of TN love our PM.\n\nModi themed cafe @ kovilpatti, Tamil Nadu. https://t.co/SdVrPN2knq', 'positive', 0, 'anandraja509 ', '#tnwelcomesmodi ', 'krishnan v', 'http://pbs.twimg.com/profile_images/972643339324411904/TZicVkhR_normal.jpg', 'Mumbai, India', '', ''),
(1128, '2019-02-10 02:18:52', 'RT @zoo_bear: @ianuragthakur Sir, Accounts who were critical of Modi govt were suspended by Twitter. Pls take appropriate action against Tw…', 'positive', 0, 'zoo_bear ianuragthakur ', '', 'گلوبل مغلوب', 'http://pbs.twimg.com/profile_images/1203999068/globalmouthful_normal.jpg', 'Somewhere Out There', '', ''),
(1129, '2019-02-10 03:49:11', 'RT @MinhazMerchant: Dear â¦@RahulGandhiâ©, Qatari Air Force paid Rs 1,875 crore for fully loaded #Rafale jet in 2015. Indian Air Force is pay…', 'neutral', 0, 'MinhazMerchant RahulGandhi ', '#rafale ', 'Pinkal', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Modi', ''),
(1130, '2019-02-10 03:49:10', 'RT @SuryahSG: PM Modi is coming to TN to inaugurate/lay foundation for the following projects.\n\n*100 bed, ESIC Hospital, Tiruppur\n*Moderni…', 'neutral', 0, 'SuryahSG ', '', 'Keerthana BJP Ramanathapuram', 'http://pbs.twimg.com/profile_images/1089056687271464961/5XrmPXSU_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1131, '2019-02-10 03:49:10', 'RT @rishibagree: BJP will win 272+ only if it replace many of its useless sitting MPs who hardly work on ground but reached Parliament due…', 'neutral', 0, 'rishibagree ', '', 'Praveen', 'http://pbs.twimg.com/profile_images/795735079008014337/c8HcWp7H_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1132, '2019-02-10 03:49:09', 'RT @arijitsamanta63: I can vote CPIM / TMC / Congress but No vote for BJP/Modi\nWe youth had elected you with the hope of enormous jobs. But…', 'negative', 0, 'arijitsamanta63 ', '', 'Jegatheeswaran', 'http://pbs.twimg.com/profile_images/980485919223422976/L8ykb2gX_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1133, '2019-02-10 03:49:09', 'RT @firstpost: Some of the posters read #NoMoreModi, #ModiIsAMistake, Modi Never Again, etc. https://t.co/8SnmyYKAhO', 'negative', 0, 'firstpost ', '#nomoremodi #modiisamistake ', 'INJESTERS', 'http://pbs.twimg.com/profile_images/1046625999461527552/jFwkfItP_normal.jpg', 'Rolling Stones no Address', 'Modi', ''),
(1134, '2019-02-10 03:49:08', 'RT @karthikk_h: People of tamilnadu welcome Modi ji and thank him immensely for the development projects allotted to us #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வ…', 'positive', 0, 'karthikk_h ', '', 'Maran', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Modi', ''),
(1135, '2019-02-10 03:49:08', 'RT @ET_GBS: Witness the leader of the nation take the dais on the pressing matters of our economy for the fourth time at #ETGBS. As we move…', 'neutral', 0, 'ET_GBS ', '#etgbs ', 'Navratan Bhattad', 'http://pbs.twimg.com/profile_images/982678375968878599/kch_z7e9_normal.jpg', 'Raipur, India', 'Modi', ''),
(1136, '2019-02-10 03:49:08', 'RT @GappistanRadio: Some Indians are defending a company telling Indian Parliament to Fcuk off because they don’t like the current PM!!\nLol…', 'neutral', 0, 'GappistanRadio ', '', 'समतà¥à¤µà¤®à¥', 'http://pbs.twimg.com/profile_images/990167237196681216/J_W1SarS_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1137, '2019-02-10 03:49:07', 'RT @Outlookindia: Worried About Nitin Gadkari Emerging As Alternative To PM Modi: Sharad Pawar\n\nhttps://t.co/BUd4nvoG0i', 'neutral', 0, 'Outlookindia ', '', 'Marj Oszman🇺🇸🌎', 'http://pbs.twimg.com/profile_images/1086716042532081669/CSJLgVNm_normal.jpg', 'Charlotte, NC', 'Modi', ''),
(1138, '2019-02-10 03:49:06', 'RT @pbhushan1: No doubt that Priyanka will defeat Modi from Varanasi as a joint opposition candidate. If she is put up as a joint candidate…', 'neutral', 0, 'pbhushan1 ', '', 'Tamil Male', 'http://pbs.twimg.com/profile_images/553289332094541824/GAMbMJQZ_normal.jpeg', 'Mumbai, India', 'Modi', ''),
(1139, '2019-02-10 03:49:06', 'RT @aknarne: This is Modi’s report card .. \n\nShameless fellows who hate AP and love modi .. please ignore... https://t.co/pXPqpLDC9m', 'neutral', 0, 'aknarne ', '', 'Sambasiva Reddy S', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Hyderabad, India', 'Modi', ''),
(1140, '2019-02-10 03:49:06', 'RT @PradyotManikya: Seeing black balloons over the iconic Ujayanta Palace while Narendra Modi addresses the public at the Astabal Ground .…', 'neutral', 0, 'PradyotManikya ', '', 'अमन ll امن', 'http://pbs.twimg.com/profile_images/935093499963195392/eHaWdNhj_normal.jpg', 'Searching...', 'Modi', ''),
(1141, '2019-02-10 03:49:05', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'Raj Mohan', 'http://pbs.twimg.com/profile_images/848896419310260224/Et4SuMIy_normal.jpg', 'Chennai,India', 'Modi', ''),
(1142, '2019-02-10 03:49:05', 'RT @INCIndia: On 4th January 2019, Congress President @RahulGandhi asked RM @nsitharaman a simple yes or no question: Did the highest offic…', 'neutral', 0, 'INCIndia RahulGandhi nsitharaman ', '', 'Prabhat Kumar', 'http://pbs.twimg.com/profile_images/1091535743317463040/41Feryeh_normal.jpg', 'New Delhi, India', 'Modi', ''),
(1143, '2019-02-10 03:49:05', 'RT @MinhazMerchant: Dear â¦@RahulGandhiâ©, Qatari Air Force paid Rs 1,875 crore for fully loaded #Rafale jet in 2015. Indian Air Force is pay…', 'neutral', 0, 'MinhazMerchant RahulGandhi ', '#rafale ', 'Sunil Motivaras', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Modi', ''),
(1144, '2019-02-10 03:49:05', 'RT @advvinodkalia: #ForTheFirstTime India’s soft power is now getting recognition worldwide with the pro-active leadership of PM Modi. Int…', 'positive', 0, 'advvinodkalia ', '#forthefirsttime ', 'vinay kumar', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Modi', ''),
(1145, '2019-02-10 03:49:04', 'RT @AniSingam: #tnwelcomesmodi Heartly welcome MOdi jiiii https://t.co/ATL3TTCRga', 'positive', 0, 'AniSingam ', '#tnwelcomesmodi ', 'Thamizhan J', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Modi', ''),
(1146, '2019-02-10 03:49:04', 'According to my internle sarvey among journalists, Modi will loose big in upcuming lock sabha erections. Cangress a… https://t.co/JTZyY8CX6t', 'neutral', 0, '', '', 'Asshutosh', 'http://pbs.twimg.com/profile_images/1094061514527526912/hurRsodF_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1147, '2019-02-10 03:49:02', 'RT @im_saiganesh: Toilet coverage in Tamil Nadu:\n\n2014 - 52.30%\n2015 - 62.42%\n2016 - 74.57%\n2017 - 97.94%\n2018 - 100%\n\nAlmost half of the t…', 'neutral', 0, 'im_saiganesh ', '', 'परशà¥à¤°à¤¾à¤® 🇮🇳', 'http://pbs.twimg.com/profile_images/1092427439249121281/QNZPZnZQ_normal.jpg', 'India', 'Modi', ''),
(1148, '2019-02-10 03:49:00', 'One of the biggest crime done by PM @narendramodi is \n\nReducing Corruption in India.. Hats off.ðŸ‘ðŸ‘ðŸ‘\n\nTN loves modi… https://t.co/a6X5PlbJxh', 'positive', 0, 'narendramodi ', '', 'DR.NARENDRAN', 'http://pbs.twimg.com/profile_images/1081788128531116033/OVLCoKwq_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1149, '2019-02-10 03:48:59', 'RT @vibhor_anand: On the Scale of the 10, How much would you rate Modi Govt in last 4.5 years??', 'neutral', 0, 'vibhor_anand ', '', 'rajesh sharan', 'http://pbs.twimg.com/profile_images/765084029116878848/k0var_wb_normal.jpg', 'Noida', 'Modi', ''),
(1150, '2019-02-10 03:48:58', 'RT @SwrajINC: Modi destroyed India..Let him out of India now. #GoBackModi #GoBackSadistModi https://t.co/1C524xouYe', 'positive', 0, 'SwrajINC ', '#gobackmodi #gobacksadistmodi ', 'Jegatheeswaran', 'http://pbs.twimg.com/profile_images/980485919223422976/L8ykb2gX_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1151, '2019-02-10 03:48:58', 'RT @adgpi: Shri Narendra Modi @PMOindia laid foundation stone for #Sela #Tunnel project.Two tunnels of 1790 & 475 mtrs will be constructed…', 'neutral', 0, 'adgpi PMOIndia ', '#sela #tunnel ', 'Ramesh Kumar⛳⛳⛳#IABM', 'http://pbs.twimg.com/profile_images/1092042572032344064/LrBijCpl_normal.jpg', 'à¤à¤¾à¤°à¤¤ ', 'Modi', ''),
(1152, '2019-02-10 03:48:58', 'RT @pbls1952: The provider of Jan Auwsadhi scheme of very cheap good quality generic medicine to help the ill to improve from sickness our…', 'neutral', 0, 'pbls1952 ', '', 'Style Pandi', 'http://pbs.twimg.com/profile_images/1089191114202959872/QLYOpmB0_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1153, '2019-02-10 03:48:56', 'RT @srspdkt: #GoBackModi\nAndhra is unwelcoming you Mr Prime Minister Modi..... !\n\nYou are the unwelcome Guest everywhere in India...! \n\nPle…', 'negative', 0, 'srspdkt ', '#gobackmodi ', 'alan lewis', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Modi', ''),
(1154, '2019-02-10 03:48:56', '#GoBackModi #GoBackSadistModi #DarpokModi #ChowkidaarChorHai #BJP_à¤à¤—ाओ_देश_बचाओ \n\nThese are the reactions Indians g… https://t.co/MX3rkRIdWR', 'neutral', 0, '', '#gobackmodi #gobacksadistmodi #darpokmodi #chowkidaarchorhai #bjp_à¤à¤—ाओ_देश_बचाओ ', 'KilaFateh #INC', 'http://pbs.twimg.com/profile_images/1084135336601518080/9QQpLV45_normal.jpg', 'India', 'Modi', ''),
(1155, '2019-02-10 03:48:56', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'Bharat Patil', 'http://pbs.twimg.com/profile_images/1060991613516873728/1qit3A3i_normal.jpg', 'Maharashtra, India', 'Modi', ''),
(1156, '2019-02-10 03:48:56', 'RT @rkhuria: Yeddyurappa has let the cat out of bag. ‘Modi, Shah will manage Judges’. Is this how Judge Loya & Rafale judgements were manag…', 'neutral', 0, 'rkhuria ', '', 'ð’œð“ð“Œð“Ž ð’¥â„´ð“ˆâ„¯', 'http://pbs.twimg.com/profile_images/927848072259891200/69xvk5oG_normal.jpg', 'Bengaluru, India', 'Modi', ''),
(1157, '2019-02-10 03:48:55', 'RT @srspdkt: #GoBackModi\nAndhra is unwelcoming you Mr Prime Minister Modi..... !\n\nYou are the unwelcome Guest everywhere in India...! \n\nPle…', 'negative', 0, 'srspdkt ', '#gobackmodi ', 'Feku PhD in Entire Political Science😛', 'http://pbs.twimg.com/profile_images/1093690848762572802/zvypot5D_normal.jpg', 'Kashmir to Kanyakumari', 'Modi', ''),
(1158, '2019-02-10 03:48:55', 'RT @savukku: @DrTamilisaiBJP @narendramodi @NamoApp There are so much hospitals that Modi is inaugurating. Then why Arun Jaitley flies to…', 'neutral', 0, 'savukku DrTamilisaiBJP narendramodi NamoApp ', '', 'Petchirajan', 'http://pbs.twimg.com/profile_images/976024108356968448/vXmrgqfV_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1159, '2019-02-10 03:48:55', 'RT @the_hindu: Here are four reasons why the line of attack against The Hindu story on Rafale is not only shallow, but also implicates the…', 'negative', 0, 'the_hindu ', '', 'Raghurama Sastry M', 'http://pbs.twimg.com/profile_images/928306585813762054/KZPK5Ui6_normal.jpg', 'Bangalore, India', 'Modi', ''),
(1160, '2019-02-10 03:48:55', 'RT @manavjoshi18: #TNWelcomesModi #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• Modi Govt provided All facility to SL Tamils. https://t.co/jpqhJea5WB', 'neutral', 0, 'manavjoshi18 ', '#tnwelcomesmodi #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• ', 'BJP4ARCOT', 'http://pbs.twimg.com/profile_images/931942265676742656/XZEhWDHQ_normal.jpg', 'Arcot, India', 'Modi', ''),
(1161, '2019-02-10 03:48:54', '@RiaRevealed @SaumyadeepDas4 We can say congress is better option then modi.', 'neutral', 0, 'RiaRevealed SaumyadeepDas4 ', '', 'Harman Singh', 'http://pbs.twimg.com/profile_images/1090800060919513089/DGpCXQk5_normal.jpg', 'Edmonton, Alberta', 'Modi', ''),
(1162, '2019-02-10 03:48:54', 'RT @mvmeet: Name: Narendra Modi\nCM: 13 yrs\nPM of India: Since last 5 yrs\nLeaves taken: 0\nCash in hand: Rs 48,944\nDoes he own vehicle: NO\nHo…', 'neutral', 0, 'mvmeet ', '', 'Dabang DIDI', 'http://pbs.twimg.com/profile_images/1092298635247783936/qJA8wSgM_normal.jpg', 'Ahmadabad City, India', 'Modi', ''),
(1163, '2019-02-10 03:48:54', 'Modi’s decision to buy 36 Rafales shot the price of each jet up by 41% https://t.co/kkLJT1Yq86', 'positive', 0, '', '', 'Manish Kumar', 'http://pbs.twimg.com/profile_images/444485531104063488/TGubyqA-_normal.jpeg', 'moradabad, uttar pradesh', 'Modi', ''),
(1164, '2019-02-10 03:48:53', 'RT @WarrierCan: Modi will overrun the south ... soon\n\n#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• https://t.co/SVilrERGt3', 'neutral', 0, 'WarrierCan ', '#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• ', 'Tathaaasthu🇮🇳', 'http://pbs.twimg.com/profile_images/1069715762078732288/YzaK6y5k_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1165, '2019-02-10 03:48:52', 'RT @swamisaranamm: During Modi Government, unemployment is seriously horrible 🙈\n\n22 applicants for one PM POST\n\n#TNWelcomesModi \n\n#DMKFails…', 'neutral', 0, 'swamisaranamm ', '#tnwelcomesmodi #dmkfails ', 'smita kishore', 'http://pbs.twimg.com/profile_images/1093905621366202368/Lzmj4imq_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1166, '2019-02-10 03:48:52', 'RT @rachitseth: RW led a protest against Twitter by first trending “Protest Against Twitterâ€,then marching towards Twitter office in Delhi,…', 'neutral', 0, 'rachitseth ', '', 'Suneet Garg', 'http://pbs.twimg.com/profile_images/1038599729536327680/CrPpzp3S_normal.jpg', 'My iPhone X', 'Modi', '');
INSERT INTO `posts` (`id`, `posted`, `text`, `sentiment`, `count`, `usermentions`, `tags`, `username`, `imageurl`, `location`, `keyword`, `relevant`) VALUES
(1167, '2019-02-10 03:48:51', 'RT @savukku: #GoBackModi\n\n#GoBackSadistModi \n\nWhy Tirupur’s Rs 42,000 crore textile hub fears a wipeout\n\nhttps://t.co/M11N0Eutv7', 'neutral', 0, 'savukku ', '#gobackmodi #gobacksadistmodi ', 'மூவேநà¯à®¤à®©à¯ போஸà¯', 'http://pbs.twimg.com/profile_images/829496769213915137/FPFbeA1n_normal.jpg', 'மதà¯à®°à¯ˆ', 'Modi', ''),
(1168, '2019-02-10 03:48:51', 'RT @ButtaRenuka_MP: Modi ji denied SCS to AP,\nModi ji denied Special package to AP,\nModi ji denied Funds for Capital city,\nModi ji denied a…', 'positive', 0, 'ButtaRenuka_MP ', '', 'Rajesh Chennupati', 'http://pbs.twimg.com/profile_images/1080460669571485698/zjLim0dr_normal.jpg', 'Chennai, India', 'Modi', ''),
(1169, '2019-02-10 03:48:51', 'RT @TN_PYC: #GoBackModi\nAtrocities of Modi Regime \n👉 Thoothukudi Massacre\n👉NEET murders\n👉 Obstructing Keezhadi excavations\n👉 Hindi impositi…', 'neutral', 0, 'TN_PYC ', '#gobackmodi ', 'Suman', 'http://pbs.twimg.com/profile_images/1093504384716042241/xq3uw3BY_normal.jpg', 'Hyderabad, India', 'Modi', ''),
(1170, '2019-02-10 03:48:50', 'Mr.MODI ji Instead of your visit to AP, pls. send ED & CBI its very help to our state in development.', 'neutral', 0, '', '', 'Bommadevara seshagiri rao', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Modi', ''),
(1171, '2019-02-10 03:48:49', 'RT @Champ_raushan: #TNWelcomesModi This man takes immense care about TN that no one in the history of India has done this much to this stat…', 'neutral', 0, 'Champ_raushan ', '#tnwelcomesmodi ', 'Pachiappan', 'http://pbs.twimg.com/profile_images/1084737976813404160/j_MQy1zR_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1172, '2019-02-10 03:48:48', '@imda67032074 And there are lots of many other things that he did if i start to wrote than the comment will not en… https://t.co/UBIZ4Wo6TO', 'negative', 0, 'imda67032074 ', '', 'Aakriti', 'http://pbs.twimg.com/profile_images/1093041528593801216/u4_5HC2g_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1173, '2019-02-10 03:48:46', 'RT @arvindgunasekar: You promised us the moon but ended up giving the mirage of the moon. You can fool some people all the time, all people…', 'positive', 0, 'arvindgunasekar ', '', 'Sriram RJ', 'http://pbs.twimg.com/profile_images/505735763107921920/IGuCvqWQ_normal.jpeg', 'Morrisville, NC', 'Modi', ''),
(1174, '2019-02-10 03:48:46', 'RT @indsamachar: Modi’s campaign gets major thrust : Indian deposits in Swiss banks dropped by 80% since 2014. -\n\nPiyush Goyal, in charge o…', 'neutral', 0, 'indsamachar ', '', 'RAJESH VERMAA®', 'http://pbs.twimg.com/profile_images/1092816056245055493/B9Wur9vs_normal.jpg', 'continues Retweeters Unfollowe', 'Modi', ''),
(1175, '2019-02-10 03:48:45', 'RT @republic: #55YearsVs55Months | Has 55 months of Modi done more for India than 55 years of Congress rule?', 'neutral', 0, 'republic ', '#55yearsvs55months ', 'Ashish Gupta', 'http://pbs.twimg.com/profile_images/1092831028622839809/XLOJV2kS_normal.jpg', 'Delhi ', 'Modi', ''),
(1176, '2019-02-10 03:48:44', 'RT @HLKodo: Modi gives hope and confidence to the kids ðŸ™ðŸ™ðŸ™\nDMK takes the savings even from five year old kids 🤦â€â™‚ï¸ðŸ¤¦â€â™‚ï¸ðŸ¤¦â€â™‚ï¸\n#TNWelcomesModi…', 'negative', 0, 'HLKodo ', '#tnwelcomesmodi ', 'Yashodhara 🇮🇳', 'http://pbs.twimg.com/profile_images/1076375639601508352/XBfD3XTM_normal.jpg', 'India', 'Modi', ''),
(1177, '2019-02-10 03:48:43', 'RT @PMOIndia: I assure you, those who have looted the nation will continue to be scared of Narendra Modi: PM @narendramodi in the Lok Sabha', 'neutral', 0, 'PMOIndia narendramodi ', '', 'umaV', 'http://pbs.twimg.com/profile_images/1094177793573670914/Wc_rXPlX_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1178, '2019-02-10 03:48:42', 'RT @pgopala11: Day 1 - Chartisgarh, Bengal \nDay 2 - Arunachal, Assam, Tripura.\nDay 3 - Tamil Nadu, Andhra, Karnataka.\nDay 4 - U P\nDay 5 - H…', 'neutral', 0, 'pgopala11 ', '', 'nagesh', 'http://pbs.twimg.com/profile_images/1088190242702741504/tOOKvDJ5_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1179, '2019-02-10 03:48:41', 'RT @LokeshRamekar: \"This is how people welcome Modi\"\n😂😂😂 Are Bhai Bhai Bhai..\n#TNWelcomesModi \n#GoBackModi \n#GoBackModi https://t.co/sb0fV2…', 'positive', 0, 'LokeshRamekar ', '#tnwelcomesmodi #gobackmodi #gobackmodi ', 'Truthful', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Modi', ''),
(1180, '2019-02-10 03:48:41', 'RT @im_saiganesh: Toilet coverage in Tamil Nadu:\n\n2014 - 52.30%\n2015 - 62.42%\n2016 - 74.57%\n2017 - 97.94%\n2018 - 100%\n\nAlmost half of the t…', 'neutral', 0, 'im_saiganesh ', '', 'BJP4ARCOT', 'http://pbs.twimg.com/profile_images/931942265676742656/XZEhWDHQ_normal.jpg', 'Arcot, India', 'Modi', ''),
(1181, '2019-02-10 03:48:40', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'Ocean is Calling', 'http://pbs.twimg.com/profile_images/1012529708163059713/iCxfGtwf_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1182, '2019-02-10 03:48:40', 'RT @BJP4India: It’s the first time in the history of this country that a CM sat on dharna to shield the corrupt who looted the poor of thei…', 'negative', 0, 'BJP4India ', '', 'Varsha Charan', 'http://pbs.twimg.com/profile_images/1059770566801059840/3Zk6TeUz_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1183, '2019-02-10 03:48:40', 'RT @kuljeetschahal: These girls from North-East took a resolution of making Modi Ji as @narendramodi ji Again . #AbkiBaarPhirModiSarkaar #B…', 'neutral', 0, 'kuljeetschahal narendramodi ', '#abkibaarphirmodisarkaar ', 'BHAGWANARAM GEHLOT', 'http://pbs.twimg.com/profile_images/1081769390025015296/n1f2ut8W_normal.jpg', 'India', 'Modi', ''),
(1184, '2019-02-10 03:48:40', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'Gaurav', 'http://pbs.twimg.com/profile_images/1092025174407303168/W9jcWjZb_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1185, '2019-02-10 03:48:40', 'RT @Payal_Rohatgi: So #StopBrahminicalPatriarchy drama by dear @jack was done by whose PR plan 😡 U guys should be banned from worlds larges…', 'neutral', 0, 'Payal_Rohatgi jack ', '#stopbrahminicalpatriarchy ', 'Rajeev', 'http://pbs.twimg.com/profile_images/843518901015076864/fWrmqwFM_normal.jpg', 'India', 'Modi', ''),
(1186, '2019-02-10 03:48:39', 'RT @narendramodi177: Retweet If You Want Modi Again. \n#TNWelcomesModi https://t.co/5s1cj8L3E0', 'neutral', 0, 'narendramodi177 ', '#tnwelcomesmodi ', 'Darpana 🎬', 'http://pbs.twimg.com/profile_images/1093914965977657344/P8iTEvsH_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1187, '2019-02-10 03:48:39', '@the_hindu Now,modi should consider CBI,ED or Income tax department.', 'positive', 0, 'the_hindu ', '', 'नवाब साहबðŸ˜â€â€Žâ€Ž', 'http://pbs.twimg.com/profile_images/1085518188723367937/_36h9wuE_normal.jpg', 'New York, USA', 'Modi', ''),
(1188, '2019-02-10 03:48:37', 'RT @HLKodo: Modi gives hope and confidence to the kids ðŸ™ðŸ™ðŸ™\nDMK takes the savings even from five year old kids 🤦â€â™‚ï¸ðŸ¤¦â€â™‚ï¸ðŸ¤¦â€â™‚ï¸\n#TNWelcomesModi…', 'negative', 0, 'HLKodo ', '#tnwelcomesmodi ', 'Keerthana BJP Ramanathapuram', 'http://pbs.twimg.com/profile_images/1089056687271464961/5XrmPXSU_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1189, '2019-02-10 03:48:37', '@HRajaBJP Go back modi', 'neutral', 0, 'HRajaBJP ', '', 'King', 'http://pbs.twimg.com/profile_images/1020680969710231552/LELbVFr6_normal.jpg', 'Egmore Nungambakkam, India', 'Modi', ''),
(1190, '2019-02-10 03:48:36', 'Worried About Nitin Gadkari Emerging As Alternative To PM Modi: Sharad Pawar\n\nhttps://t.co/BUd4nvoG0i', 'neutral', 1, '', '', 'Outlook Magazine', 'http://pbs.twimg.com/profile_images/657904406155759617/IYxrXEPi_normal.jpg', 'New Delhi, India', 'Modi', ''),
(1191, '2019-02-10 03:48:35', '#GoBackModi #GoBackSadistModi #BarbedaModi Why are you coming to south india mainly tamilnadu. Where have you gone… https://t.co/r2rexDJBNU', 'neutral', 0, '', '#gobackmodi #gobacksadistmodi #barbedamodi ', 'sivaram', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Modi', ''),
(1192, '2019-02-10 03:48:34', 'RT @INCHimachal: Congress President Rahul Gandhi convened a meeting with PCC president and CLP leaders of Congress Party Today. Congress P…', 'neutral', 0, 'INCHimachal ', '', 'Himachal Pradesh Congress Sevadal', 'http://pbs.twimg.com/profile_images/1068189427644674049/JXTbah61_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1193, '2019-02-10 03:48:34', 'RT @anujg: Internal security transformation under PM Modi \n\nComprehensive article by â¦@c_aashishâ©\n\nhttps://t.co/YJuaAVht7F https://t.co/Rnn…', 'neutral', 0, 'anujg c_aashish ', '', 'Amol Tikam', 'http://pbs.twimg.com/profile_images/686524658582032385/VXtfVs-f_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1194, '2019-02-10 03:48:32', 'RT @BhaguAthavanad: Toilet coverage in Tamil Nadu:\n\n2014 - 52.30%\n2015 - 62.42%\n2016 - 74.57%\n2017 - 97.94%\n2018 - 100%\n\nAlmost half of the…', 'neutral', 0, 'BhaguAthavanad ', '', 'Thamizhan J', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Modi', ''),
(1195, '2019-02-10 03:48:31', 'RT @Kuntal_Amin: Now @madhukishwar should have a problem with this image showing her subset of @ShefVaidya \n\nJust because Shefali ji has m…', 'positive', 0, 'Kuntal_Amin madhukishwar ShefVaidya ', '', 'Shiv Raj Mathur', 'http://pbs.twimg.com/profile_images/690585896375091202/KanRoanj_normal.jpg', 'Mumbai, India', 'Modi', ''),
(1196, '2019-02-10 03:48:31', 'RT @TN_PYC: #GoBackModi\nAtrocities of Modi Regime \n👉 Thoothukudi Massacre\n👉NEET murders\n👉 Obstructing Keezhadi excavations\n👉 Hindi impositi…', 'neutral', 0, 'TN_PYC ', '#gobackmodi ', 'Telugodu', 'http://pbs.twimg.com/profile_images/1091166369310224384/oisaiJUu_normal.jpg', 'California, USA', 'Modi', ''),
(1197, '2019-02-10 03:21:28', '[IN] - Morning digest: PM Narendra Modi in Tamil Nadu, reasons why the attacks on The Hindu’s Rafale story are self-implicating, and more | The Hindu ', 'neutral', 1, '', '', 'AutoNewspaperAdmin', '', 'Mumbai, India', 'Modi', ''),
(1198, '2019-02-10 03:02:36', '[IN] - Chandrababu Naidu Plans Protests As PM Modi Visits Andhra Pradesh Today | NDTV ', 'neutral', 1, '', '', 'AutoNewspaperAdmin', '', 'Mumbai, India', 'Modi', ''),
(1199, '2019-02-10 02:59:20', 'Ok. After realising that it is now just impossible to deny the tremendous progress made by Modi Sarkar in cleaning up Ganga, change of tack by secular people - Why only Ganga, replicate it for other rivers as they are sacred too. ', 'neutral', 2, '', '', 'santouryuu', '', 'Mumbai, India', 'Modi', ''),
(1200, '2019-02-10 02:51:24', '[IN] - Morning digest: PM Narendra Modi in Tamil Nadu, reasons why the attacks on The Hindu’s Rafale story are self-implicating, and more ', 'neutral', 1, '', '', 'AutoNewsAdmin', '', 'Mumbai, India', 'Modi', ''),
(1201, '2019-02-10 02:46:30', '[IN] - Chandrababu Naidu Plans Protests As PM Modi Visits Andhra Pradesh Today ', 'neutral', 1, '', '', 'AutoNewsAdmin', '', 'Mumbai, India', 'Modi', ''),
(1202, '2019-02-10 02:23:24', 'T60rp vs Argon MkIII I am considering getting either the T60rp or Argon Mk3 because I want some high end closed back headphones. I will be using the Modi 3 and Magni 3 as my dac and amp combo to drive them. Problem is I am finding it hard to decide between them. All up the T60rp will cost $380 AUD and the Argons will cost roughly $450 AUD including the pleather pads and shipping. Which do you prefer and what would be the best bang for buck option? Thanks. ', 'neutral', 3, '', '', 'King_Zalami', '', 'Mumbai, India', 'Modi', ''),
(1203, '2019-02-10 01:57:15', '[IN] - BJP-AIADMK alliance buzz grows as Narendra Modi visits Tamil Nadu today | Hindustan Times ', 'neutral', 1, '', '', 'AutoNewspaperAdmin', '', 'Mumbai, India', 'Modi', ''),
(1204, '2019-02-10 01:55:24', 'BJP-AIADMK alliance buzz grows as Narendra Modi visits Tamil Nadu today ', 'neutral', 1, '', '', 'newsbot_', '', 'Mumbai, India', 'Modi', ''),
(1205, '2019-02-10 01:45:45', '@Reuters: .@Breakingviews Viewsroom podcast: @ugalani explains how Indian Prime Minister Modi’s budget is tainting the government’s reputation for fiscal prudence as the country prepares to go to the polls in next few months https://t.co/i3Smu4Cj5A https://t.co/8FHn3zHnpZ ', 'neutral', 1, '', '', '-en-', '', 'Mumbai, India', 'Modi', ''),
(1206, '2019-02-10 01:45:29', '[IN] - BJP-AIADMK alliance buzz grows as Narendra Modi visits Tamil Nadu today ', 'neutral', 1, '', '', 'AutoNewsAdmin', '', 'Mumbai, India', 'Modi', ''),
(1207, '2019-02-10 00:53:00', '[IN] - Amit Shah-PM Modi behind bid to topple Karnataka govt: Congress | Times of India ', 'neutral', 1, '', '', 'AutoNewspaperAdmin', '', 'Mumbai, India', 'Modi', ''),
(1208, '2019-02-10 00:48:53', '[IN] - Amit Shah-PM Modi behind bid to topple Karnataka govt: Congress ', 'neutral', 1, '', '', 'AutoNewsAdmin', '', 'Mumbai, India', 'Modi', ''),
(1209, '2019-02-10 00:05:31', 'PM Modi’s rally in Tamil Nadu today, farmers, youths in focus ', 'neutral', 1, '', '', 'khaasadmi', '', 'Mumbai, India', 'Modi', ''),
(1210, '2019-02-10 00:04:19', 'Pakistan is meddling in the election. Tulsi put out a tweet about plastics in the ocean and how biodegradable hemp can be better.\n\nLo and behold someone somehow twists this into a Modi thing. As if Tulsi is responsible at all for Modi. And why Modi? Why push it so hard in everything?\n\nThere is this from HOMELAND SECURITY BLOG. @Homesecpk\n\nhttps://twitter.com/Homesecpak/status/1094245467221827586\n\nhttps://i.imgur.com/BgSayyHr.jpg\n\nHomelandsecurity.pk\n\nIslamabad, Pakistan\n\nhttps://i.imgur.com/Fwne...', 'negative', 5, '', '', 'EvilPhd666', '', 'Mumbai, India', 'Modi', ''),
(1211, '2019-02-10 03:52:02', 'RT @MinhazMerchant: Dear â¦@RahulGandhiâ©, Qatari Air Force paid Rs 1,875 crore for fully loaded #Rafale jet in 2015. Indian Air Force is pay…', 'neutral', 0, 'MinhazMerchant RahulGandhi ', '#rafale ', 'Basava Nelavalli', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Minnesota, USA', 'Narendra Modi', ''),
(1212, '2019-02-10 03:51:57', 'RT @savukku: #GoBackModi\n\n#GoBackSadistModi \n\nWhy Tirupur’s Rs 42,000 crore textile hub fears a wipeout\n\nhttps://t.co/M11N0Eutv7', 'neutral', 0, 'savukku ', '#gobackmodi #gobacksadistmodi ', 'Ben', 'http://pbs.twimg.com/profile_images/917929107630866432/CJZvPAOV_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1213, '2019-02-10 03:51:55', 'RT @provenky: #TNWelcomesModi \nTo wipe out the secessionist elements, to restore the Tamil Pride which was castrated by the 2G scam tainted…', 'neutral', 0, 'provenky ', '#tnwelcomesmodi ', 'Pachiappan', 'http://pbs.twimg.com/profile_images/1084737976813404160/j_MQy1zR_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1214, '2019-02-10 03:51:45', 'RT @TimesNow: To increase the BJP’s footprint in South India, PM Narendra Modi will be on a one-day visit to Andhra Pradesh, Karnataka and…', 'neutral', 0, 'TimesNow ', '', 'Amar', 'http://pbs.twimg.com/profile_images/1078143134494646272/KcZrEu_3_normal.jpg', 'Dibrugarh', 'Narendra Modi', ''),
(1215, '2019-02-10 03:51:43', 'RT @manoj_gujaran: #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®•\nTamil Nadu got higher funds allocations, projects under NDA: @narendramodi\n1) 9.5 lakh women in T…', 'neutral', 0, 'manoj_gujaran narendramodi ', '#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• ', 'Vikash Kumar', 'http://pbs.twimg.com/profile_images/684083693267230720/nYHsejQX_normal.jpg', 'India', 'Narendra Modi', ''),
(1216, '2019-02-10 03:51:29', 'RT @savukku: #GoBackModi\n\n#GoBackSadistModi \n\nWhy Tirupur’s Rs 42,000 crore textile hub fears a wipeout\n\nhttps://t.co/M11N0Eutv7', 'neutral', 0, 'savukku ', '#gobackmodi #gobacksadistmodi ', 'bsk', 'http://pbs.twimg.com/profile_images/1093232122666467329/Pej7reK-_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1217, '2019-02-10 03:51:18', 'RT @UpalaSen: @jamewils sets the record straight on the Narendra Modi establishment’s pervasive data-twisting @ttindia @SankarshanT @VKSwam…', 'neutral', 0, 'UpalaSen jamewils ttindia SankarshanT ', '', 'pappachino', 'http://pbs.twimg.com/profile_images/774940062949662720/ckQRXeI1_normal.jpg', 'Singapore', 'Narendra Modi', ''),
(1218, '2019-02-10 03:51:15', 'RT @savukku: #GoBackModi\n\n#GoBackSadistModi \n\nWhy Tirupur’s Rs 42,000 crore textile hub fears a wipeout\n\nhttps://t.co/M11N0Eutv7', 'neutral', 0, 'savukku ', '#gobackmodi #gobacksadistmodi ', 'Mohamed Ilyas', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Narendra Modi', ''),
(1219, '2019-02-10 03:51:12', 'RT @JantaKaReporter: Pro-BJP filmmaker Vivek Agnihotri left embarrassed after his Twitter poll gives huge advantage to Rahul Gandhi over Na…', 'neutral', 0, 'JantaKaReporter ', '', 'Jills Daniel', 'http://pbs.twimg.com/profile_images/888373766484619264/GtYLG8Pr_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1220, '2019-02-10 03:51:12', 'RT @savukku: #GoBackModi\n\n#GoBackSadistModi \n\nWhy Tirupur’s Rs 42,000 crore textile hub fears a wipeout\n\nhttps://t.co/M11N0Eutv7', 'neutral', 0, 'savukku ', '#gobackmodi #gobacksadistmodi ', 'Ramkumar', 'http://pbs.twimg.com/profile_images/1039225852511305728/gspMn0UC_normal.jpg', 'Muscat, Oman', 'Narendra Modi', ''),
(1221, '2019-02-10 03:51:08', 'RT @ndtv: PM Modi greeted with black flags in Guwahati, protests may intensify today\n\nRead here: https://t.co/5WDVru4rgd\n#CitizenshipBill h…', 'neutral', 0, 'ndtv ', '#citizenshipbill ', 'M.Keerthi Kumar Redd', 'http://pbs.twimg.com/profile_images/929304899480829952/ggRmJ10t_normal.jpg', 'Hyderabad, Telangana, India', 'Narendra Modi', ''),
(1222, '2019-02-10 03:51:08', 'Huge hoardings from Gannavaram airport — where Modi will land at 10 am were put up along the National Highway up to… https://t.co/V7ftXHcpm5', 'positive', 0, '', '', 'News18 Elections', 'http://pbs.twimg.com/profile_images/1093066173460160512/5sg5ca0f_normal.jpg', 'India', 'Narendra Modi', ''),
(1223, '2019-02-10 03:51:07', 'RT @dna: PM Narendra Modi Acts East, talks up Citizenship Bill https://t.co/iboyRgmwVf https://t.co/ylaohrDZcB', 'positive', 0, 'dna ', '', 'LaKsHyA D AdVaNi', 'http://pbs.twimg.com/profile_images/1065676921894141952/RwNMP3Eb_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1224, '2019-02-10 03:51:03', 'RT @UpalaSen: @jamewils sets the record straight on the Narendra Modi establishment’s pervasive data-twisting @ttindia @SankarshanT @VKSwam…', 'neutral', 0, 'UpalaSen jamewils ttindia SankarshanT ', '', '🌠💲anjeev â—🌴', 'http://pbs.twimg.com/profile_images/974183367770976256/OmVr9ZMy_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1225, '2019-02-10 03:50:51', 'RT @vargheseKgeorge: They are all busy asking questions at Narendra Modi’s press conferences perhaps? https://t.co/E2fM8XzPnI', 'neutral', 0, 'vargheseKgeorge ', '', 'Rezaul Hasan Laskar | â€Ø±Ø¶Ø§ الØسن لسکر', 'http://pbs.twimg.com/profile_images/1080894026528768002/jxtBtXBW_normal.jpg', 'Dilli', 'Narendra Modi', ''),
(1226, '2019-02-10 03:50:49', 'RT @OpIndia_com: Narendra Modi also said that his government has always attempted to rid the state and the country of illegal immigrants an…', 'neutral', 0, 'OpIndia_com ', '', 'K', 'http://pbs.twimg.com/profile_images/884466250910269441/B7tMCl6x_normal.jpg', 'India', 'Narendra Modi', ''),
(1227, '2019-02-10 03:50:43', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'गà¥à¤°à¥ बनारसी', 'http://pbs.twimg.com/profile_images/1026671324519849984/78Wy_f-G_normal.jpg', 'New Delhi, India', 'Narendra Modi', ''),
(1228, '2019-02-10 03:50:39', 'RT @mvmeet: Name: Narendra Modi\nCM: 13 yrs\nPM of India: Since last 5 yrs\nLeaves taken: 0\nCash in hand: Rs 48,944\nDoes he own vehicle: NO\nHo…', 'neutral', 0, 'mvmeet ', '', 'The Alayaran', 'http://pbs.twimg.com/profile_images/674821694591123456/tYmWHqD-_normal.png', 'Kokrajhar, India - 783370', 'Narendra Modi', ''),
(1229, '2019-02-10 03:50:39', 'RT @RitaNegi11: #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®•\nNarendra Modi is the only leader who puts service before self. This nation needs him to forge ahead.…', 'neutral', 0, 'RitaNegi11 ', '#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• ', 'madmathi🇮🇳', 'http://pbs.twimg.com/profile_images/956205982299770880/FSloCwzD_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1230, '2019-02-10 03:50:37', 'RT @AnilMJacob: #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®•\nPM Narendra Modi likely to pick Tamil Nadu for 2nd seat this election ðŸ˜ðŸ˜\nIf it happens, BJP + will s…', 'neutral', 0, 'AnilMJacob ', '#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• ', 'Savitri S', 'http://pbs.twimg.com/profile_images/963435627705335809/fMxUqhYh_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1231, '2019-02-10 03:50:34', 'RT @htTweets: PM @narendramodi to unveil development projects in Karnataka’s twin cities of Hubballi, Dharwad today\nhttps://t.co/aBNS1nFs1e…', 'neutral', 0, 'htTweets narendramodi ', '', 'PRASHANT KASHYAP', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'India', 'Narendra Modi', ''),
(1232, '2019-02-10 03:50:27', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'Damo., â€â€Žâ€Žâ€â€Žâ€ŽØ¯Ø§Ù…Ùˆ', 'http://pbs.twimg.com/profile_images/1079042666283728896/CPdeUTRQ_normal.jpg', 'Tamilnadu', 'Narendra Modi', ''),
(1233, '2019-02-10 03:50:19', 'RT @hgermbo: Because of Narendra Modi ji we are getting free LPG connection under PMujjwalayojana scheme.. payaaropacho sir @narendramodi #…', 'positive', 0, 'hgermbo narendramodi ', '', 'Dr. Deep', 'http://pbs.twimg.com/profile_images/738796884043517952/lO89TV37_normal.jpg', 'Retweets r NOT endorsements', 'Narendra Modi', ''),
(1234, '2019-02-10 03:50:11', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'Gulam Jeelani', 'http://pbs.twimg.com/profile_images/1066281402788978689/onL0ASP8_normal.jpg', 'New Delhi, India', 'Narendra Modi', ''),
(1235, '2019-02-10 03:50:05', 'RT @savukku: #GoBackModi\n\n#GoBackSadistModi \n\nWhy Tirupur’s Rs 42,000 crore textile hub fears a wipeout\n\nhttps://t.co/M11N0Eutv7', 'neutral', 0, 'savukku ', '#gobackmodi #gobacksadistmodi ', 'Sivanantham Balakrishnan', 'http://pbs.twimg.com/profile_images/1128786868/siva_normal.png', 'Nungambakkam, Egmore Nungambak', 'Narendra Modi', ''),
(1236, '2019-02-10 03:50:01', 'RT @HAL_India: Finally Defmin tells Rajya Sabha, that there is no difference in the configuration of original 126 Rafale jets and the 36 o…', 'negative', 0, 'HAL_India ', '', 'Rohatash Punia', 'http://pbs.twimg.com/profile_images/885387140070113280/A55O3M72_normal.jpg', 'Jaipur, India', 'Narendra Modi', ''),
(1237, '2019-02-10 03:50:00', 'RT @OpIndia_com: Narendra Modi also said that his government has always attempted to rid the state and the country of illegal immigrants an…', 'neutral', 0, 'OpIndia_com ', '', 'Sandalwood 🇮🇳', 'http://pbs.twimg.com/profile_images/792183673088978944/QZsEhSZl_normal.jpg', 'India', 'Narendra Modi', ''),
(1238, '2019-02-10 03:50:00', 'To increase the BJP’s footprint in South India, PM Narendra Modi will be on a one-day visit to Andhra Pradesh, Karn… https://t.co/G48GsL2Fbs', 'neutral', 1, '', '', 'TIMES NOW', 'http://pbs.twimg.com/profile_images/548508720888442881/T4tYT9xR_normal.jpeg', 'India', 'Narendra Modi', ''),
(1239, '2019-02-10 03:49:53', 'RT @MinhazMerchant: Dear â¦@RahulGandhiâ©, Qatari Air Force paid Rs 1,875 crore for fully loaded #Rafale jet in 2015. Indian Air Force is pay…', 'neutral', 0, 'MinhazMerchant RahulGandhi ', '#rafale ', 'Kamesh Gadia', 'http://pbs.twimg.com/profile_images/771999371252510720/wW-fNkV4_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1240, '2019-02-10 03:49:52', 'RT @LDAgarwal1: @republic During UPA rule, politics had become a dirty word for making illegal money, scams and corruption !\n\nNarendra Modi…', 'negative', 0, 'LDAgarwal1 republic ', '', 'Piyush Sharma', 'http://pbs.twimg.com/profile_images/1007792900174950400/zL8HpVDd_normal.jpg', 'India', 'Narendra Modi', ''),
(1241, '2019-02-10 03:49:45', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'True Indian', 'http://pbs.twimg.com/profile_images/1031386163309895680/G2de5v8m_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1242, '2019-02-10 03:49:42', 'RT @OpIndia_com: Narendra Modi also said that his government has always attempted to rid the state and the country of illegal immigrants an…', 'neutral', 0, 'OpIndia_com ', '', 'Mallubang77', 'http://pbs.twimg.com/profile_images/755665323525861376/u7dzZJyq_normal.jpg', 'Bangalore, India', 'Narendra Modi', ''),
(1243, '2019-02-10 03:49:39', 'RT @mvmeet: Name: Narendra Modi\nCM: 13 yrs\nPM of India: Since last 5 yrs\nLeaves taken: 0\nCash in hand: Rs 48,944\nDoes he own vehicle: NO\nHo…', 'neutral', 0, 'mvmeet ', '', 'Nitesh Sharma🇮🇳', 'http://pbs.twimg.com/profile_images/1066049667287404546/xwBylWRF_normal.jpg', 'Bengaluru, India', 'Narendra Modi', ''),
(1244, '2019-02-10 03:49:35', 'RT @mvmeet: Name: Narendra Modi\nCM: 13 yrs\nPM of India: Since last 5 yrs\nLeaves taken: 0\nCash in hand: Rs 48,944\nDoes he own vehicle: NO\nHo…', 'neutral', 0, 'mvmeet ', '', 'Vijay Raj Naikodi', 'http://pbs.twimg.com/profile_images/1035959517115109377/d-SmLCKq_normal.jpg', 'Gulbarga', 'Narendra Modi', ''),
(1245, '2019-02-10 03:49:32', 'RT @iMac_too: Padma Vibhushan Sharad Pawar said on Saturday that he was \"worried\" about Union minister Nitin Gadkari as he is being project…', 'neutral', 0, 'iMac_too ', '', 'Rohit Zutshi (Man of Times)', 'http://pbs.twimg.com/profile_images/865617895509721089/mNSHLsJY_normal.jpg', 'Pune, India', 'Narendra Modi', ''),
(1246, '2019-02-10 03:49:31', 'RT @MinhazMerchant: Dear â¦@RahulGandhiâ©, Qatari Air Force paid Rs 1,875 crore for fully loaded #Rafale jet in 2015. Indian Air Force is pay…', 'neutral', 0, 'MinhazMerchant RahulGandhi ', '#rafale ', 'Vishal🇮🇳', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Narendra Modi', ''),
(1247, '2019-02-10 03:49:24', 'RT @OpIndia_com: Narendra Modi also said that his government has always attempted to rid the state and the country of illegal immigrants an…', 'neutral', 0, 'OpIndia_com ', '', 'परशà¥à¤°à¤¾à¤® 🇮🇳', 'http://pbs.twimg.com/profile_images/1092427439249121281/QNZPZnZQ_normal.jpg', 'India', 'Narendra Modi', ''),
(1248, '2019-02-10 03:49:22', 'RT @manoj_gujaran: #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®•\nTamil Nadu got higher funds allocations, projects under NDA: @narendramodi\n1) 9.5 lakh women in T…', 'neutral', 0, 'manoj_gujaran narendramodi ', '#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• ', 'நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• The Saffron Tweeter 🇮🇳', 'http://pbs.twimg.com/profile_images/1090466790415757317/shcwCGYJ_normal.jpg', 'Here ', 'Narendra Modi', ''),
(1249, '2019-02-10 03:49:18', 'RT @savukku: #GoBackModi\n\n#GoBackSadistModi \n\nWhy Tirupur’s Rs 42,000 crore textile hub fears a wipeout\n\nhttps://t.co/M11N0Eutv7', 'neutral', 0, 'savukku ', '#gobackmodi #gobacksadistmodi ', 'shahulhameed', 'http://pbs.twimg.com/profile_images/1064904286310559744/TSagDgyt_normal.jpg', 'Indian', 'Narendra Modi', ''),
(1250, '2019-02-10 03:49:17', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'Jerry', 'http://pbs.twimg.com/profile_images/969059562480312321/FZlz7P94_normal.jpg', 'India', 'Narendra Modi', ''),
(1251, '2019-02-10 03:49:16', 'RT @OpIndia_com: Narendra Modi also said that his government has always attempted to rid the state and the country of illegal immigrants an…', 'neutral', 0, 'OpIndia_com ', '', 'Ajay P Shetty 🇮🇳🔱', 'http://pbs.twimg.com/profile_images/1091746933360578561/KsGUxa1g_normal.jpg', 'Udupi, India', 'Narendra Modi', ''),
(1252, '2019-02-10 03:49:12', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'ASHUTOSH MISHRA', 'http://pbs.twimg.com/profile_images/1084423110328147970/wO9kiFMo_normal.jpg', 'New Delhi, India', 'Narendra Modi', ''),
(1253, '2019-02-10 03:49:11', 'RT @MinhazMerchant: Dear â¦@RahulGandhiâ©, Qatari Air Force paid Rs 1,875 crore for fully loaded #Rafale jet in 2015. Indian Air Force is pay…', 'neutral', 0, 'MinhazMerchant RahulGandhi ', '#rafale ', 'Pinkal', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Narendra Modi', ''),
(1254, '2019-02-10 03:49:09', 'RT @firstpost: Some of the posters read #NoMoreModi, #ModiIsAMistake, Modi Never Again, etc. https://t.co/8SnmyYKAhO', 'negative', 0, 'firstpost ', '#nomoremodi #modiisamistake ', 'INJESTERS', 'http://pbs.twimg.com/profile_images/1046625999461527552/jFwkfItP_normal.jpg', 'Rolling Stones no Address', 'Narendra Modi', ''),
(1255, '2019-02-10 03:49:08', 'RT @ET_GBS: Witness the leader of the nation take the dais on the pressing matters of our economy for the fourth time at #ETGBS. As we move…', 'neutral', 0, 'ET_GBS ', '#etgbs ', 'Navratan Bhattad', 'http://pbs.twimg.com/profile_images/982678375968878599/kch_z7e9_normal.jpg', 'Raipur, India', 'Narendra Modi', ''),
(1256, '2019-02-10 03:49:06', 'RT @PradyotManikya: Seeing black balloons over the iconic Ujayanta Palace while Narendra Modi addresses the public at the Astabal Ground .…', 'neutral', 0, 'PradyotManikya ', '', 'अमन ll امن', 'http://pbs.twimg.com/profile_images/935093499963195392/eHaWdNhj_normal.jpg', 'Searching...', 'Narendra Modi', ''),
(1257, '2019-02-10 03:49:05', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'Raj Mohan', 'http://pbs.twimg.com/profile_images/848896419310260224/Et4SuMIy_normal.jpg', 'Chennai,India', 'Narendra Modi', ''),
(1258, '2019-02-10 03:49:05', 'RT @MinhazMerchant: Dear â¦@RahulGandhiâ©, Qatari Air Force paid Rs 1,875 crore for fully loaded #Rafale jet in 2015. Indian Air Force is pay…', 'neutral', 0, 'MinhazMerchant RahulGandhi ', '#rafale ', 'Sunil Motivaras', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Narendra Modi', ''),
(1259, '2019-02-10 03:48:58', 'RT @adgpi: Shri Narendra Modi @PMOindia laid foundation stone for #Sela #Tunnel project.Two tunnels of 1790 & 475 mtrs will be constructed…', 'neutral', 0, 'adgpi PMOIndia ', '#sela #tunnel ', 'Ramesh Kumar⛳⛳⛳#IABM', 'http://pbs.twimg.com/profile_images/1092042572032344064/LrBijCpl_normal.jpg', 'à¤à¤¾à¤°à¤¤ ', 'Narendra Modi', ''),
(1260, '2019-02-10 03:48:56', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'Bharat Patil', 'http://pbs.twimg.com/profile_images/1060991613516873728/1qit3A3i_normal.jpg', 'Maharashtra, India', 'Narendra Modi', ''),
(1261, '2019-02-10 03:48:55', 'RT @the_hindu: Here are four reasons why the line of attack against The Hindu story on Rafale is not only shallow, but also implicates the…', 'negative', 0, 'the_hindu ', '', 'Raghurama Sastry M', 'http://pbs.twimg.com/profile_images/928306585813762054/KZPK5Ui6_normal.jpg', 'Bangalore, India', 'Narendra Modi', ''),
(1262, '2019-02-10 03:48:54', 'RT @mvmeet: Name: Narendra Modi\nCM: 13 yrs\nPM of India: Since last 5 yrs\nLeaves taken: 0\nCash in hand: Rs 48,944\nDoes he own vehicle: NO\nHo…', 'neutral', 0, 'mvmeet ', '', 'Dabang DIDI', 'http://pbs.twimg.com/profile_images/1092298635247783936/qJA8wSgM_normal.jpg', 'Ahmadabad City, India', 'Narendra Modi', ''),
(1263, '2019-02-10 03:48:51', 'RT @savukku: #GoBackModi\n\n#GoBackSadistModi \n\nWhy Tirupur’s Rs 42,000 crore textile hub fears a wipeout\n\nhttps://t.co/M11N0Eutv7', 'neutral', 0, 'savukku ', '#gobackmodi #gobacksadistmodi ', 'மூவேநà¯à®¤à®©à¯ போஸà¯', 'http://pbs.twimg.com/profile_images/829496769213915137/FPFbeA1n_normal.jpg', 'மதà¯à®°à¯ˆ', 'Narendra Modi', ''),
(1264, '2019-02-10 03:48:43', 'RT @PMOIndia: I assure you, those who have looted the nation will continue to be scared of Narendra Modi: PM @narendramodi in the Lok Sabha', 'neutral', 0, 'PMOIndia narendramodi ', '', 'umaV', 'http://pbs.twimg.com/profile_images/1094177793573670914/Wc_rXPlX_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1265, '2019-02-10 03:48:40', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'Ocean is Calling', 'http://pbs.twimg.com/profile_images/1012529708163059713/iCxfGtwf_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1266, '2019-02-10 03:48:40', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'Gaurav', 'http://pbs.twimg.com/profile_images/1092025174407303168/W9jcWjZb_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1267, '2019-02-10 03:48:27', '@PDChina Shut d f*** up, this is why PM like Narendra Modi is needed to tackle cheap country like China .!!… https://t.co/hiKy1a0SHs', 'positive', 0, 'PDChina ', '', 'kushal chakraborty', 'http://pbs.twimg.com/profile_images/967276811976523779/UhscT6iF_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1268, '2019-02-10 03:48:26', 'RT @savukku: #GoBackModi\n\n#GoBackSadistModi \n\nWhy Tirupur’s Rs 42,000 crore textile hub fears a wipeout\n\nhttps://t.co/M11N0Eutv7', 'neutral', 0, 'savukku ', '#gobackmodi #gobacksadistmodi ', 'விழிதà¯à®¤à¯†à®´à¯ தமிழா', 'http://pbs.twimg.com/profile_images/911279773405421568/4tciK1IC_normal.jpg', 'Tiruppur, Tamil Nadu', 'Narendra Modi', ''),
(1269, '2019-02-10 03:48:25', 'RT @mvmeet: Name: Narendra Modi\nCM: 13 yrs\nPM of India: Since last 5 yrs\nLeaves taken: 0\nCash in hand: Rs 48,944\nDoes he own vehicle: NO\nHo…', 'neutral', 0, 'mvmeet ', '', 'Pratik Bharadwaj', 'http://pbs.twimg.com/profile_images/959757734001430530/tCydK6J8_normal.jpg', 'Brighton, England', 'Narendra Modi', ''),
(1270, '2019-02-10 03:48:22', 'RT @mvmeet: Name: Narendra Modi\nCM: 13 yrs\nPM of India: Since last 5 yrs\nLeaves taken: 0\nCash in hand: Rs 48,944\nDoes he own vehicle: NO\nHo…', 'neutral', 0, 'mvmeet ', '', 'Wolverine', 'http://pbs.twimg.com/profile_images/490998683639377920/Xje3r0x-_normal.jpeg', 'Mumbai, India', 'Narendra Modi', ''),
(1271, '2019-02-10 03:48:21', 'RT @svaradarajan: Prem Shankar Jha writes: We Are Witnessing the Death of the CBI. Will Indian Democracy Follow? https://t.co/X9oJ2MEA1S vi…', 'neutral', 0, 'svaradarajan ', '', 'پرندوں کی نظر', 'http://pbs.twimg.com/profile_images/1087595755991453696/_ktBeeQ0_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1272, '2019-02-10 03:48:19', 'RT @provenky: #TNWelcomesModi \nTo wipe out the secessionist elements, to restore the Tamil Pride which was castrated by the 2G scam tainted…', 'neutral', 0, 'provenky ', '#tnwelcomesmodi ', 'Crazy Panda', 'http://pbs.twimg.com/profile_images/1086146984556269568/NsDg7j4c_normal.jpg', 'Chennai, India', 'Narendra Modi', ''),
(1273, '2019-02-10 03:48:18', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'Kiran', 'http://pbs.twimg.com/profile_images/1083039975526916097/BaomFk_0_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1274, '2019-02-10 03:48:14', 'RT @UpalaSen: @jamewils sets the record straight on the Narendra Modi establishment’s pervasive data-twisting @ttindia @SankarshanT @VKSwam…', 'neutral', 0, 'UpalaSen jamewils ttindia SankarshanT ', '', 'شیوراج', 'http://pbs.twimg.com/profile_images/1038058345926512640/SCqoI2uk_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1275, '2019-02-10 03:48:10', 'RT @iMac_too: Padma Vibhushan Sharad Pawar said on Saturday that he was \"worried\" about Union minister Nitin Gadkari as he is being project…', 'neutral', 0, 'iMac_too ', '', 'Retweet Wale Baba', 'http://pbs.twimg.com/profile_images/511128977562288129/vhr1Z9l0_normal.jpeg', 'Mumbai, India', 'Narendra Modi', ''),
(1276, '2019-02-10 03:48:07', 'RT @nilanjanaroy: + \"Four reasons why the line of attack against The Hindu story on Rafale is not only shallow, but also implicates the Nar…', 'negative', 0, 'nilanjanaroy ', '', 'Veer', 'http://pbs.twimg.com/profile_images/1000651772195565568/fzuFBFFj_normal.jpg', 'Delhi-Mumbai-Bangalore', 'Narendra Modi', ''),
(1277, '2019-02-10 03:47:58', 'RT @LDAgarwal1: @shahid_siddiqui U will keep on repeating Lies after Lies, as a part of your disinformation campaign, naam ke vaste Journal…', 'neutral', 0, 'LDAgarwal1 shahid_siddiqui ', '', 'Beena Varshney', 'http://pbs.twimg.com/profile_images/597796094043508737/G7Rny6O3_normal.png', 'Mumbai, India', 'Narendra Modi', ''),
(1278, '2019-02-10 03:47:56', 'RT @tavleen_singh: Fifth Column: Modi’s farewell speech | The Indian Express https://t.co/asIF9KoftX', 'neutral', 0, 'tavleen_singh ', '', 'Soumitra Mujumdar', 'http://pbs.twimg.com/profile_images/1092778160175894530/V-iQJwMM_normal.jpg', 'Pune', 'Narendra Modi', ''),
(1279, '2019-02-10 03:47:53', 'RT @RitaNegi11: #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®•\nNarendra Modi is the only leader who puts service before self. This nation needs him to forge ahead.…', 'neutral', 0, 'RitaNegi11 ', '#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• ', 'Rajeshsingh', 'http://pbs.twimg.com/profile_images/1093114421273079810/4LeT9mlD_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1280, '2019-02-10 03:47:46', 'RT @manoj_gujaran: #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®•\nTamil Nadu got higher funds allocations, projects under NDA: @narendramodi\n1) 9.5 lakh women in T…', 'neutral', 0, 'manoj_gujaran narendramodi ', '#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• ', 'Rajeshsingh', 'http://pbs.twimg.com/profile_images/1093114421273079810/4LeT9mlD_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1281, '2019-02-10 03:47:44', 'RT @savukku: #GoBackModi\n\n#GoBackSadistModi \n\nWhy Tirupur’s Rs 42,000 crore textile hub fears a wipeout\n\nhttps://t.co/M11N0Eutv7', 'neutral', 0, 'savukku ', '#gobackmodi #gobacksadistmodi ', 'Manikandan', 'http://pbs.twimg.com/profile_images/1050741610814746624/bhxM0PKu_normal.jpg', 'Mettupalayam', 'Narendra Modi', ''),
(1282, '2019-02-10 03:47:38', 'RT @abpnewstv: PM Narendra Modi Watch LIVE https://t.co/kptCfGbV4l', 'neutral', 0, 'abpnewstv ', '', 'Jitendra Thakre', 'http://pbs.twimg.com/profile_images/1093917986841214976/gtlEf-D4_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1283, '2019-02-10 03:47:38', 'RT @Irfanulhakeem: 5 major left Student Organisations of our country are calling you to be part of the Delhi cahlo March, where students ac…', 'neutral', 0, 'Irfanulhakeem ', '', 'Sujesh #RebuildKerala', 'http://pbs.twimg.com/profile_images/1085527069432340480/aodCQn1V_normal.jpg', 'Kannur, Kerala', 'Narendra Modi', ''),
(1284, '2019-02-10 03:47:33', 'RT @savukku: #GoBackModi\n\n#GoBackSadistModi \n\nWhy Tirupur’s Rs 42,000 crore textile hub fears a wipeout\n\nhttps://t.co/M11N0Eutv7', 'neutral', 0, 'savukku ', '#gobackmodi #gobacksadistmodi ', 'நஜீர௠அலி', 'http://pbs.twimg.com/profile_images/972292008705368064/UA5lRgBp_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1285, '2019-02-10 03:47:31', 'RT @UpalaSen: @jamewils sets the record straight on the Narendra Modi establishment’s pervasive data-twisting @ttindia @SankarshanT @VKSwam…', 'neutral', 0, 'UpalaSen jamewils ttindia SankarshanT ', '', 'Sankarshan Thakur', 'http://pbs.twimg.com/profile_images/1066568998161211393/i_Q-ih9z_normal.jpg', 'Delhi. Calcutta. Elsewhere ', 'Narendra Modi', ''),
(1286, '2019-02-10 03:47:26', 'RT @RitaNegi11: #நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®•\nNarendra Modi is the only leader who puts service before self. This nation needs him to forge ahead.…', 'neutral', 0, 'RitaNegi11 ', '#நலà¯à®²à®¾à®Ÿà¯à®šà®¿_நாயகனே_வரà¯à®• ', 'Ram Sundaresan', 'http://pbs.twimg.com/profile_images/1007308994749198336/GIrZa_78_normal.jpg', 'Nanganallur, Chennai', 'Narendra Modi', ''),
(1287, '2019-02-10 03:47:25', 'RT @hgermbo: Because of Narendra Modi ji we are getting free LPG connection under PMujjwalayojana scheme.. payaaropacho sir @narendramodi #…', 'positive', 0, 'hgermbo narendramodi ', '', 'Pavan Kumar Varma', 'http://pbs.twimg.com/profile_images/982617034285395971/ZIQd7dnF_normal.jpg', 'Hyderabad, India', 'Narendra Modi', ''),
(1288, '2019-02-10 03:47:21', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'Zack زیک', 'http://pbs.twimg.com/profile_images/1079756319932874753/UwkaJhag_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1289, '2019-02-10 03:47:20', 'RT @ndtv: PM Modi greeted with black flags in Guwahati, protests may intensify today\n\nRead here: https://t.co/5WDVru4rgd\n#CitizenshipBill h…', 'neutral', 0, 'ndtv ', '#citizenshipbill ', 'Mithlesh kumar', 'http://pbs.twimg.com/profile_images/964483774552588288/HVqb5tyP_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1290, '2019-02-10 03:47:16', 'RT @savukku: #GoBackModi\n\n#GoBackSadistModi \n\nWhy Tirupur’s Rs 42,000 crore textile hub fears a wipeout\n\nhttps://t.co/M11N0Eutv7', 'neutral', 0, 'savukku ', '#gobackmodi #gobacksadistmodi ', 'Karthik journalist', 'http://pbs.twimg.com/profile_images/1067505832177201152/Njl2rtpW_normal.jpg', 'chennai', 'Narendra Modi', ''),
(1291, '2019-02-10 03:47:16', 'RT @savukku: #GoBackModi\n\n#GoBackSadistModi \n\nWhy Tirupur’s Rs 42,000 crore textile hub fears a wipeout\n\nhttps://t.co/M11N0Eutv7', 'neutral', 0, 'savukku ', '#gobackmodi #gobacksadistmodi ', 'tamil', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Tamil Nadu, India', 'Narendra Modi', ''),
(1292, '2019-02-10 03:47:15', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'Divakar', 'http://pbs.twimg.com/profile_images/641607621418467330/jr8Wsu_Q_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1293, '2019-02-10 03:47:14', 'RT @savukku: #GoBackModi\n\n#GoBackSadistModi \n\nWhy Tirupur’s Rs 42,000 crore textile hub fears a wipeout\n\nhttps://t.co/M11N0Eutv7', 'neutral', 0, 'savukku ', '#gobackmodi #gobacksadistmodi ', 'Sathish', 'http://pbs.twimg.com/profile_images/1036888244577742848/5iwV9AkY_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1294, '2019-02-10 03:47:09', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'தமிழனà¯à®Ÿà®¾ï£¿', 'http://pbs.twimg.com/profile_images/840616691218448384/4Gr3Z22q_normal.jpg', 'Tamil Nadu, India', 'Narendra Modi', ''),
(1295, '2019-02-10 03:47:09', 'RT @MinhazMerchant: Dear â¦@RahulGandhiâ©, Qatari Air Force paid Rs 1,875 crore for fully loaded #Rafale jet in 2015. Indian Air Force is pay…', 'neutral', 0, 'MinhazMerchant RahulGandhi ', '#rafale ', 'angela pant', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Pune, India', 'Narendra Modi', ''),
(1296, '2019-02-10 03:47:09', 'RT @advocatearuldev: This is தமிழà¯à®¨à®¾à®Ÿà¯ for you mr.narendra damodardas modi. \"welcome to the land of tamil\"🔥🔥#திரà¯à®ªà¯à®ªà¯‚ரிலà¯_திரà¯à®Ÿà¯à®Ÿà¯à®ªà¯à®ªà®¯ \n#G…', 'neutral', 0, 'advocatearuldev ', '#திரà¯à®ªà¯à®ªà¯‚ரிலà¯_திரà¯à®Ÿà¯à®Ÿà¯à®ªà¯à®ªà®¯ ', '👨ðŸ¼â€ðŸ’» மிஸà¯à®Ÿà®°à¯ லோகà¯à®•à®²à¯ கரà¯à®¤à¯à®¤à¯ 👨ðŸ¼â€ðŸ’»', 'http://pbs.twimg.com/profile_images/1091668266089476097/G14IYPBF_normal.jpg', 'தமிழà¯à®¨à®¾à®Ÿà¯à®Ÿà®¿à®²à¯', 'Narendra Modi', ''),
(1297, '2019-02-10 03:47:04', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'sridhar ammineni', 'http://pbs.twimg.com/profile_images/1060093334276853760/3dDHRgBP_normal.jpg', 'Tirupati', 'Narendra Modi', ''),
(1298, '2019-02-10 03:47:04', 'RT @mvmeet: Name: Narendra Modi\nCM: 13 yrs\nPM of India: Since last 5 yrs\nLeaves taken: 0\nCash in hand: Rs 48,944\nDoes he own vehicle: NO\nHo…', 'neutral', 0, 'mvmeet ', '', 'Manoj Singh', 'http://pbs.twimg.com/profile_images/1007917992955523074/TM96Lffs_normal.jpg', 'Gurgaon, India', 'Narendra Modi', ''),
(1299, '2019-02-10 03:46:55', '#GoBackModi\n\n#GoBackSadistModi \n\nWhy Tirupur’s Rs 42,000 crore textile hub fears a wipeout\n\nhttps://t.co/M11N0Eutv7', 'neutral', 15, '', '#gobackmodi #gobacksadistmodi ', 'Savukku_Shankar', 'http://pbs.twimg.com/profile_images/1027359227264651266/7yhWzN6a_normal.jpg', 'Tamil Nadu', 'Narendra Modi', ''),
(1300, '2019-02-10 03:46:51', 'Chandrababu Naidu Plans Protests As PM Modi Visits Andhra Pradesh Today:\n\nhttps://t.co/gTwizsD3Uc', 'neutral', 0, '', '', 'Robin-Congressi', 'http://pbs.twimg.com/profile_images/1032229931143421952/gtxJN3Cl_normal.jpg', 'Tambaram ', 'Narendra Modi', ''),
(1301, '2019-02-10 03:46:50', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'Mohamed Farook', 'http://pbs.twimg.com/profile_images/1054383207779577856/NqH6PJJJ_normal.jpg', 'Chennai, India', 'Narendra Modi', ''),
(1302, '2019-02-10 03:46:42', 'RT @provenky: #TNWelcomesModi \nTo wipe out the secessionist elements, to restore the Tamil Pride which was castrated by the 2G scam tainted…', 'neutral', 0, 'provenky ', '#tnwelcomesmodi ', 'Keerthana BJP Ramanathapuram', 'http://pbs.twimg.com/profile_images/1089056687271464961/5XrmPXSU_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1303, '2019-02-10 03:46:37', 'RT @MinhazMerchant: Dear â¦@RahulGandhiâ©, Qatari Air Force paid Rs 1,875 crore for fully loaded #Rafale jet in 2015. Indian Air Force is pay…', 'neutral', 0, 'MinhazMerchant RahulGandhi ', '#rafale ', 'Siddhartha Das', 'http://pbs.twimg.com/profile_images/1085913312083075072/SBwMvAw5_normal.jpg', 'New Delhi, India', 'Narendra Modi', ''),
(1304, '2019-02-10 03:46:36', 'Chandrababu Naidu Plans Protests As PM Modi Visits Andhra Pradesh Today:\n\nhttps://t.co/RXhgZJocDP', 'neutral', 0, '', '', 'Tambaram AIPC', 'http://pbs.twimg.com/profile_images/966863007098683392/Ts6BvSVI_normal.jpg', 'kanchi', 'Narendra Modi', ''),
(1305, '2019-02-10 03:52:39', '@BarackObama \nDEAR THE PRESIDENT BARACK OBAMA, SEE MY EMAIL JAN/7/2015,I MOHAMED YUSSUF RICH IN KNOWLEDGE AND AS… https://t.co/BWPhPLxsNS', 'neutral', 0, 'BarackObama ', '', 'Mohamed Yussuf', 'http://pbs.twimg.com/profile_images/768543912252276736/0SGFGTT7_normal.jpg', 'Toronto, Ontario', 'Barack Obama', ''),
(1306, '2019-02-10 03:52:34', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'MombeeMysticMonk', 'http://pbs.twimg.com/profile_images/800117926082711552/qp8QFpxX_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1307, '2019-02-10 03:52:31', 'Barack Obama most admired man for 11th straight year: Gallup https://t.co/jTxagy5Qqa', 'neutral', 0, '', '', 'John riordan', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Barack Obama', ''),
(1308, '2019-02-10 03:52:21', '@Alyssa_Milano @realDonaldTrump Alyssa.Again you Hollywood types are exposing your basic ignorance..If you have a w… https://t.co/KIQGoZrIB9', 'neutral', 0, 'Alyssa_Milano realDonaldTrump ', '', 'Suellen Fitzsimmons', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Barack Obama', ''),
(1309, '2019-02-10 03:52:13', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', '......', 'http://pbs.twimg.com/profile_images/1062561399514091520/uWDRlI_4_normal.jpg', 'Mumbai, India', 'Barack Obama', '');
INSERT INTO `posts` (`id`, `posted`, `text`, `sentiment`, `count`, `usermentions`, `tags`, `username`, `imageurl`, `location`, `keyword`, `relevant`) VALUES
(1310, '2019-02-10 03:51:58', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Catherine F Precourt', 'http://pbs.twimg.com/profile_images/830450248124334085/h5AO5V5j_normal.jpg', 'Manchester, CT', 'Barack Obama', ''),
(1311, '2019-02-10 03:51:52', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Linda Livesay', 'http://pbs.twimg.com/profile_images/955308867600121856/-IqvwfC__normal.jpg', 'Glen Burnie, MD', 'Barack Obama', ''),
(1312, '2019-02-10 03:51:46', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Tracy', 'http://pbs.twimg.com/profile_images/1060904650197487616/CudNR2sx_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1313, '2019-02-10 03:51:44', 'RT @TeaPainUSA: That’s odd. Louie Gohmert never said this when Barack Obama and Eric Holder were in office. Wonder what changed?\n\nhttps:/…', 'negative', 0, 'TeaPainUSA ', '', 'DeepBlueâœï¸', 'http://pbs.twimg.com/profile_images/983452760900173825/VaLyY0na_normal.jpg', 'Granby, CT', 'Barack Obama', ''),
(1314, '2019-02-10 03:51:42', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'NO WALL!', 'http://pbs.twimg.com/profile_images/922279898131107841/k4xNCafi_normal.jpg', 'New York', 'Barack Obama', ''),
(1315, '2019-02-10 03:51:41', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'Bryce Keisler', 'http://pbs.twimg.com/profile_images/967961493068242944/NSxyS0FM_normal.jpg', 'Gilbert, SC', 'Barack Obama', ''),
(1316, '2019-02-10 03:51:32', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Cordo', 'http://pbs.twimg.com/profile_images/934801756147666944/kJrj4GLe_normal.jpg', 'Houston, TX', 'Barack Obama', ''),
(1317, '2019-02-10 03:51:21', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Julio Antonio', 'http://pbs.twimg.com/profile_images/992074790570782727/X2JJgQcO_normal.jpg', 'New York, NY', 'Barack Obama', ''),
(1318, '2019-02-10 03:51:04', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'nardoâœâ˜®ðŸ™ðŸ¼â¤ï¸ 🇨🇦🇧🇷🇺🇸🥓ðŸº', 'http://pbs.twimg.com/profile_images/924042573076946944/J8M6Z7YS_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1319, '2019-02-10 03:50:46', '@LazyMeatball @Nunyabiz1111 EVERYONE should cancel Netflix immediately! I canceled last year when they hired Barac… https://t.co/OhHe9V1D5I', 'neutral', 0, 'LazyMeatball Nunyabiz1111 ', '', 'anonymousforever', 'http://pbs.twimg.com/profile_images/1080317648855019520/PLt7iI7a_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1320, '2019-02-10 03:50:43', 'RT @ATLBlackStar: Don Lemon Exhibits Zero Ounces of Sympathy for Donald Trump, Tears Into President for Past Harassment of Barack Obama htt…', 'negative', 0, 'ATLBlackStar ', '', 'Nikki', 'http://pbs.twimg.com/profile_images/675149756277071873/qt7Xha-3_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1321, '2019-02-10 03:50:38', 'RT @eugenegu: @realDonaldTrump First Trump falsely accused Barack Obama of being born in Kenya. Now he accuses President Obama of having de…', 'positive', 0, 'eugenegu realDonaldTrump ', '', 'MM', 'http://pbs.twimg.com/profile_images/846813693610463234/4e3dW60c_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1322, '2019-02-10 03:50:33', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Joel Durden', 'http://pbs.twimg.com/profile_images/440733271538688000/umP9TBz1_normal.jpeg', 'South Jersey', 'Barack Obama', ''),
(1323, '2019-02-10 03:50:31', 'RT @charliekirk11: With the 150 BILLION dollars Barack Obama and Democrats gave to Iran, a state sponsor of terrorism, we could have funde…', 'neutral', 0, 'charliekirk11 ', '', 'Tia', 'http://pbs.twimg.com/profile_images/792121918446907393/u7LL8atw_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1324, '2019-02-10 03:50:27', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'E. LaSalle', 'http://pbs.twimg.com/profile_images/1066502315610300416/trhI2o0g_normal.jpg', 'Pacific Northwest', 'Barack Obama', ''),
(1325, '2019-02-10 03:50:23', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'K S', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Barack Obama', ''),
(1326, '2019-02-10 03:50:10', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Lou Fiorentino', 'http://pbs.twimg.com/profile_images/984897685118316544/2kZ2H4o4_normal.jpg', 'New York, USA', 'Barack Obama', ''),
(1327, '2019-02-10 03:50:08', 'RT @RyanGirdusky: If Trump signs this conference committee bill, illegal immigration is going to soar. Trump will be worse on illegal immig…', 'neutral', 0, 'RyanGirdusky ', '', 'alexandre drouin', 'http://pbs.twimg.com/profile_images/833247380095000576/3zxfxPcR_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1328, '2019-02-10 03:49:51', 'RT @larryelder: \"I give interracial couples a look. Daggers. They get uncomfortable when they see me on the street.\"\n--@SpikeLee, October,…', 'neutral', 0, 'larryelder ', '', 'BeckyLee01', 'http://pbs.twimg.com/profile_images/1029711915499413505/RsXWt6AU_normal.jpg', 'California, USA', 'Barack Obama', ''),
(1329, '2019-02-10 03:49:50', 'RT @kidgolferman: I cancelled my Netflix... can you guess why?\n\nNetflix Names Former Obama Adviser, Susan Rice to Board\n\nBarack & Michelle…', 'neutral', 0, 'kidgolferman ', '', 'Dazie', 'http://pbs.twimg.com/profile_images/1074735529596514310/aWTQDNpV_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1330, '2019-02-10 03:49:45', 'RT @eugenegu: @realDonaldTrump First Trump falsely accused Barack Obama of being born in Kenya. Now he accuses President Obama of having de…', 'positive', 0, 'eugenegu realDonaldTrump ', '', 'No regrets', 'http://pbs.twimg.com/profile_images/1081695811619172352/q7Pk44h7_normal.jpg', 'Texas, USA', 'Barack Obama', ''),
(1331, '2019-02-10 03:49:40', 'RT @JudicialWatch: The five terrorists who were dubbed the \"Taliban Dream Team\" — and were released from Guantanamo Bay in 2014 by then-Pre…', 'neutral', 0, 'JudicialWatch ', '', '🇺🇸 CJ 🇺🇸', 'http://pbs.twimg.com/profile_images/776958882602102785/a0qCin6u_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1332, '2019-02-10 03:49:31', 'RT @oprahmagazine: All the times Michelle Obama & Barack Obama made us believe in soul mates: https://t.co/X2At9hGTmU', 'positive', 0, 'oprahmagazine ', '', 'Prophetess Di Hines', 'http://pbs.twimg.com/profile_images/1082508720192532480/CNHwylwn_normal.jpg', 'Houston, TX', 'Barack Obama', ''),
(1333, '2019-02-10 03:49:29', 'RT @GracieLovesUSA: @AMBAMERICA @WeForgetTo @flowerpot197 @J_Allen_CA @JKirking @TonyMalone7 @ScottMc13053959 @TOMRJZSR @LRRPDAKTO @JoeKing…', 'neutral', 0, 'GracieLovesUSA AMBAMERICA WeForgetTo flowerpot197 J_Allen_CA JKirking TonyMalone7 ScottMc13053959 TOMRJZSR LRRPDAKTO ', '', 'GracieLove', 'http://pbs.twimg.com/profile_images/1075609380974780417/ITsEWNy5_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1334, '2019-02-10 03:49:28', '@CarrollQuigley1 Barack Obama Net Worth: From President to Netflix Producer\n\nhttps://t.co/lSGqELL7vh', 'neutral', 0, 'CarrollQuigley1 ', '', '🗣 ανώνυμο Δ', 'http://pbs.twimg.com/profile_images/1087332448315166720/VgtAjEoO_normal.jpg', 'Overboard', 'Barack Obama', ''),
(1335, '2019-02-10 03:49:27', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Gracie Lou', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Maine, USA', 'Barack Obama', ''),
(1336, '2019-02-10 03:49:21', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'eleven', 'http://pbs.twimg.com/profile_images/1050706425419390976/GGwuY0c-_normal.jpg', 'GTFOH', 'Barack Obama', ''),
(1337, '2019-02-10 03:49:16', 'RT @KatTheHammer1: \"One day we will realize that the Barack Obama Presidency was the biggest fraud ever perpetrated on the American people.…', 'neutral', 0, 'KatTheHammer1 ', '', 'meguro_ks', 'http://pbs.twimg.com/profile_images/1060967169389867009/yg6qMfVB_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1338, '2019-02-10 03:49:16', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', '👩â€ðŸ³ðŸ‘©â€ðŸ³ðŸ‘©â€ðŸ³ðŸ‘©â€ðŸ³Mary Carpenter #ResistDaily', 'http://pbs.twimg.com/profile_images/848284201837264896/1ij_uTyu_normal.jpg', 'Virginia Beach, VA🌊🌊🌊💙💙💙', 'Barack Obama', ''),
(1339, '2019-02-10 03:49:11', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Quiet outside observer.', 'http://pbs.twimg.com/profile_images/969979818434469888/nkrI_MH3_normal.jpg', 'Saskatchewan, Canada', 'Barack Obama', ''),
(1340, '2019-02-10 03:49:04', 'RT @JudicialWatch: The five terrorists who were dubbed the \"Taliban Dream Team\" — and were released from Guantanamo Bay in 2014 by then-Pre…', 'neutral', 0, 'JudicialWatch ', '', 'cindy komar', 'http://pbs.twimg.com/profile_images/1090116066678849536/f2UebiE6_normal.jpg', 'Suburban Chicago, ILL', 'Barack Obama', ''),
(1341, '2019-02-10 03:48:59', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'David Rogers, Jr. 🇸🇱🇺🇸', 'http://pbs.twimg.com/profile_images/697405952887255040/zlSLNOmz_normal.jpg', 'Houston, TX & Sierra Leone', 'Barack Obama', ''),
(1342, '2019-02-10 03:48:45', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Gᖇᗩᑎᗪá‘á—©á—°IKE', 'http://pbs.twimg.com/profile_images/894606431034503168/nyv5JVh8_normal.jpg', 'Lahaina, HI', 'Barack Obama', ''),
(1343, '2019-02-10 03:48:39', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'gaslighting should not be a real thing', 'http://pbs.twimg.com/profile_images/2287389019/image_normal.jpg', 'Wichita, KS', 'Barack Obama', ''),
(1344, '2019-02-10 03:48:31', 'RT @eugenegu: @realDonaldTrump First Trump falsely accused Barack Obama of being born in Kenya. Now he accuses President Obama of having de…', 'positive', 0, 'eugenegu realDonaldTrump ', '', 'Denise Lewis', 'http://pbs.twimg.com/profile_images/1006241296195997697/3aw4Qa81_normal.jpg', 'Jacksonville,Florida', 'Barack Obama', ''),
(1345, '2019-02-10 03:48:20', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'James Thorn', 'http://pbs.twimg.com/profile_images/544658068580335616/tXIPkljx_normal.jpeg', '[email protected]', 'Barack Obama', ''),
(1346, '2019-02-10 03:48:10', '@AMBAMERICA @WeForgetTo @flowerpot197 @J_Allen_CA @JKirking @TonyMalone7 @ScottMc13053959 @TOMRJZSR @LRRPDAKTO… https://t.co/iB0YWemlLi', 'neutral', 1, 'AMBAMERICA WeForgetTo flowerpot197 J_Allen_CA JKirking TonyMalone7 ScottMc13053959 TOMRJZSR LRRPDAKTO ', '', 'GracieLove', 'http://pbs.twimg.com/profile_images/1075609380974780417/ITsEWNy5_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1347, '2019-02-10 03:48:06', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', '“25thAmendmentNowâ€-Sherry', 'http://pbs.twimg.com/profile_images/1037176609781018625/Hw65382j_normal.jpg', 'District of Columbia, USA ', 'Barack Obama', ''),
(1348, '2019-02-10 03:47:55', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Miniapples', 'http://pbs.twimg.com/profile_images/938645549246382080/t7r9uzrt_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1349, '2019-02-10 03:47:55', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'Cindy La Fave', 'http://pbs.twimg.com/profile_images/978827793378299904/b5LO0DuR_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1350, '2019-02-10 03:47:53', 'RT @DrShayPhD: @KamalaHarris Democrat presidents Barack Obama and Bill Clinton, commuted or pardoned the sentences of more than one hundred…', 'positive', 0, 'DrShayPhD KamalaHarris ', '', 'Sorting It OutâŒ', 'http://pbs.twimg.com/profile_images/660674641699041281/QF1B9UE9_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1351, '2019-02-10 03:47:46', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Jeff Weaver', 'http://pbs.twimg.com/profile_images/2837760848/4e845c1f629183f37935e1f66afd5ff0_normal.jpeg', 'Long Beach, CA', 'Barack Obama', ''),
(1352, '2019-02-10 03:47:35', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'ðŸ³ï¸â€ðŸŒˆyesiamone🇪🇸', 'http://pbs.twimg.com/profile_images/1081361733564944384/bUQLZK0i_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1353, '2019-02-10 03:47:17', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Jamie', 'http://pbs.twimg.com/profile_images/465859512214491137/yynklwju_normal.jpeg', 'Toronto ', 'Barack Obama', ''),
(1354, '2019-02-10 03:47:07', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Aiden', 'http://pbs.twimg.com/profile_images/1003110934447996928/M_-Epwge_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1355, '2019-02-10 03:47:06', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Donna Pleis', 'http://pbs.twimg.com/profile_images/446107045683421184/hU2u6m-J_normal.jpeg', 'Lancaster County, PA ', 'Barack Obama', ''),
(1356, '2019-02-10 03:46:58', '@MollyJongFast It means Janie Johnson has far too much time on her hands and a serious obsession with Barack Obama.', 'neutral', 0, 'MollyJongFast ', '', 'OUFENIX (D)', 'http://pbs.twimg.com/profile_images/1025041551284690945/ils9JeuR_normal.jpg', 'Oklahoma', 'Barack Obama', ''),
(1357, '2019-02-10 03:46:53', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'Larry Crabtree', 'http://pbs.twimg.com/profile_images/1086429291158499328/9nK5zPjP_normal.jpg', 'Mi-Wuk Village, CA', 'Barack Obama', ''),
(1358, '2019-02-10 03:46:46', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Beverly Hall', 'http://pbs.twimg.com/profile_images/878801652035268608/Jt55mckD_normal.jpg', 'Jackson Heights, NY', 'Barack Obama', ''),
(1359, '2019-02-10 03:46:46', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Gilliganista!™', 'http://pbs.twimg.com/profile_images/1091187072122175488/va3GM0HO_normal.jpg', '#ConstitutionalSweatEquity 🗽', 'Barack Obama', ''),
(1360, '2019-02-10 03:46:27', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'BlueNite24', 'http://pbs.twimg.com/profile_images/1092639269309607936/s9_btuNc_normal.jpg', 'Pennsylvania, USA', 'Barack Obama', ''),
(1361, '2019-02-10 03:46:17', 'RT @mockingbirdbway: President Barack Obama on TO KILL A MOCKINGBIRD. Now on Broadway. New block of tickets now available. Best availabilit…', 'neutral', 0, 'mockingbirdbway ', '', 'Carol Donovan', 'http://pbs.twimg.com/profile_images/378800000603488866/a9c7bdeb6392dd2e3d0ddebe6663fb54_normal.jpeg', 'Woburn, MA', 'Barack Obama', ''),
(1362, '2019-02-10 03:46:15', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Johnny America', 'http://pbs.twimg.com/profile_images/1025197304121384960/FTYaIaPV_normal.jpg', 'Indianapolis, IN', 'Barack Obama', ''),
(1363, '2019-02-10 03:46:12', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'kurt norman', 'http://pbs.twimg.com/profile_images/766817853555281920/FPnvkdzX_normal.jpg', 'midwest', 'Barack Obama', ''),
(1364, '2019-02-10 03:46:10', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'Andrew Nagy', 'http://pbs.twimg.com/profile_images/553395705247981568/YI2y82eL_normal.jpeg', 'Mumbai, India', 'Barack Obama', ''),
(1365, '2019-02-10 03:46:04', 'RT @eugenegu: @realDonaldTrump First Trump falsely accused Barack Obama of being born in Kenya. Now he accuses President Obama of having de…', 'positive', 0, 'eugenegu realDonaldTrump ', '', 'Ryen K â„🌊🌊â„', 'http://pbs.twimg.com/profile_images/953827299304071168/N0N46gqi_normal.jpg', 'Ohio, USA', 'Barack Obama', ''),
(1366, '2019-02-10 03:45:59', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'SpoonieNurse', 'http://pbs.twimg.com/profile_images/822453912246648832/SWPAwfke_normal.jpg', 'United States', 'Barack Obama', ''),
(1367, '2019-02-10 03:45:55', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Darline Devereaux', 'http://pbs.twimg.com/profile_images/942542757935112193/N5DYLaze_normal.jpg', 'Copiague, NY', 'Barack Obama', ''),
(1368, '2019-02-10 03:45:47', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', '#ProudHillbilly judsonjaggers', 'http://pbs.twimg.com/profile_images/1865750140/uk_eye_pic_normal.jpg', 'Durham, NC', 'Barack Obama', ''),
(1369, '2019-02-10 03:45:46', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'â„ï¸TitaniumArtFlakeâ„ï¸', 'http://pbs.twimg.com/profile_images/828926578247815168/Co3O4dau_normal.jpg', 'Earth', 'Barack Obama', ''),
(1370, '2019-02-10 03:45:42', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Rose Leeper', 'http://pbs.twimg.com/profile_images/1093376345898405888/V-uD3M10_normal.jpg', 'Illinois, USA', 'Barack Obama', ''),
(1371, '2019-02-10 03:45:30', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', '[email protected]', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Barack Obama', ''),
(1372, '2019-02-10 03:45:19', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'B Murray', 'http://pbs.twimg.com/profile_images/1009289204873007104/5QJdYapU_normal.jpg', 'Michigan, USA', 'Barack Obama', ''),
(1373, '2019-02-10 03:45:08', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Sandra Krego', 'http://pbs.twimg.com/profile_images/763140268388327424/iD6m-dTw_normal.jpg', 'Vancouver, British Columbia', 'Barack Obama', ''),
(1374, '2019-02-10 03:45:06', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Mind Master Zone', 'http://pbs.twimg.com/profile_images/1002272560883687424/aZKw_OlK_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1375, '2019-02-10 03:44:49', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'CindyMedina', 'http://pbs.twimg.com/profile_images/1058548224867237889/H34k21wh_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1376, '2019-02-10 03:44:39', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'lisa hilliard', 'http://pbs.twimg.com/profile_images/1078089902150115330/eCDMfsuV_normal.jpg', 'ohio', 'Barack Obama', ''),
(1377, '2019-02-10 03:44:38', 'RT @DoctorKropotkin: Great Words from Great Leaders (all genuine):\n\n\"I did not have sexual relations with that woman\" - Bill Clinton\n\n\"I kn…', 'positive', 0, 'DoctorKropotkin ', '', '🌵AstroKnot🌵', 'http://pbs.twimg.com/profile_images/1015260962343882752/0lAth7br_normal.jpg', 'El Mirage, AZ', 'Barack Obama', ''),
(1378, '2019-02-10 03:44:37', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'PamelaTarot', 'http://pbs.twimg.com/profile_images/378800000685407790/324d14a139d22062a04c479297571e06_normal.jpeg', 'Mumbai, India', 'Barack Obama', ''),
(1379, '2019-02-10 03:44:31', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Brenda Abramson 🇺🇸', 'http://pbs.twimg.com/profile_images/956359322249957376/pEEBnrW8_normal.jpg', 'Maryland, USA', 'Barack Obama', ''),
(1380, '2019-02-10 03:44:22', 'RT @CindyPreyAndr18: @JayHenryMarino1 @thehill I’ve known her personally along with staffers that have worked for her. None of this bears o…', 'neutral', 0, 'CindyPreyAndr18 JayHenryMarino1 thehill ', '', 'Phoenix Woman ðŸ©', 'http://pbs.twimg.com/profile_images/2158084370/PW--super-tiny-avidor-avatar_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1381, '2019-02-10 03:44:14', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'KansasGirlAC 🇺🇸🌊💫✨💫ðŸ©ðŸŒŠðŸ‡ºðŸ‡¸', 'http://pbs.twimg.com/profile_images/892660514140164097/nIKZl_VQ_normal.jpg', 'TX, USA', 'Barack Obama', ''),
(1382, '2019-02-10 03:44:13', 'RT @atzcj: kpop predictions walked so barack obama could run https://t.co/eyuF1Ask6y', 'neutral', 0, 'atzcj ', '', 'Ù‹NOAH IS SEEING ATEEZ', 'http://pbs.twimg.com/profile_images/1086728258685751296/fKdc_efp_normal.jpg', 'he/him', 'Barack Obama', ''),
(1383, '2019-02-10 03:44:08', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'Deana', 'http://pbs.twimg.com/profile_images/785624492554850304/6CdLfIIr_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1384, '2019-02-10 03:43:55', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Double G', 'http://pbs.twimg.com/profile_images/1054571323891073024/6KHOXcgv_normal.jpg', 'United States', 'Barack Obama', ''),
(1385, '2019-02-10 03:43:52', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'GOP_Hypocrisy', 'http://pbs.twimg.com/profile_images/1094254695525146624/2W7OreqG_normal.jpg', 'Denver, CO', 'Barack Obama', ''),
(1386, '2019-02-10 03:43:47', '@djkhaled @Travisscott @KylieJenner Got the wrong Travis Scott apparently followed by Barack Obama 😂', 'neutral', 0, 'djkhaled Travisscott KylieJenner ', '', 'ð™šð™¡ð™žð™Ÿð™–ð™ð™¨ð™šð™', 'http://pbs.twimg.com/profile_images/1093158974910853121/gpEU-VGn_normal.jpg', 'ಠ_ಠ', 'Barack Obama', ''),
(1387, '2019-02-10 03:43:47', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'RealMarkDitchie', 'http://pbs.twimg.com/profile_images/811979510350422016/k-OITL6H_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1388, '2019-02-10 03:43:35', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Joy Telemaque-Harris', 'http://pbs.twimg.com/profile_images/1072378216793419776/VZz8O1Z6_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1389, '2019-02-10 03:43:33', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Al Moniz', 'http://pbs.twimg.com/profile_images/540336257499688961/1PQlolI__normal.jpeg', 'Rhode Island USA', 'Barack Obama', ''),
(1390, '2019-02-10 03:43:13', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Jeanne Mann', 'http://pbs.twimg.com/profile_images/835996435640279040/FSSejzE2_normal.jpg', 'Northern California', 'Barack Obama', ''),
(1391, '2019-02-10 03:43:10', 'RT @mockingbirdbway: President Barack Obama on TO KILL A MOCKINGBIRD. Now on Broadway. New block of tickets now available. Best availabilit…', 'neutral', 0, 'mockingbirdbway ', '', 'ChristineCop', 'http://pbs.twimg.com/profile_images/1058425759902109696/oOt0BdsQ_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1392, '2019-02-10 03:43:09', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Brian Daniel', 'http://pbs.twimg.com/profile_images/984944989154066432/se0yYS4a_normal.jpg', 'United states ', 'Barack Obama', ''),
(1393, '2019-02-10 03:43:07', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'QChocolate 💋', 'http://pbs.twimg.com/profile_images/1068335141112750081/x_U-mdaU_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1394, '2019-02-10 03:43:05', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'IKYFL', 'http://pbs.twimg.com/profile_images/1072585563297984514/5gjby4S3_normal.jpg', 'Not Today Satan ', 'Barack Obama', ''),
(1395, '2019-02-10 03:43:05', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Diane Hughes', 'http://pbs.twimg.com/profile_images/1090305429060681732/2RMxsGC8_normal.jpg', 'Nashville, Tenn.', 'Barack Obama', ''),
(1396, '2019-02-10 03:43:04', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'pastriesqueen', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Barack Obama', ''),
(1397, '2019-02-10 03:43:04', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Genevieve', 'http://pbs.twimg.com/profile_images/1089330053685657600/3k1kqRjf_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1398, '2019-02-10 03:43:01', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Rosalinda Garza', 'http://pbs.twimg.com/profile_images/822321446848335874/Mdr2IWeG_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1399, '2019-02-10 03:58:26', 'RT @kidgolferman: I cancelled my Netflix... can you guess why?\n\nNetflix Names Former Obama Adviser, Susan Rice to Board\n\nBarack & Michelle…', 'neutral', 0, 'kidgolferman ', '', 'T Jâ¤ðŸ‡ºðŸ‡¸â¤', 'http://pbs.twimg.com/profile_images/1034136322401812481/x497MWsF_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1400, '2019-02-10 03:58:19', 'RT @eugenegu: @realDonaldTrump First Trump falsely accused Barack Obama of being born in Kenya. Now he accuses President Obama of having de…', 'positive', 0, 'eugenegu realDonaldTrump ', '', 'April JK', 'http://pbs.twimg.com/profile_images/1088562812685713408/pWx3RER1_normal.jpg', 'Ca', 'Barack Obama', ''),
(1401, '2019-02-10 03:58:18', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Paul', 'http://pbs.twimg.com/profile_images/968336452407971840/iIeo1qv0_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1402, '2019-02-10 03:58:17', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'William Nordlund', 'http://pbs.twimg.com/profile_images/1019026101241122817/fqu9xAvS_normal.jpg', 'Dallas', 'Barack Obama', ''),
(1403, '2019-02-10 03:58:15', 'RT @mockingbirdbway: President Barack Obama on TO KILL A MOCKINGBIRD. Now on Broadway. New block of tickets now available. Best availabilit…', 'neutral', 0, 'mockingbirdbway ', '', 'May✨â¤ï¸', 'http://pbs.twimg.com/profile_images/1087669076070227969/LcuBkWla_normal.jpg', 'Mantua, Philadelphia', 'Barack Obama', ''),
(1404, '2019-02-10 03:58:03', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Ivanna Dumptrump', 'http://pbs.twimg.com/profile_images/1080203279949123585/s1_VRw6w_normal.jpg', 'Palm Springs, CA', 'Barack Obama', ''),
(1405, '2019-02-10 03:58:03', 'RT @eugenegu: @realDonaldTrump Trump comes from a background of silver spoon white privilege and he rose to power by falsely accusing Presi…', 'neutral', 0, 'eugenegu realDonaldTrump ', '', 'Chris Smith', 'http://pbs.twimg.com/profile_images/771078745369157632/R7K7GYqG_normal.jpg', 'Any where I want to be', 'Barack Obama', ''),
(1406, '2019-02-10 03:57:59', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Geoffrey Laxton', 'http://pbs.twimg.com/profile_images/1061520669685374977/c8p6QGO6_normal.jpg', 'Canada', 'Barack Obama', ''),
(1407, '2019-02-10 03:57:46', 'RT @larryelder: \"I give interracial couples a look. Daggers. They get uncomfortable when they see me on the street.\"\n--@SpikeLee, October,…', 'neutral', 0, 'larryelder ', '', 'John Miller', 'http://pbs.twimg.com/profile_images/858440543889764352/rzRUR_0M_normal.jpg', 'P Ridge WV', 'Barack Obama', ''),
(1408, '2019-02-10 03:57:45', 'RT @larryelder: \"I give interracial couples a look. Daggers. They get uncomfortable when they see me on the street.\"\n--@SpikeLee, October,…', 'neutral', 0, 'larryelder ', '', '......', 'http://pbs.twimg.com/profile_images/1062561399514091520/uWDRlI_4_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1409, '2019-02-10 03:57:42', 'RT @GracieLovesUSA: @AMBAMERICA @WeForgetTo @flowerpot197 @J_Allen_CA @JKirking @TonyMalone7 @ScottMc13053959 @TOMRJZSR @LRRPDAKTO @JoeKing…', 'neutral', 0, 'GracieLovesUSA AMBAMERICA WeForgetTo flowerpot197 J_Allen_CA JKirking TonyMalone7 ScottMc13053959 TOMRJZSR LRRPDAKTO ', '', 'Lucky Nine', 'http://pbs.twimg.com/profile_images/1026593654217920513/spnhQ-tn_normal.jpg', 'Nine Mile Falls, Wa', 'Barack Obama', ''),
(1410, '2019-02-10 03:57:39', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Sue Hagadorn', 'http://pbs.twimg.com/profile_images/782383871891431425/eSVji96w_normal.jpg', 'Ann Arbor, MI', 'Barack Obama', ''),
(1411, '2019-02-10 03:57:38', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'Jeannieâï¸âï¸âï¸', 'http://pbs.twimg.com/profile_images/1052708709783281665/9UROz0jy_normal.jpg', 'Where the Peaches Grow ðŸ‘', 'Barack Obama', ''),
(1412, '2019-02-10 03:57:35', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'RealZoo', 'http://pbs.twimg.com/profile_images/1012073537400721408/yqImdlEn_normal.jpg', 'Texas', 'Barack Obama', ''),
(1413, '2019-02-10 03:57:18', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Lisa', 'http://pbs.twimg.com/profile_images/1046565987984629760/UODZOOFT_normal.jpg', 'Oregon, USA', 'Barack Obama', ''),
(1414, '2019-02-10 03:57:17', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'âšš ð“¦ð“²ð“·ð’ˆð“¼ âšš III%er ✯✯✯', 'http://pbs.twimg.com/profile_images/1094281331268304896/x6Hi63sW_normal.jpg', 'Miami, FL', 'Barack Obama', ''),
(1415, '2019-02-10 03:57:13', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'peaceandlove', 'http://pbs.twimg.com/profile_images/972704638737797120/XIC9ghUH_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1416, '2019-02-10 03:57:11', 'RT @charliekirk11: 4 prominent Democrat senators voted for a wall in 2006\n\nTheir names? \n\nBarack Obama \nHillary Clinton \nChuck Schumer\nJoe…', 'positive', 0, 'charliekirk11 ', '', 'Grace', 'http://pbs.twimg.com/profile_images/1038931773407686656/nwG5V-eU_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1417, '2019-02-10 03:57:02', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Nevertheless, she resisted', 'http://pbs.twimg.com/profile_images/1002928558103285760/Uzc0y6DC_normal.jpg', 'Boston', 'Barack Obama', ''),
(1418, '2019-02-10 03:56:54', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Stephanie Lockett', 'http://pbs.twimg.com/profile_images/570315707768020994/reVYhbZO_normal.jpeg', 'Oxford, MS', 'Barack Obama', ''),
(1419, '2019-02-10 03:56:34', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Andi #Resist 🎶 😸 ✌ 🌈', 'http://pbs.twimg.com/profile_images/828221974862262273/2BvaPXYe_normal.jpg', 'NH', 'Barack Obama', ''),
(1420, '2019-02-10 03:56:29', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Sue Scoby', 'http://pbs.twimg.com/profile_images/1023954963976937473/4gi7lBKV_normal.jpg', 'Champaign,IL', 'Barack Obama', ''),
(1421, '2019-02-10 03:56:27', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'nancy neff', 'http://pbs.twimg.com/profile_images/1560494479/41645_809826459_5064_n_normal.jpg', 'Colorful Culver City CA', 'Barack Obama', ''),
(1422, '2019-02-10 03:56:20', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Viva', 'http://pbs.twimg.com/profile_images/1226449080/1308977576_m_normal.jpg', 'Portland, Oregon', 'Barack Obama', ''),
(1423, '2019-02-10 03:56:18', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'This Won’t End Well', 'http://pbs.twimg.com/profile_images/1060666019709104128/bV6oDlbD_normal.jpg', 'USA', 'Barack Obama', ''),
(1424, '2019-02-10 03:56:12', 'Hey @swiggy_in If you that Leathery thing delivered as Pizza, then I am Barack Obama.\n\n@SwiggyCares. Really?', 'neutral', 0, 'swiggy_in SwiggyCares ', '', 'Venkat Chalapathy', 'http://pbs.twimg.com/profile_images/769182296129859584/ZWnuCCng_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1425, '2019-02-10 03:56:07', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'D.J. McKay', 'http://pbs.twimg.com/profile_images/3491408581/59586c4c6c04d0ac7ff8f95a61fc2b76_normal.jpeg', 'Los Angeles', 'Barack Obama', ''),
(1426, '2019-02-10 03:55:52', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'robinnitchoff', 'http://pbs.twimg.com/profile_images/533754345960267777/BYbBEsRF_normal.jpeg', 'Mumbai, India', 'Barack Obama', ''),
(1427, '2019-02-10 03:55:47', 'RT @charliekirk11: 4 prominent Democrat senators voted for a wall in 2006\n\nTheir names? \n\nBarack Obama \nHillary Clinton \nChuck Schumer\nJoe…', 'positive', 0, 'charliekirk11 ', '', 'Thomas James', 'http://pbs.twimg.com/profile_images/714852144143331328/ygkWHRR6_normal.jpg', 'Las Vegas, Nevada', 'Barack Obama', ''),
(1428, '2019-02-10 03:55:40', 'RT @BenKTallmadge: Use your Google or Microsoft translation to read this explosive thread!\nSidley Austin is where Barack met Michelle.\nHunt…', 'neutral', 0, 'BenKTallmadge ', '', 'GuoWengui_True_Hero!', 'http://pbs.twimg.com/profile_images/1014336481710653440/fGqHCfIt_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1429, '2019-02-10 03:55:33', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'martha', 'http://pbs.twimg.com/profile_images/981532288147230721/q4c2s-Do_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1430, '2019-02-10 03:55:31', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Cindy Robertson', 'http://pbs.twimg.com/profile_images/734879699692720128/nRh4dFvO_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1431, '2019-02-10 03:55:29', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'erin akins', 'http://pbs.twimg.com/profile_images/800771842113798144/r_GfCauL_normal.jpg', 'California ', 'Barack Obama', ''),
(1432, '2019-02-10 03:55:27', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'Joanie Lapic', 'http://pbs.twimg.com/profile_images/282300328/EG_Logo__cropped_normal.jpg', 'western Pennsylvania', 'Barack Obama', ''),
(1433, '2019-02-10 03:55:26', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Cheetahkit Dolcini', 'http://pbs.twimg.com/profile_images/1012163007105757184/0ybnH-0y_normal.jpg', 'Riverside, California', 'Barack Obama', ''),
(1434, '2019-02-10 03:55:25', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Gatekeeper', 'http://pbs.twimg.com/profile_images/1089919825596596226/hK9AWfv0_normal.jpg', 'east coast', 'Barack Obama', ''),
(1435, '2019-02-10 03:55:16', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', '🌊 Linda Bres..... 🌊', 'http://pbs.twimg.com/profile_images/868207524515692544/oh5dwh63_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1436, '2019-02-10 03:55:15', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Judy tuell🇺🇸#BoycottNRA🚫, #FBR', 'http://pbs.twimg.com/profile_images/930979386911735808/wpef5vfk_normal.jpg', 'California', 'Barack Obama', ''),
(1437, '2019-02-10 03:55:12', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'sherrymichele', 'http://pbs.twimg.com/profile_images/1089195976114429952/nH4vnz9K_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1438, '2019-02-10 03:54:52', 'RT @larryelder: \"I give interracial couples a look. Daggers. They get uncomfortable when they see me on the street.\"\n--@SpikeLee, October,…', 'neutral', 0, 'larryelder ', '', 'âš¾ï¸ðŸ‡ºðŸ‡¸ Hess 🇺🇸⚾ï¸', 'http://pbs.twimg.com/profile_images/1061687611603873792/XdUGlbtu_normal.jpg', 'Banatsko Veliko Selo', 'Barack Obama', ''),
(1439, '2019-02-10 03:54:50', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Susan Cockburn', 'http://pbs.twimg.com/profile_images/1046406387658641408/eqR3z0hZ_normal.jpg', 'Orange County, NY', 'Barack Obama', ''),
(1440, '2019-02-10 03:54:49', 'RT @kidgolferman: I cancelled my Netflix... can you guess why?\n\nNetflix Names Former Obama Adviser, Susan Rice to Board\n\nBarack & Michelle…', 'neutral', 0, 'kidgolferman ', '', '🌴🌞DepMo🌹âï¸âï¸âï¸', 'http://pbs.twimg.com/profile_images/990614494010261504/y7yjEf-G_normal.jpg', 'wishing4Maui', 'Barack Obama', ''),
(1441, '2019-02-10 03:54:48', 'RT @LymanReport: @IsraelUSAforevr Her arrogance and disdain for anyone who is not praising her as the future salvation of the nation rivals…', 'negative', 0, 'LymanReport IsraelUSAforevr ', '', 'Cali Marcel', 'http://pbs.twimg.com/profile_images/830818023107727360/53sn3aDv_normal.jpg', 'California', 'Barack Obama', ''),
(1442, '2019-02-10 03:54:48', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'Greg Meridith (GM)', 'http://pbs.twimg.com/profile_images/778360468943495168/b1stU5RK_normal.jpg', 'Www.bpapay.net', 'Barack Obama', ''),
(1443, '2019-02-10 03:54:37', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'EileenTexasBlue', 'http://pbs.twimg.com/profile_images/1019620762418753536/nr642dHN_normal.jpg', 'Texas', 'Barack Obama', ''),
(1444, '2019-02-10 03:54:35', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'atamizindeyiz', 'http://pbs.twimg.com/profile_images/661849970530779136/TXeJ-K1u_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1445, '2019-02-10 03:54:34', 'RT @larryelder: \"I give interracial couples a look. Daggers. They get uncomfortable when they see me on the street.\"\n--@SpikeLee, October,…', 'neutral', 0, 'larryelder ', '', 'Jakster', 'http://pbs.twimg.com/profile_images/1032367306775703556/e0zwhpsk_normal.jpg', 'St. Louis, Missouri', 'Barack Obama', ''),
(1446, '2019-02-10 03:54:26', 'RT @kidgolferman: I cancelled my Netflix... can you guess why?\n\nNetflix Names Former Obama Adviser, Susan Rice to Board\n\nBarack & Michelle…', 'neutral', 0, 'kidgolferman ', '', 'louise lloyd', 'http://pbs.twimg.com/profile_images/757215554608377856/DewjYo-L_normal.jpg', 'Elizabethtown Pennsylvania', 'Barack Obama', ''),
(1447, '2019-02-10 03:54:13', '@QuancyClayborne President Barack Obama', 'neutral', 0, 'QuancyClayborne ', '', 'Dennis Russell', 'http://pbs.twimg.com/profile_images/1027326700827238400/YLtVf0D2_normal.jpg', 'Costa Mesa, CA', 'Barack Obama', ''),
(1448, '2019-02-10 03:54:05', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'danetteb', 'http://pbs.twimg.com/profile_images/1084261668173926401/NrPftxHO_normal.jpg', 'Denver', 'Barack Obama', ''),
(1449, '2019-02-10 03:54:00', 'RT @eugenegu: @realDonaldTrump First Trump falsely accused Barack Obama of being born in Kenya. Now he accuses President Obama of having de…', 'positive', 0, 'eugenegu realDonaldTrump ', '', 'Anita Warren', 'http://pbs.twimg.com/profile_images/701171814169452544/BRKhumrG_normal.jpg', 'Ocean Bluff, MA', 'Barack Obama', ''),
(1450, '2019-02-10 03:53:37', 'RT @RickJam07344104: Imagine if you took the absolute best of Draymond Green and mashed it with the best qualities of Barack Obama --- that…', 'positive', 0, 'RickJam07344104 ', '', 'Dwight Around Yo Lip', 'http://pbs.twimg.com/profile_images/1012566794664636416/llb6kduk_normal.jpg', 'New Orleans', 'Barack Obama', ''),
(1451, '2019-02-10 03:53:35', 'RT @JudicialWatch: The five terrorists who were dubbed the \"Taliban Dream Team\" — and were released from Guantanamo Bay in 2014 by then-Pre…', 'neutral', 0, 'JudicialWatch ', '', 'Deplorable Me2', 'http://pbs.twimg.com/profile_images/3066316555/ac5a248745986a9d19453d52a347fc7b_normal.png', 'Mumbai, India', 'Barack Obama', ''),
(1452, '2019-02-10 03:53:34', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'mmanna', 'http://pbs.twimg.com/profile_images/1071249592379957248/bYQVtRuJ_normal.jpg', 'Middle of Hell!!', 'Barack Obama', '');
INSERT INTO `posts` (`id`, `posted`, `text`, `sentiment`, `count`, `usermentions`, `tags`, `username`, `imageurl`, `location`, `keyword`, `relevant`) VALUES
(1453, '2019-02-10 03:53:16', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Rose Figtree #impeach the MF', 'http://pbs.twimg.com/profile_images/823341537287344129/-tdlt0UD_normal.jpg', 'Toronto, Ontario', 'Barack Obama', ''),
(1454, '2019-02-10 03:53:14', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'Heather Roberts', 'http://pbs.twimg.com/profile_images/788142910084681728/H7NtyBmG_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1455, '2019-02-10 03:53:12', 'RT @JudicialWatch: The five terrorists who were dubbed the \"Taliban Dream Team\" — and were released from Guantanamo Bay in 2014 by then-Pre…', 'neutral', 0, 'JudicialWatch ', '', 'roy', 'http://pbs.twimg.com/profile_images/702203543998959616/iFmjb4ar_normal.png', 'New Windsor, NY', 'Barack Obama', ''),
(1456, '2019-02-10 03:53:02', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'Stephanie B', 'http://pbs.twimg.com/profile_images/1086897398226579456/RFb1K6VY_normal.jpg', 'Fort Myers, FL', 'Barack Obama', ''),
(1457, '2019-02-10 03:52:57', 'RT @charliekirk11: 4 prominent Democrat senators voted for a wall in 2006\n\nTheir names? \n\nBarack Obama \nHillary Clinton \nChuck Schumer\nJoe…', 'positive', 0, 'charliekirk11 ', '', 'gratefulsoul', 'http://pbs.twimg.com/profile_images/829545442153205762/ar9ahYAw_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1458, '2019-02-10 03:52:52', '@RedPlumpTomato @TonyChiaroscuro @zeerookewl @JaniceFiamengo A Feminist is someone who advocates for womens rights… https://t.co/RGi0e1aGFB', 'neutral', 0, 'RedPlumpTomato TonyChiaroscuro zeerookewl JaniceFiamengo ', '', 'Sydney MGTOW', 'http://pbs.twimg.com/profile_images/973065868815974400/wV2xNLzf_normal.jpg', 'Sydney, New South Wales', 'Barack Obama', ''),
(1459, '2019-02-10 03:52:39', '@BarackObama \nDEAR THE PRESIDENT BARACK OBAMA, SEE MY EMAIL JAN/7/2015,I MOHAMED YUSSUF RICH IN KNOWLEDGE AND AS… https://t.co/BWPhPLxsNS', 'neutral', 0, 'BarackObama ', '', 'Mohamed Yussuf', 'http://pbs.twimg.com/profile_images/768543912252276736/0SGFGTT7_normal.jpg', 'Toronto, Ontario', 'Barack Obama', ''),
(1460, '2019-02-10 03:52:34', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'MombeeMysticMonk', 'http://pbs.twimg.com/profile_images/800117926082711552/qp8QFpxX_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1461, '2019-02-10 03:52:31', 'Barack Obama most admired man for 11th straight year: Gallup https://t.co/jTxagy5Qqa', 'neutral', 0, '', '', 'John riordan', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Barack Obama', ''),
(1462, '2019-02-10 03:52:21', '@Alyssa_Milano @realDonaldTrump Alyssa.Again you Hollywood types are exposing your basic ignorance..If you have a w… https://t.co/KIQGoZrIB9', 'neutral', 0, 'Alyssa_Milano realDonaldTrump ', '', 'Suellen Fitzsimmons', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Barack Obama', ''),
(1463, '2019-02-10 03:52:13', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', '......', 'http://pbs.twimg.com/profile_images/1062561399514091520/uWDRlI_4_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1464, '2019-02-10 03:51:58', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Catherine F Precourt', 'http://pbs.twimg.com/profile_images/830450248124334085/h5AO5V5j_normal.jpg', 'Manchester, CT', 'Barack Obama', ''),
(1465, '2019-02-10 03:51:52', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Linda Livesay', 'http://pbs.twimg.com/profile_images/955308867600121856/-IqvwfC__normal.jpg', 'Glen Burnie, MD', 'Barack Obama', ''),
(1466, '2019-02-10 03:51:46', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Tracy', 'http://pbs.twimg.com/profile_images/1060904650197487616/CudNR2sx_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1467, '2019-02-10 03:51:44', 'RT @TeaPainUSA: That’s odd. Louie Gohmert never said this when Barack Obama and Eric Holder were in office. Wonder what changed?\n\nhttps:/…', 'negative', 0, 'TeaPainUSA ', '', 'DeepBlueâœï¸', 'http://pbs.twimg.com/profile_images/983452760900173825/VaLyY0na_normal.jpg', 'Granby, CT', 'Barack Obama', ''),
(1468, '2019-02-10 03:51:42', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'NO WALL!', 'http://pbs.twimg.com/profile_images/922279898131107841/k4xNCafi_normal.jpg', 'New York', 'Barack Obama', ''),
(1469, '2019-02-10 03:51:41', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'Bryce Keisler', 'http://pbs.twimg.com/profile_images/967961493068242944/NSxyS0FM_normal.jpg', 'Gilbert, SC', 'Barack Obama', ''),
(1470, '2019-02-10 03:51:32', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Cordo', 'http://pbs.twimg.com/profile_images/934801756147666944/kJrj4GLe_normal.jpg', 'Houston, TX', 'Barack Obama', ''),
(1471, '2019-02-10 03:51:21', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Julio Antonio', 'http://pbs.twimg.com/profile_images/992074790570782727/X2JJgQcO_normal.jpg', 'New York, NY', 'Barack Obama', ''),
(1472, '2019-02-10 03:51:04', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'nardoâœâ˜®ðŸ™ðŸ¼â¤ï¸ 🇨🇦🇧🇷🇺🇸🥓ðŸº', 'http://pbs.twimg.com/profile_images/924042573076946944/J8M6Z7YS_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1473, '2019-02-10 03:50:46', '@LazyMeatball @Nunyabiz1111 EVERYONE should cancel Netflix immediately! I canceled last year when they hired Barac… https://t.co/OhHe9V1D5I', 'neutral', 0, 'LazyMeatball Nunyabiz1111 ', '', 'anonymousforever', 'http://pbs.twimg.com/profile_images/1080317648855019520/PLt7iI7a_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1474, '2019-02-10 03:50:43', 'RT @ATLBlackStar: Don Lemon Exhibits Zero Ounces of Sympathy for Donald Trump, Tears Into President for Past Harassment of Barack Obama htt…', 'negative', 0, 'ATLBlackStar ', '', 'Nikki', 'http://pbs.twimg.com/profile_images/675149756277071873/qt7Xha-3_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1475, '2019-02-10 03:50:38', 'RT @eugenegu: @realDonaldTrump First Trump falsely accused Barack Obama of being born in Kenya. Now he accuses President Obama of having de…', 'positive', 0, 'eugenegu realDonaldTrump ', '', 'MM', 'http://pbs.twimg.com/profile_images/846813693610463234/4e3dW60c_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1476, '2019-02-10 03:50:33', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Joel Durden', 'http://pbs.twimg.com/profile_images/440733271538688000/umP9TBz1_normal.jpeg', 'South Jersey', 'Barack Obama', ''),
(1477, '2019-02-10 03:50:31', 'RT @charliekirk11: With the 150 BILLION dollars Barack Obama and Democrats gave to Iran, a state sponsor of terrorism, we could have funde…', 'neutral', 0, 'charliekirk11 ', '', 'Tia', 'http://pbs.twimg.com/profile_images/792121918446907393/u7LL8atw_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1478, '2019-02-10 03:50:27', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'E. LaSalle', 'http://pbs.twimg.com/profile_images/1066502315610300416/trhI2o0g_normal.jpg', 'Pacific Northwest', 'Barack Obama', ''),
(1479, '2019-02-10 03:50:23', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'K S', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Barack Obama', ''),
(1480, '2019-02-10 03:50:10', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Lou Fiorentino', 'http://pbs.twimg.com/profile_images/984897685118316544/2kZ2H4o4_normal.jpg', 'New York, USA', 'Barack Obama', ''),
(1481, '2019-02-10 03:50:08', 'RT @RyanGirdusky: If Trump signs this conference committee bill, illegal immigration is going to soar. Trump will be worse on illegal immig…', 'neutral', 0, 'RyanGirdusky ', '', 'alexandre drouin', 'http://pbs.twimg.com/profile_images/833247380095000576/3zxfxPcR_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1482, '2019-02-10 03:49:51', 'RT @larryelder: \"I give interracial couples a look. Daggers. They get uncomfortable when they see me on the street.\"\n--@SpikeLee, October,…', 'neutral', 0, 'larryelder ', '', 'BeckyLee01', 'http://pbs.twimg.com/profile_images/1029711915499413505/RsXWt6AU_normal.jpg', 'California, USA', 'Barack Obama', ''),
(1483, '2019-02-10 03:49:50', 'RT @kidgolferman: I cancelled my Netflix... can you guess why?\n\nNetflix Names Former Obama Adviser, Susan Rice to Board\n\nBarack & Michelle…', 'neutral', 0, 'kidgolferman ', '', 'Dazie', 'http://pbs.twimg.com/profile_images/1074735529596514310/aWTQDNpV_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1484, '2019-02-10 03:49:45', 'RT @eugenegu: @realDonaldTrump First Trump falsely accused Barack Obama of being born in Kenya. Now he accuses President Obama of having de…', 'positive', 0, 'eugenegu realDonaldTrump ', '', 'No regrets', 'http://pbs.twimg.com/profile_images/1081695811619172352/q7Pk44h7_normal.jpg', 'Texas, USA', 'Barack Obama', ''),
(1485, '2019-02-10 03:49:40', 'RT @JudicialWatch: The five terrorists who were dubbed the \"Taliban Dream Team\" — and were released from Guantanamo Bay in 2014 by then-Pre…', 'neutral', 0, 'JudicialWatch ', '', '🇺🇸 CJ 🇺🇸', 'http://pbs.twimg.com/profile_images/776958882602102785/a0qCin6u_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1486, '2019-02-10 03:49:31', 'RT @oprahmagazine: All the times Michelle Obama & Barack Obama made us believe in soul mates: https://t.co/X2At9hGTmU', 'positive', 0, 'oprahmagazine ', '', 'Prophetess Di Hines', 'http://pbs.twimg.com/profile_images/1082508720192532480/CNHwylwn_normal.jpg', 'Houston, TX', 'Barack Obama', ''),
(1487, '2019-02-10 03:49:29', 'RT @GracieLovesUSA: @AMBAMERICA @WeForgetTo @flowerpot197 @J_Allen_CA @JKirking @TonyMalone7 @ScottMc13053959 @TOMRJZSR @LRRPDAKTO @JoeKing…', 'neutral', 0, 'GracieLovesUSA AMBAMERICA WeForgetTo flowerpot197 J_Allen_CA JKirking TonyMalone7 ScottMc13053959 TOMRJZSR LRRPDAKTO ', '', 'GracieLove', 'http://pbs.twimg.com/profile_images/1075609380974780417/ITsEWNy5_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1488, '2019-02-10 03:49:28', '@CarrollQuigley1 Barack Obama Net Worth: From President to Netflix Producer\n\nhttps://t.co/lSGqELL7vh', 'neutral', 0, 'CarrollQuigley1 ', '', '🗣 ανώνυμο Δ', 'http://pbs.twimg.com/profile_images/1087332448315166720/VgtAjEoO_normal.jpg', 'Overboard', 'Barack Obama', ''),
(1489, '2019-02-10 03:49:27', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Gracie Lou', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Maine, USA', 'Barack Obama', ''),
(1490, '2019-02-10 03:49:21', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'eleven', 'http://pbs.twimg.com/profile_images/1050706425419390976/GGwuY0c-_normal.jpg', 'GTFOH', 'Barack Obama', ''),
(1491, '2019-02-10 03:49:16', 'RT @KatTheHammer1: \"One day we will realize that the Barack Obama Presidency was the biggest fraud ever perpetrated on the American people.…', 'neutral', 0, 'KatTheHammer1 ', '', 'meguro_ks', 'http://pbs.twimg.com/profile_images/1060967169389867009/yg6qMfVB_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1492, '2019-02-10 03:49:16', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', '👩â€ðŸ³ðŸ‘©â€ðŸ³ðŸ‘©â€ðŸ³ðŸ‘©â€ðŸ³Mary Carpenter #ResistDaily', 'http://pbs.twimg.com/profile_images/848284201837264896/1ij_uTyu_normal.jpg', 'Virginia Beach, VA🌊🌊🌊💙💙💙', 'Barack Obama', ''),
(1493, '2019-02-10 03:49:11', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Quiet outside observer.', 'http://pbs.twimg.com/profile_images/969979818434469888/nkrI_MH3_normal.jpg', 'Saskatchewan, Canada', 'Barack Obama', ''),
(1494, '2019-02-10 05:10:49', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'ð’œð“ð“Œð’¶ð“Žð“ˆ ð»ð‘œð“…ð‘’ð’»ð“Šð“ ðŸðŸ‡ºðŸ‡¸', 'http://pbs.twimg.com/profile_images/1027038563593056257/Pdv5WyPE_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1495, '2019-02-10 05:10:48', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Warren', 'http://pbs.twimg.com/profile_images/901595280637706240/9MEiRu7R_normal.jpg', 'Arizona, USA', 'Barack Obama', ''),
(1496, '2019-02-10 05:10:45', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Just Me', 'http://pbs.twimg.com/profile_images/796453448178876418/h3wOKg07_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1497, '2019-02-10 05:10:40', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Joyce Mitchell', 'http://pbs.twimg.com/profile_images/464971898057527296/1to2rff2_normal.jpeg', 'Mumbai, India', 'Barack Obama', ''),
(1498, '2019-02-10 05:10:35', 'RT @KamVTV: Rep. Steve Scalise just sent out a email stating : Barack Obama just made his move revealing his scheme to interfere in the 20…', 'neutral', 0, 'KamVTV ', '', 'dhaz', 'http://pbs.twimg.com/profile_images/944216037066715137/07dpn1aC_normal.jpg', 'Texas', 'Barack Obama', ''),
(1499, '2019-02-10 05:10:19', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Chris Schoonhoven', 'http://pbs.twimg.com/profile_images/1073744764808220677/fZ3Yhslo_normal.jpg', 'Portland, OR', 'Barack Obama', ''),
(1500, '2019-02-10 05:10:09', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'C0Rose 🌊🌊🌊 #Harris2020', 'http://pbs.twimg.com/profile_images/1081220832246939649/jR82UP6f_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1501, '2019-02-10 05:10:04', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'VooDooQueenie', 'http://pbs.twimg.com/profile_images/913466383018614787/7bRow8Rw_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1502, '2019-02-10 05:10:02', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Susan Cooper', 'http://pbs.twimg.com/profile_images/1314084685/41512_526359707_1753642_n_normal.jpg', 'North Carolina', 'Barack Obama', ''),
(1503, '2019-02-10 05:10:00', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Sandra', 'http://pbs.twimg.com/profile_images/1021944952706805760/sVYaiDUf_normal.jpg', 'Texas, USA', 'Barack Obama', ''),
(1504, '2019-02-10 05:09:57', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'topazwine', 'http://pbs.twimg.com/profile_images/965099070254649344/9FeUNCJ__normal.jpg', 'United States', 'Barack Obama', ''),
(1505, '2019-02-10 05:09:56', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Miss Pilar Winters #FBR🌊', 'http://pbs.twimg.com/profile_images/1006225572027125766/0wVF9vve_normal.jpg', 'United States', 'Barack Obama', ''),
(1506, '2019-02-10 05:09:49', 'RT @larryelder: \"I give interracial couples a look. Daggers. They get uncomfortable when they see me on the street.\"\n--@SpikeLee, October,…', 'neutral', 0, 'larryelder ', '', 'Mary Craig', 'http://pbs.twimg.com/profile_images/996497318831689730/qjKq2sqD_normal.jpg', 'Anderson, SC', 'Barack Obama', ''),
(1507, '2019-02-10 05:09:41', 'RT @sushigurl10: “Our destiny is not written for us, it’s written by us†— Barack Obama. \n#21KissesForDONNY', 'negative', 0, 'sushigurl10 ', '#21kissesfordonny ', 'DKbaby', 'http://pbs.twimg.com/profile_images/1030765703773573122/sVt8qIJI_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1508, '2019-02-10 05:09:35', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Cheryl', 'http://pbs.twimg.com/profile_images/1092876576457281536/YCVgciwd_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1509, '2019-02-10 05:09:29', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'ðŸ±ðŸ±GRABBERINCHIEF', 'http://pbs.twimg.com/profile_images/914837098661806082/wnTg9XAg_normal.jpg', 'the world', 'Barack Obama', ''),
(1510, '2019-02-10 05:09:19', 'RT @kidgolferman: I cancelled my Netflix... can you guess why?\n\nNetflix Names Former Obama Adviser, Susan Rice to Board\n\nBarack & Michelle…', 'neutral', 0, 'kidgolferman ', '', 'Dan Kelley', 'http://pbs.twimg.com/profile_images/997577402132942848/A-KiKLsP_normal.jpg', 'Maine, U.S.A.', 'Barack Obama', ''),
(1511, '2019-02-10 05:09:13', 'RT @BTS_tywt: Barack Obama has something to say! https://t.co/ZUdkXryNZN', 'neutral', 0, 'BTS_tywt ', '', 'damon', 'http://pbs.twimg.com/profile_images/1094334561641734144/xFTT3ciO_normal.jpg', '₈₃ð˜‰ð˜ª ♡ ð˜µð˜¨ð˜´', 'Barack Obama', ''),
(1512, '2019-02-10 05:09:12', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Angee', 'http://pbs.twimg.com/profile_images/1091387411198664704/EB99Yh2T_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1513, '2019-02-10 05:09:05', '@QuancyClayborne Barack Obama, shook his hand at a rally.', 'neutral', 0, 'QuancyClayborne ', '', 'Steve Brackenrich Jr 🆓🇺🇲♿', 'http://pbs.twimg.com/profile_images/1086268881084256257/-qVaaHos_normal.jpg', 'Freedom', 'Barack Obama', ''),
(1514, '2019-02-10 05:08:56', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Lillian', 'http://pbs.twimg.com/profile_images/535208661409210368/gp_90v9w_normal.jpeg', 'Chicago Il- Naples FL', 'Barack Obama', ''),
(1515, '2019-02-10 05:08:33', 'RT @HotShot_78: #TrueMAGA 〽ï¸ðŸ¦…\nRichard Nixon wire taps an office building, he is forced to resign as one of the most disgraced politicians i…', 'positive', 0, 'HotShot_78 ', '#truemaga ', 'Tac', 'http://pbs.twimg.com/profile_images/884641590479802368/1FnxOhQh_normal.jpg', 'Kingman az', 'Barack Obama', ''),
(1516, '2019-02-10 05:08:24', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Mia', 'http://pbs.twimg.com/profile_images/885690301725065216/XEF9BXY1_normal.jpg', 'Biba, Kensington, London 1966', 'Barack Obama', ''),
(1517, '2019-02-10 05:08:21', 'RT @eugenegu: @realDonaldTrump First Trump falsely accused Barack Obama of being born in Kenya. Now he accuses President Obama of having de…', 'positive', 0, 'eugenegu realDonaldTrump ', '', 'IvyNola 💪ðŸ½ðŸ’…ðŸ½', 'http://pbs.twimg.com/profile_images/1093716718273343489/9Kt6_gIk_normal.jpg', 'Manhattan, NY', 'Barack Obama', ''),
(1518, '2019-02-10 05:08:17', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Jacob Serintine', 'http://pbs.twimg.com/profile_images/1072179658081341441/V6zWrV4K_normal.jpg', 'Pennsylvania, USA', 'Barack Obama', ''),
(1519, '2019-02-10 05:08:16', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Kathy Feys', 'http://pbs.twimg.com/profile_images/1017916315678330880/4sefx7RO_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1520, '2019-02-10 05:08:03', 'RT @charliekirk11: 4 prominent Democrat senators voted for a wall in 2006\n\nTheir names? \n\nBarack Obama \nHillary Clinton \nChuck Schumer\nJoe…', 'positive', 0, 'charliekirk11 ', '', 'MAGA MANIAC', 'http://pbs.twimg.com/profile_images/936964928908304384/jOPDKnei_normal.jpg', 'las vegas ', 'Barack Obama', ''),
(1521, '2019-02-10 05:07:58', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'b.j.reinhart', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Midwest,USA', 'Barack Obama', ''),
(1522, '2019-02-10 05:07:57', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'kirsten anderson', 'http://pbs.twimg.com/profile_images/996407506720223234/x4uXydIR_normal.jpg', 'Minnesota, USA', 'Barack Obama', ''),
(1523, '2019-02-10 05:07:48', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Timothy Berge', 'http://pbs.twimg.com/profile_images/696514220435701760/euCTLMGm_normal.jpg', 'Taipei', 'Barack Obama', ''),
(1524, '2019-02-10 05:07:46', 'A man accused of breaking a store window and damaging a Barack Obama mannequin had to be protected from angry Obama… https://t.co/l0JNbsJZUC', 'neutral', 0, '', '', 'crazyhorse', 'http://pbs.twimg.com/profile_images/2688728894/9052921bf964f8d180fd2c44410ca194_normal.jpeg', 'boston mass', 'Barack Obama', ''),
(1525, '2019-02-10 05:07:45', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Paul D Mueller', 'http://pbs.twimg.com/profile_images/521881068908343296/GJJtsquE_normal.jpeg', 'New Hampshire, USA', 'Barack Obama', ''),
(1526, '2019-02-10 05:07:42', 'RT @sushigurl10: “Our destiny is not written for us, it’s written by us†— Barack Obama. \n#21KissesForDONNY', 'negative', 0, 'sushigurl10 ', '#21kissesfordonny ', 'dkjenny💖', 'http://pbs.twimg.com/profile_images/1092340504279175168/uw-szcAK_normal.jpg', 'Philippines', 'Barack Obama', ''),
(1527, '2019-02-10 05:07:38', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Jeff *GreenNewDeal #Resist', 'http://pbs.twimg.com/profile_images/1441686718/5rJ6jt5g_normal', 'In my head, thinking, USA.', 'Barack Obama', ''),
(1528, '2019-02-10 05:07:27', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Saralee Etter', 'http://pbs.twimg.com/profile_images/2696189395/7f4af75c248cc243d6d5a278d863a972_normal.jpeg', 'Mumbai, India', 'Barack Obama', ''),
(1529, '2019-02-10 05:07:25', 'RT @BTS_tywt: Barack Obama has something to say! https://t.co/ZUdkXryNZN', 'neutral', 0, 'BTS_tywt ', '', 'Arato Luzair', 'http://pbs.twimg.com/profile_images/874479009676918785/n7cUIPjG_normal.jpg', 'Hidden leaf village', 'Barack Obama', ''),
(1530, '2019-02-10 05:07:24', 'RT @kidgolferman: I cancelled my Netflix... can you guess why?\n\nNetflix Names Former Obama Adviser, Susan Rice to Board\n\nBarack & Michelle…', 'neutral', 0, 'kidgolferman ', '', 'Mo van Hoek', 'http://pbs.twimg.com/profile_images/1080675608944955392/edjUoJUC_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1531, '2019-02-10 05:07:12', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Surviving the End', 'http://pbs.twimg.com/profile_images/882818218292727808/-jwprtD1_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1532, '2019-02-10 05:07:10', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Judith Zaluski', 'http://pbs.twimg.com/profile_images/2794282759/032e44cf8b6c48148a027f7daebc809d_normal.png', 'Michigan, USA', 'Barack Obama', ''),
(1533, '2019-02-10 05:07:08', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Dossier-Truther...THE TRUTH NEVER LIES!', 'http://pbs.twimg.com/profile_images/825934202264702977/AY5W6sb8_normal.jpg', 'California, USA.', 'Barack Obama', ''),
(1534, '2019-02-10 05:07:07', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'David Android', 'http://pbs.twimg.com/profile_images/730584989268512769/DPUCl6PU_normal.jpg', 'USA', 'Barack Obama', ''),
(1535, '2019-02-10 05:07:00', '“Our destiny is not written for us, it’s written by us†— Barack Obama. \n#21KissesForDONNY', 'negative', 2, '', '#21kissesfordonny ', 'VanessaTan', 'http://pbs.twimg.com/profile_images/1094434663232266240/UrzMuZ-a_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1536, '2019-02-10 05:06:53', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Wynande 🇳🇱🌷 🌊🌊🌊🌊', 'http://pbs.twimg.com/profile_images/1089439667102076929/6YZ2sVgj_normal.jpg', 'Den Haag, Nederland', 'Barack Obama', ''),
(1537, '2019-02-10 05:06:43', 'RT @larryelder: \"I give interracial couples a look. Daggers. They get uncomfortable when they see me on the street.\"\n--@SpikeLee, October,…', 'neutral', 0, 'larryelder ', '', 'Kevin Dunworth', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Barack Obama', ''),
(1538, '2019-02-10 05:06:29', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Thyestian', 'http://pbs.twimg.com/profile_images/840287984356270080/ixE1uASL_normal.jpg', 'SF Bay ', 'Barack Obama', ''),
(1539, '2019-02-10 05:06:16', 'RT @christianllamar: H.R. 6061 (109th Congress): Secure Fence Act of 2006 passed by House/Senate got favorable votes from hypocritical Demo…', 'positive', 0, 'christianllamar ', '', 'Bill', 'http://pbs.twimg.com/profile_images/782669599611379712/efjptCLi_normal.jpg', 'Alaska, USA', 'Barack Obama', ''),
(1540, '2019-02-10 05:06:15', 'RT @charliekirk11: 4 prominent Democrat senators voted for a wall in 2006\n\nTheir names? \n\nBarack Obama \nHillary Clinton \nChuck Schumer\nJoe…', 'positive', 0, 'charliekirk11 ', '', 'CalaguiRealtor', 'http://pbs.twimg.com/profile_images/860011991624171520/OXFvn0ku_normal.jpg', 'California, USA', 'Barack Obama', ''),
(1541, '2019-02-10 05:06:08', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'R. Rebel', 'http://pbs.twimg.com/profile_images/955273870856114178/3H1CybpW_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1542, '2019-02-10 05:06:08', 'RT @charliekirk11: 4 prominent Democrat senators voted for a wall in 2006\n\nTheir names? \n\nBarack Obama \nHillary Clinton \nChuck Schumer\nJoe…', 'positive', 0, 'charliekirk11 ', '', 'consuelaâï¸âï¸âï¸', 'http://pbs.twimg.com/profile_images/749747969855926272/sz5PB4fr_normal.jpg', 'United States', 'Barack Obama', ''),
(1543, '2019-02-10 05:05:57', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Mike Mann', 'http://pbs.twimg.com/profile_images/949023771867992064/x8_BBFkv_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1544, '2019-02-10 05:05:46', 'RT @larryelder: \"I give interracial couples a look. Daggers. They get uncomfortable when they see me on the street.\"\n--@SpikeLee, October,…', 'neutral', 0, 'larryelder ', '', 'Grahame Hall', 'http://pbs.twimg.com/profile_images/62295126/gh_normal.jpg', 'Johannesburg, South Africa', 'Barack Obama', ''),
(1545, '2019-02-10 05:05:40', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Sean Power', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Barack Obama', ''),
(1546, '2019-02-10 05:05:26', '@Trump454545 Never imagined this ever happening in America! Barack Obama screwed our nation big time!', 'negative', 0, 'Trump454545 ', '', 'Brenda Doris Helton', 'http://pbs.twimg.com/profile_images/1012862624713859072/NvqYwaGK_normal.jpg', 'North Carolina, USA', 'Barack Obama', ''),
(1547, '2019-02-10 05:05:14', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'DoneWithIndividual1', 'http://pbs.twimg.com/profile_images/1045496573730463744/FtQVo7Si_normal.jpg', 'Florida', 'Barack Obama', ''),
(1548, '2019-02-10 05:05:08', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'ShadowElation🇺🇸âï¸âï¸âï¸', 'http://pbs.twimg.com/profile_images/1092835143461552129/V-fnfVkW_normal.jpg', 'Murfreesboro, TN', 'Barack Obama', ''),
(1549, '2019-02-10 05:04:48', 'RT @kidgolferman: I cancelled my Netflix... can you guess why?\n\nNetflix Names Former Obama Adviser, Susan Rice to Board\n\nBarack & Michelle…', 'neutral', 0, 'kidgolferman ', '', 'Dave Allen', 'http://pbs.twimg.com/profile_images/1065740547581591552/k8NQzjNO_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1550, '2019-02-10 05:04:45', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Diane Newman', 'http://pbs.twimg.com/profile_images/3642145355/b583051f184c0e41d19cc47564319edc_normal.jpeg', 'Cape Elizabeth, ME', 'Barack Obama', ''),
(1551, '2019-02-10 05:04:44', 'RT @larryelder: \"I give interracial couples a look. Daggers. They get uncomfortable when they see me on the street.\"\n--@SpikeLee, October,…', 'neutral', 0, 'larryelder ', '', 'Faith', 'http://pbs.twimg.com/profile_images/778360410680336384/tSudSD_u_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1552, '2019-02-10 05:04:44', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Grateful mtw', 'http://pbs.twimg.com/profile_images/853246678031245312/uu0qc6qh_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1553, '2019-02-10 05:04:03', 'RT @larryelder: \"I give interracial couples a look. Daggers. They get uncomfortable when they see me on the street.\"\n--@SpikeLee, October,…', 'neutral', 0, 'larryelder ', '', 'd l', 'http://pbs.twimg.com/profile_images/901176416015835136/nUAAvmu7_normal.jpg', 'swfl&thebeaches', 'Barack Obama', ''),
(1554, '2019-02-10 05:04:01', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Mean-spirited Black Woman', 'http://pbs.twimg.com/profile_images/1075187165909401601/Zg-4RsIm_normal.jpg', 'Michigan, USA', 'Barack Obama', ''),
(1555, '2019-02-10 05:03:57', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'e peters', 'http://pbs.twimg.com/profile_images/946457299375161345/Og69wFIW_normal.jpg', 'Burlingame, Ca', 'Barack Obama', ''),
(1556, '2019-02-10 05:03:47', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'K Morgan', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Phoenix, AZ', 'Barack Obama', ''),
(1557, '2019-02-10 05:03:46', 'RT @EntheosShines: To @realDonaldTrump - John Boehner Has Met w/Barack Obama At His DC Mansion (Compound) At Least 3 Times Since 2017 - He…', 'neutral', 0, 'EntheosShines realDonaldTrump ', '', 'Michelle Myers', 'http://pbs.twimg.com/profile_images/1037897086728134656/DyzSqaEM_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1558, '2019-02-10 05:03:07', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Linda💙💙💙💙💙', 'http://pbs.twimg.com/profile_images/1094027735880613888/IpEGDEa5_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1559, '2019-02-10 05:02:52', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'POPPAJOE aka MOMMABEAR', 'http://pbs.twimg.com/profile_images/1090362897765523456/-b0sQ6cz_normal.jpg', 'Seattle, Washington', 'Barack Obama', ''),
(1560, '2019-02-10 05:02:47', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Rick Latchem', 'http://pbs.twimg.com/profile_images/961690059648000001/CFwFrABq_normal.jpg', 'Bradenton, FL', 'Barack Obama', ''),
(1561, '2019-02-10 05:02:43', 'RT @BTS_tywt: Barack Obama has something to say! https://t.co/ZUdkXryNZN', 'neutral', 0, 'BTS_tywt ', '', '•ðšŠðšŸâ€¢ðšœðšðšŠðš—ðš‹ðšðšœâ€¢', 'http://pbs.twimg.com/profile_images/1086564545890418690/VynT1u6U_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1562, '2019-02-10 05:02:42', '9.Michelle LaVaughn Robinson Obama is an American writer,lawyer,& university administrator who served as the First… https://t.co/jf07cZhb74', 'neutral', 0, '', '', 'Jhetta Tionne', 'http://pbs.twimg.com/profile_images/1087571463916478464/VYQYjQtZ_normal.jpg', 'Jersey ', 'Barack Obama', ''),
(1563, '2019-02-10 05:02:19', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Debs🇨🇦', 'http://pbs.twimg.com/profile_images/378800000620877175/ea4f70e2158de253fecaa51ee6c8c17d_normal.jpeg', 'Mumbai, India', 'Barack Obama', ''),
(1564, '2019-02-10 05:02:18', 'RT @JudicialWatch: The five terrorists who were dubbed the \"Taliban Dream Team\" — & were released from Guantanamo Bay back in 2014 by then-…', 'neutral', 0, 'JudicialWatch ', '', 'Vicki Liu', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Texas', 'Barack Obama', ''),
(1565, '2019-02-10 05:02:17', 'RT @mockingbirdbway: President Barack Obama on TO KILL A MOCKINGBIRD. Now on Broadway. New block of tickets now available. Best availabilit…', 'neutral', 0, 'mockingbirdbway ', '', 'S&J', 'http://pbs.twimg.com/profile_images/1068083596039196672/2Nk_z9_w_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1566, '2019-02-10 05:02:00', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Frankii', 'http://pbs.twimg.com/profile_images/1093934610680086528/dLoxsMR7_normal.jpg', '♑ï¸â˜‰|â™’ï¸â˜½| â™ï¸â†‘|', 'Barack Obama', ''),
(1567, '2019-02-10 05:01:54', 'RT @larryelder: \"I give interracial couples a look. Daggers. They get uncomfortable when they see me on the street.\"\n--@SpikeLee, October,…', 'neutral', 0, 'larryelder ', '', 'Carl Latorre', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Barack Obama', ''),
(1568, '2019-02-10 05:01:38', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Police State', 'http://pbs.twimg.com/profile_images/1011278531547090950/elN8rDjx_normal.jpg', 'United States', 'Barack Obama', ''),
(1569, '2019-02-10 05:01:30', '@QuancyClayborne I shook Barack Obama’s hand in 2007 😃', 'neutral', 0, 'QuancyClayborne ', '', 'Spy Dog', 'http://pbs.twimg.com/profile_images/867647145251414017/DtrjqQ7b_normal.jpg', '85026', 'Barack Obama', ''),
(1570, '2019-02-10 05:01:13', 'RT @EntheosShines: To @realDonaldTrump - John Boehner Has Met w/Barack Obama At His DC Mansion (Compound) At Least 3 Times Since 2017 - He…', 'neutral', 0, 'EntheosShines realDonaldTrump ', '', 'Enthéos', 'http://pbs.twimg.com/profile_images/991147322095689729/buScXHyv_normal.jpg', 'Intel, Tips, & Predictions Made Drudge 148+ Times Since 2008', 'Barack Obama', ''),
(1571, '2019-02-10 05:01:10', 'RT @eugenegu: @realDonaldTrump First Trump falsely accused Barack Obama of being born in Kenya. Now he accuses President Obama of having de…', 'positive', 0, 'eugenegu realDonaldTrump ', '', 'mch', 'http://pbs.twimg.com/profile_images/733309622493302785/fkLxoJO8_normal.jpg', 'Wisconsin, USA', 'Barack Obama', ''),
(1572, '2019-02-10 05:00:28', 'RT @RyanAFournier: “The American dream is to be like Donald Trump†- Barack Obama in 1991\n\nFor once, I agree with President Obama!', 'positive', 0, 'RyanAFournier ', '', 'Demetra Cooper', 'http://pbs.twimg.com/profile_images/881344216668008448/b5FZUd_w_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1573, '2019-02-10 05:00:27', 'We flexitarian take four more years of Barack Obama and that’s what you’ll get if you vote for Hillary. #BigLeagueTruth #hipster #trump', 'neutral', 0, '', '#bigleaguetruth #hipster #trump ', 'Hipster Trump', 'http://pbs.twimg.com/profile_images/741242507170840576/vnDKClPS_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1574, '2019-02-10 05:00:26', '@mscharleys Sorry but this story is misleading. This man did not take bailout money and buy his home with it - or a… https://t.co/T82zdoGqRL', 'negative', 0, 'mscharleys ', '', 'Bathsheba’s Farmer', 'http://pbs.twimg.com/profile_images/1090437654250958849/8IIyx9EZ_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1575, '2019-02-10 05:00:22', 'Alexandria Ocasio-Cortez doc bought by Netflix for $10M\n\nNetflix is own by Barack Obama.\n\nhttps://t.co/0wZcbWaKXU https://t.co/sWOdSqhPiz', 'neutral', 0, '', '', 'Mar Gan', 'http://pbs.twimg.com/profile_images/610264916470050818/gh8Kqkh0_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1576, '2019-02-10 05:00:17', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Bunny Dee', 'http://pbs.twimg.com/profile_images/802651297224724480/d67rmSui_normal.jpg', 'Albuquerque, NM', 'Barack Obama', ''),
(1577, '2019-02-10 05:00:03', 'RT @HotShot_78: #TrueMAGA 〽ï¸ðŸ¦…\nRichard Nixon wire taps an office building, he is forced to resign as one of the most disgraced politicians i…', 'positive', 0, 'HotShot_78 ', '#truemaga ', '🇺🇸 Cindy Loo 🇺🇸', 'http://pbs.twimg.com/profile_images/943233895440502784/bRBdfdZL_normal.jpg', 'USA ', 'Barack Obama', ''),
(1578, '2019-02-10 04:59:56', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Dee', 'http://pbs.twimg.com/profile_images/1011734958153588736/WmIy2zEb_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1579, '2019-02-10 04:59:48', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Sarah Milano 📎', 'http://pbs.twimg.com/profile_images/1058713766232313856/Xoatln82_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1580, '2019-02-10 04:59:37', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Rose Ferranti', 'http://pbs.twimg.com/profile_images/781938408801259520/zpmNoJws_normal.jpg', 'Florida, USA', 'Barack Obama', ''),
(1581, '2019-02-10 04:59:34', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'tru2me9', 'http://pbs.twimg.com/profile_images/1093038622238883840/dawdHA17_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1582, '2019-02-10 04:59:34', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'TRUMP is a TRAITOR', 'http://pbs.twimg.com/profile_images/1012102613746081792/_xqv0dIb_normal.jpg', 'Vancouver, WA', 'Barack Obama', ''),
(1583, '2019-02-10 04:59:23', 'RT @eugenegu: @realDonaldTrump First Trump falsely accused Barack Obama of being born in Kenya. Now he accuses President Obama of having de…', 'positive', 0, 'eugenegu realDonaldTrump ', '', 'PatriotDaughter', 'http://pbs.twimg.com/profile_images/828355473720098819/bN4ljYK1_normal.jpg', 'Illinois, USA', 'Barack Obama', ''),
(1584, '2019-02-10 04:59:20', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'President Pepperpants 🌊🌊🌊', 'http://pbs.twimg.com/profile_images/1093419072845312000/zV_5EHE2_normal.jpg', 'Half Moon Bay, CA', 'Barack Obama', ''),
(1585, '2019-02-10 04:59:17', 'RT @eugenegu: @realDonaldTrump First Trump falsely accused Barack Obama of being born in Kenya. Now he accuses President Obama of having de…', 'positive', 0, 'eugenegu realDonaldTrump ', '', 'MISS KANE🎶🎵🎶🎼🎵', 'http://pbs.twimg.com/profile_images/729810256281350144/W49a7K4W_normal.jpg', 'Rahway, NJ', 'Barack Obama', ''),
(1586, '2019-02-10 04:59:08', 'RT @larryelder: \"I give interracial couples a look. Daggers. They get uncomfortable when they see me on the street.\"\n--@SpikeLee, October,…', 'neutral', 0, 'larryelder ', '', 'hnbc', 'http://pbs.twimg.com/profile_images/605373286831095809/pVMVPgD9_normal.jpg', 'Mumbai, India', 'Barack Obama', ''),
(1587, '2019-02-10 04:59:07', 'RT @larryelder: \"I give interracial couples a look. Daggers. They get uncomfortable when they see me on the street.\"\n--@SpikeLee, October,…', 'neutral', 0, 'larryelder ', '', '🇺🇲SailorWest🌴', 'http://pbs.twimg.com/profile_images/1047908255635202048/HEmFg5Ce_normal.jpg', 'In a Palm Tree', 'Barack Obama', ''),
(1588, '2019-02-10 04:58:56', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'Shenay Crawford', 'http://pbs.twimg.com/profile_images/966127683456266243/FFzIw2a8_normal.jpg', 'California, USA', 'Barack Obama', ''),
(1589, '2019-02-10 04:58:29', 'RT @WrathOfKhan2016: Why did Elizabeth Warren have to prove she was Native American? Why did Barack Obama have to prove he was American?…', 'neutral', 0, 'WrathOfKhan2016 ', '', 'APJ 🌊🌊🌊🌊🌊🌊🌊', 'http://pbs.twimg.com/profile_images/1021125146768113664/efTtzVsA_normal.jpg', 'Colorado, USA', 'Barack Obama', ''),
(1590, '2019-02-10 04:58:20', 'RT @eugenegu: @realDonaldTrump First Trump falsely accused Barack Obama of being born in Kenya. Now he accuses President Obama of having de…', 'positive', 0, 'eugenegu realDonaldTrump ', '', 'Miguel Coyliar', 'http://pbs.twimg.com/profile_images/1003833573512658944/lW10GGbX_normal.jpg', 'Diggers Rest, Victoria', 'Barack Obama', ''),
(1591, '2019-02-10 06:42:57', 'RT @mvmeet: Name: Narendra Modi\nCM: 13 yrs\nPM of India: Since last 5 yrs\nLeaves taken: 0\nCash in hand: Rs 48,944\nDoes he own vehicle: NO\nHo…', 'neutral', 0, 'mvmeet ', '', 'Common Man', 'http://pbs.twimg.com/profile_images/963326765979516933/vEefWRiA_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1592, '2019-02-10 06:42:56', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'சà¯.மகிழரசன௠எமà¯.பி.à®', 'http://pbs.twimg.com/profile_images/1086271155411927045/2T8PaOGJ_normal.jpg', 'Salem, India', 'Narendra Modi', ''),
(1593, '2019-02-10 06:42:54', 'Strange! Tamil Nadu, Assam and now even Andhra Pradesh are saying #GoBackModi\n\nLast week China did not want him to… https://t.co/ppinoiNJX1', 'neutral', 0, '', '#gobackmodi ', 'Abdul Wahid Sait', 'http://pbs.twimg.com/profile_images/1046215086769991681/5i9-li1s_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1594, '2019-02-10 06:42:53', 'RT @JaiTDP: Where is the Railway Zone Narendra Modi Ji?\nWith what face have you come to #AndhraPradesh?\n\n#GoBackModi \n#ModiIsaMistake https…', 'neutral', 0, 'JaiTDP ', '#andhrapradesh #gobackmodi #modiisamistake ', 'ARSHAD', 'http://pbs.twimg.com/profile_images/1031884648937218050/jNWLgdMU_normal.jpg', 'New Delhi, INDIA', 'Narendra Modi', ''),
(1595, '2019-02-10 06:42:51', 'RT @jothims: Rs 42,000-crore Tirupur textile industry, sustained by 8,500 smallscale, medium and large firms ,employed around 5lakhs worker…', 'neutral', 0, 'jothims ', '', 'i jeyaprabhu', 'http://pbs.twimg.com/profile_images/1087232257255890944/jwyFkJ6Q_normal.jpg', 'Vancouver', 'Narendra Modi', ''),
(1596, '2019-02-10 06:42:51', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'மளிகை கடைகà¯à®•à®¾à®°à®©à¯', 'http://pbs.twimg.com/profile_images/1087294895579029506/imuPAv33_normal.jpg', 'Tiruchirapalli, India', 'Narendra Modi', '');
INSERT INTO `posts` (`id`, `posted`, `text`, `sentiment`, `count`, `usermentions`, `tags`, `username`, `imageurl`, `location`, `keyword`, `relevant`) VALUES
(1597, '2019-02-10 06:42:51', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', 'Nethes Yuvan', 'http://pbs.twimg.com/profile_images/1072379683247980546/0f4E9kqX_normal.jpg', 'Tamil Nadu, India', 'Narendra Modi', ''),
(1598, '2019-02-10 06:42:49', 'RT @IndiaToday: On Sunday morning, the hashtag #GoBackModi was among the top trends on Twitter in India.\n\nhttps://t.co/IXbmFtTJWV', 'neutral', 0, 'IndiaToday ', '#gobackmodi ', '#GoBackModi - ModiCheatedAP', 'http://pbs.twimg.com/profile_images/1055643808329879554/AXgOO4TX_normal.jpg', 'India', 'Narendra Modi', ''),
(1599, '2019-02-10 06:42:38', 'RT @htTweets: “Guntur is known as Andhra’s Oxford as youth across the country came here to fulfil their dreams and aspirations,†says PM @n…', 'neutral', 0, 'htTweets ', '', 'Mayank jain', 'http://pbs.twimg.com/profile_images/978507409491570688/Qx1BwcYi_normal.jpg', 'India', 'Narendra Modi', ''),
(1600, '2019-02-10 06:42:35', 'RT @mvmeet: Name: Narendra Modi\nCM: 13 yrs\nPM of India: Since last 5 yrs\nLeaves taken: 0\nCash in hand: Rs 48,944\nDoes he own vehicle: NO\nHo…', 'neutral', 0, 'mvmeet ', '', 'Bantwal Girish Acharya', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Narendra Modi', ''),
(1601, '2019-02-10 06:42:35', 'RT @PradyotManikya: Seeing black balloons over the iconic Ujayanta Palace while Narendra Modi addresses the public at the Astabal Ground .…', 'neutral', 0, 'PradyotManikya ', '', 'AKHILESH TIWARI â€â€Žâ€Žâ€ŽØ§Ú©Ú¾ÛŒÙ„یش تیواری', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'New Delhi, India', 'Narendra Modi', ''),
(1602, '2019-02-10 06:42:34', 'RT @savukku: #GoBackModi\n\n#GoBackSadistModi \n\nWhy Tirupur’s Rs 42,000 crore textile hub fears a wipeout\n\nhttps://t.co/M11N0Eutv7', 'neutral', 0, 'savukku ', '#gobackmodi #gobacksadistmodi ', 'Incredible Indian', 'http://pbs.twimg.com/profile_images/853281375729860609/tcva8Pa1_normal.jpg', 'New Delhi, Delhi', 'Narendra Modi', ''),
(1603, '2019-02-10 06:42:33', 'RT @Muthukr89943281: PM Narendra Modi is the only leader in last 70 years who has allocated close to 6 Lakh Crore for Andhra Pradesh. Andhr…', 'neutral', 0, 'Muthukr89943281 ', '', 'Bjp MM 4 AP', 'http://pbs.twimg.com/profile_images/1090236421162455040/bRDD0lvN_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1604, '2019-02-10 06:42:33', 'RT @Vivek2019singh: #TNWelcomesModi we all tamil people wholeheartedly welcome our \nEsteemed P.M shri narendra modi', 'positive', 0, 'Vivek2019singh ', '#tnwelcomesmodi ', 'Ancy', 'http://pbs.twimg.com/profile_images/1094125680281808899/-25Hku-1_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1605, '2019-02-10 06:42:22', 'RT @jamewils: The number of zeroes included to quantify the black money stashed away made Narendra Modi’s pre-election promise of Rs 15 lak…', 'neutral', 0, 'jamewils ', '', 'The Red Indian Chap', 'http://pbs.twimg.com/profile_images/1020743319356203009/C0PqZYqA_normal.jpg', 'Utopia', 'Narendra Modi', ''),
(1606, '2019-02-10 06:42:14', 'RT @anumma2002: Narendra Modi @pmo has done much more than any govt #TNWelcomesModi #TNWelcomesModi', 'neutral', 0, 'anumma2002 pmo ', '#tnwelcomesmodi #tnwelcomesmodi ', 'Santhosh', 'http://pbs.twimg.com/profile_images/1094170231319158784/1kX8jYTG_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1607, '2019-02-10 06:42:14', 'RT @IndiaToday: #Mumbai: Amol Palekar snubbed for criticising the Narendra Modi government\nMore videos at https://t.co/Nounxo6IKQ \n#ITVideo…', 'neutral', 0, 'IndiaToday ', '#mumbai #itvideo ', 'Tony J', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Narendra Modi', ''),
(1608, '2019-02-10 06:42:14', 'RT @htTweets: \"The dedicated projects will provide employment to youths, provides piped gas for households,\" says PM @narendramodi in Guntu…', 'neutral', 0, 'htTweets narendramodi ', '', 'Tuco', 'http://pbs.twimg.com/profile_images/905492613171527682/7A9o4Srq_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1609, '2019-02-10 06:42:14', 'Welcome Shri. Narendra Modi ji to Tamil nadu. The real king of India in the current situation who made the corrupt… https://t.co/pSoS8MjWuL', 'positive', 0, '', '', 'Balaji Gandhi', 'http://pbs.twimg.com/profile_images/378800000185222319/76cf48512c9fa4565501a23005ae679c_normal.jpeg', 'Bangalore ', 'Narendra Modi', ''),
(1610, '2019-02-10 06:42:13', 'RT @kryes: Narendra Modi is also senior in back-stabbing his own Guru (LK Advani)!\n--\nHow the Prime Minister of a Country can go so LOW in…', 'neutral', 0, 'kryes ', '', 'Aparajithan V', 'http://pbs.twimg.com/profile_images/942121272133201921/uUBErLRE_normal.jpg', 'Dubai, United Arab Emirates', 'Narendra Modi', ''),
(1611, '2019-02-10 06:42:11', 'RT @savukku: #GoBackModi\n\n#GoBackSadistModi \n\nWhy Tirupur’s Rs 42,000 crore textile hub fears a wipeout\n\nhttps://t.co/M11N0Eutv7', 'neutral', 0, 'savukku ', '#gobackmodi #gobacksadistmodi ', 'Sham Willis', 'http://pbs.twimg.com/profile_images/822180290873491456/X0uya9oH_normal.jpg', 'Tuticorin,Dubai', 'Narendra Modi', ''),
(1612, '2019-02-10 06:42:08', 'RT @Nanda_Dasari: Where is the Railway Zone Narendra Modi Ji?\nWith what face have you come to #AndhraPradesh?\n\n#GoBackModi \n#ModiIsaMistake…', 'neutral', 0, 'Nanda_Dasari ', '#andhrapradesh #gobackmodi #modiisamistake ', 'தமிழ௠மணà¯à®£à®¿à®©à¯ மைநà¯à®¤à®©à¯', 'http://pbs.twimg.com/profile_images/1072487722152062977/fn4QN7qZ_normal.jpg', 'Fremont, CA', 'Narendra Modi', ''),
(1613, '2019-02-10 06:42:05', 'RT @GaddeAjay: Display of protest towards Prime Minister Sri Narendra Modi by the people of Andhra Pradesh. \n#GoBackModi \n#ModiIsAMistake #…', 'neutral', 0, 'GaddeAjay ', '#gobackmodi #modiisamistake ', 'Avinash Ch', 'http://pbs.twimg.com/profile_images/993380019153055744/sGVrg6ZH_normal.jpg', 'Hyderabad, India', 'Narendra Modi', ''),
(1614, '2019-02-10 06:42:04', 'RT @JaiTDP: Where is the Railway Zone Narendra Modi Ji?\nWith what face have you come to #AndhraPradesh?\n\n#GoBackModi \n#ModiIsaMistake https…', 'neutral', 0, 'JaiTDP ', '#andhrapradesh #gobackmodi #modiisamistake ', 'Balayya Fan', 'http://pbs.twimg.com/profile_images/1063646927340748800/YG8nbr5l_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1615, '2019-02-10 06:42:04', 'RT @kryes: Narendra Modi is also senior in back-stabbing his own Guru (LK Advani)!\n--\nHow the Prime Minister of a Country can go so LOW in…', 'neutral', 0, 'kryes ', '', 'பாணà¯à®Ÿà®¿à®¯à®©à¯', 'http://pbs.twimg.com/profile_images/1065648899010977792/LRR02Pb__normal.jpg', 'ராமநாதபà¯à®°à®®à¯', 'Narendra Modi', ''),
(1616, '2019-02-10 06:42:01', 'RT @PradyotManikya: Seeing black balloons over the iconic Ujayanta Palace while Narendra Modi addresses the public at the Astabal Ground .…', 'neutral', 0, 'PradyotManikya ', '', 'RAHIL', 'http://pbs.twimg.com/profile_images/1089053204258578432/iGr6o5v1_normal.jpg', 'Hyderabad, India', 'Narendra Modi', ''),
(1617, '2019-02-10 06:41:58', 'RT @kryes: Narendra Modi is also senior in back-stabbing his own Guru (LK Advani)!\n--\nHow the Prime Minister of a Country can go so LOW in…', 'neutral', 0, 'kryes ', '', 'AravindAB', 'http://pbs.twimg.com/profile_images/695282916222324736/ExXKj9w1_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1618, '2019-02-10 06:41:53', 'RT @JantaKaReporter: Pro-BJP filmmaker Vivek Agnihotri left embarrassed after his Twitter poll gives huge advantage to Rahul Gandhi over Na…', 'neutral', 0, 'JantaKaReporter ', '', 'VPB', 'http://pbs.twimg.com/profile_images/1080399609946529792/20vhXmqT_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1619, '2019-02-10 06:41:52', 'South India stands firmly with the BJP. Popularity of PM Narendra Modi in south India is huge. Regional\rparty has d… https://t.co/ZbV8XOO9BC', 'neutral', 0, '', '', 'H.S.Shyamala', 'http://pbs.twimg.com/profile_images/994831294587658245/l9sVbTRx_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1620, '2019-02-10 06:41:51', 'RT @MinhazMerchant: Dear â¦@RahulGandhiâ©, Qatari Air Force paid Rs 1,875 crore for fully loaded #Rafale jet in 2015. Indian Air Force is pay…', 'neutral', 0, 'MinhazMerchant RahulGandhi ', '#rafale ', 'AK Bakhshi', 'http://pbs.twimg.com/profile_images/793334709434613760/LAwa--1R_normal.jpg', 'Bharat Ganarajya', 'Narendra Modi', ''),
(1621, '2019-02-10 06:41:47', 'RT @idanuragtyagi: Democracy and law order have truly lost their way in the state of West Bengal. @mamataOfficial has devastated the state.…', 'neutral', 0, 'idanuragtyagi MamataOfficial ', '', '🇮🇳Srimani🇮🇳', 'http://pbs.twimg.com/profile_images/854762277962108933/QByHqvis_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1622, '2019-02-10 06:41:43', 'RT @nameanuragtyagi: The contrast is stark between the BJP and the TMC. While the police and the CBI are empowered under PM Shri Narendra M…', 'neutral', 0, 'nameanuragtyagi ', '', '🇮🇳Srimani🇮🇳', 'http://pbs.twimg.com/profile_images/854762277962108933/QByHqvis_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1623, '2019-02-10 06:41:42', '\"NTR wanted a Congress-mukt Andhra Pradesh, but now Chandrababu Naidu has forged alliance with the same party to de… https://t.co/yCBS0A6lpv', 'positive', 1, '', '', 'NDTV', 'http://pbs.twimg.com/profile_images/570440108424171520/QuGYd7jH_normal.png', 'India', 'Narendra Modi', ''),
(1624, '2019-02-10 06:41:39', 'RT @sonaliranade: Wherein Tavleen Singh berates Modi ji 4 being defensive about his many achievements but can find nothing beyond SwachBhar…', 'neutral', 0, 'sonaliranade ', '', 'Solosabs', 'http://pbs.twimg.com/profile_images/487790616315588610/u04B0RRR_normal.jpeg', 'Mumbai, India', 'Narendra Modi', ''),
(1625, '2019-02-10 06:41:37', 'RT @jothims: Rs 42,000-crore Tirupur textile industry, sustained by 8,500 smallscale, medium and large firms ,employed around 5lakhs worker…', 'neutral', 0, 'jothims ', '', 'Vijayaprasath', 'http://pbs.twimg.com/profile_images/1034114458379939841/6JQTrVCJ_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1626, '2019-02-10 06:41:32', 'RT @jothims: Rs 42,000-crore Tirupur textile industry, sustained by 8,500 smallscale, medium and large firms ,employed around 5lakhs worker…', 'neutral', 0, 'jothims ', '', 'jagadish', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Narendra Modi', ''),
(1627, '2019-02-10 06:41:26', '@ysjagan HI ANNA \nToday Narendra Modi super speech about Chandrababu Naidu\nMind blowing speech narendramodi about Chandrababu Naidu', 'positive', 0, 'ysjagan ', '', 'P R A V E E N', 'http://pbs.twimg.com/profile_images/1026748603719733249/lgN1pt2t_normal.jpg', 'India', 'Narendra Modi', ''),
(1628, '2019-02-10 06:41:13', 'RT @tavleen_singh: Fifth Column: Modi’s farewell speech | The Indian Express https://t.co/asIF9KoftX', 'neutral', 0, 'tavleen_singh ', '', 'The Charvaka', 'http://pbs.twimg.com/profile_images/979917395224662017/Xz8asfD5_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1629, '2019-02-10 06:41:12', 'RT @IndianExpress: PM Modi is addressing a public rally at Guntur in Andhra Pradesh. \nFollow LIVE Updates here\n\nhttps://t.co/qwJ6ILq8nh', 'neutral', 0, 'IndianExpress ', '', 'रमेश चंदà¥à¤° तà¥à¤°à¤¿à¤ªà¤¾à¤ ी', 'http://pbs.twimg.com/profile_images/1048151442912174080/PAuD4hAY_normal.jpg', 'पà¥à¤°à¤¯à¤¾à¤—राज,उतà¥à¤¤à¤° पà¥à¤°à¤¦à¥‡à¤¶, à¤à¤¾à¤°à¤¤', 'Narendra Modi', ''),
(1630, '2019-02-10 06:41:07', 'RT @jothims: Rs 42,000-crore Tirupur textile industry, sustained by 8,500 smallscale, medium and large firms ,employed around 5lakhs worker…', 'neutral', 0, 'jothims ', '', 'மூரà¯à®¤à¯à®¤à®¿', 'http://pbs.twimg.com/profile_images/1074149428162908166/-bPa2pEs_normal.jpg', 'Madurai North, India', 'Narendra Modi', ''),
(1631, '2019-02-10 06:41:04', 'RT @jothims: Rs 42,000-crore Tirupur textile industry, sustained by 8,500 smallscale, medium and large firms ,employed around 5lakhs worker…', 'neutral', 0, 'jothims ', '', 'வனமகனà¯', 'http://pbs.twimg.com/profile_images/1021849149426360320/ZbBt1v4L_normal.jpg', 'Mumbai, India', 'Narendra Modi', ''),
(1632, '2019-02-10 06:41:04', 'RT @jothims: Rs 42,000-crore Tirupur textile industry, sustained by 8,500 smallscale, medium and large firms ,employed around 5lakhs worker…', 'neutral', 0, 'jothims ', '', 'சஙà¯à®•à¯€à®¤à®¾ கீதà¯à®¤à®¾', 'http://pbs.twimg.com/profile_images/1036202161045102594/fvELj1r6_normal.jpg', 'Salem, India', 'Narendra Modi', ''),
(1633, '2019-02-10 06:41:03', 'RT @savukku: #GoBackModi\n\n#GoBackSadistModi \n\nWhy Tirupur’s Rs 42,000 crore textile hub fears a wipeout\n\nhttps://t.co/M11N0Eutv7', 'neutral', 0, 'savukku ', '#gobackmodi #gobacksadistmodi ', 'Karthikeyan', 'http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png', 'Mumbai, India', 'Narendra Modi', ''),
(1634, '2019-02-10 06:41:02', 'RT @erbmjha: Rahul Gandhi completely exposed Narendra Modi on Rafale deal. Please RT & Spread :) https://t.co/j7Eqh7NuWA', 'neutral', 0, 'erbmjha ', '', 'Srihari Nayak🔥', 'http://pbs.twimg.com/profile_images/1093844139450351616/2Hg7r-i__normal.jpg', 'India', 'Narendra Modi', ''),