forked from covid19india/api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathraw_data.json
More file actions
5856 lines (5856 loc) · 429 KB
/
Copy pathraw_data.json
File metadata and controls
5856 lines (5856 loc) · 429 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"faq": [
{
"answer": "https://www.news18.com/news/india/coronavirus-vaccine-tracker-live-white-house-sets-late-october-target-sanofi-glaxosmithkline-start-clinical-trials-2847841.html",
"date": "September 4, 2020 at 11:49PM",
"description": "Coronavirus Vaccine Tracker LIVE Updates: Defence Minister Rajnath Singh, who is in Moscow for the Shanghai Cooperation Organisation (SCO) ministerial,…",
"image": "",
"question": "Coronavirus Vaccine Tracker LIVE Rajnath Singh Says Russia's 'Sputnik V' Will be Effective, Touts Partne... - News18"
},
{
"answer": "https://www.ndtv.com/india-news/p-chidambarams-dig-at-pm-narendra-modi-over-economy-i-have-to-say-the-same-thing-2289121",
"date": "September 4, 2020 at 11:49PM",
"description": "Former Finance Minister P Chidambaram hit out at PM Modi over the economy. (File) New Delhi: Congress veteran P Chidambaram has once again hit out at the…",
"image": "https://c.ndtvimg.com/2020-01/4lpfgd28_p-chidambaram-pti-_625x300_21_January_20.jpg",
"question": "I Have To Say The Same Thing P Chidambaram Shares PM's 2013 Tweet - NDTV"
},
{
"answer": "https://www.livemint.com/news/india/delhi-international-airport-ropes-in-genestrings-for-on-site-covid-19-testing-11599213734403.html",
"date": "September 4, 2020 at 11:49PM",
"description": "NEW DELHI :Delhi International Airport Ltd (DIAL) has roped in Genestrings Diagnostic Centre to set up and operate an on-site covid-19 testing laboratory at the…",
"image": "https://images.livemint.com/img/2020/09/04/600x338/PTI26-05-2020_000088A_1590491760294_1599214872785.jpg",
"question": "Delhi international airport ropes in Genestrings for on-site covid-19 testing - Mint"
},
{
"answer": "https://www.indiatoday.in/world/story/coronavirus-vaccine-news-today-live-updates-covid-19-vaccine-status-september-4-1718425-2020-09-04",
"date": "September 4, 2020 at 11:49PM",
"description": "Posted by Kritika Bansal Updates for this live blog have ended. Posted by Kritika Bansal Covid vaccine must be proven safe before mass rollout: WHO's chief…",
"image": "",
"question": "Covid vaccine updates Vaccine must be proven safe before mass rollout, says WHO chief scientist - India Today"
},
{
"answer": "https://www.ndtv.com/india-news/india-crosses-4-million-coronavirus-cases-2290631",
"date": "September 4, 2020 at 11:55PM",
"description": "India's total of those cured of the disease also crossed three million today (File) New Delhi: India, one of the worst coronavirus-hit countries in the world,…",
"image": "",
"question": "India Crosses 4 Million Coronavirus Cases - NDTV"
},
{
"answer": "https://scroll.in/latest/972077/coronavirus-delhi-records-highest-daily-rise-in-cases-in-two-months-with-2509-fresh-infections",
"date": "September 5, 2020 at 12:01AM",
"description": "10.53 pm: Here are the top updates of the day 10.47 pm: West Bengal records 2,984 new cases and 55 deaths. The total number of cases are now 1,71,681 and the…",
"image": "https://s01.sgp1.cdn.digitaloceanspaces.com/book/146972-twsjogvpqz-1599148113.jpeg",
"question": "Coronavirus is testing our resilience, public health system and economy, says Narendra Modi - Scroll.in"
},
{
"answer": "https://www.livemint.com/news/india/govt-s-announces-measures-to-curb-expenditure-avoid-functions-at-offices-do-not-create-new-posts-11599224845723.html",
"date": "September 5, 2020 at 12:01AM",
"description": "In a bid to save resources for \"priority schemes\", the finance ministry on Friday issued a detailed list on expenditure management. \"In the context of the…",
"image": "",
"question": "Govt's new measures to curb costs Avoid functions at offices, do not create new posts - Mint"
},
{
"answer": "https://www.ndtv.com/video/news/the-news/clinical-trials-of-russian-anti-covid-vaccine-to-begin-in-india-this-month-official-559535",
"date": "September 5, 2020 at 12:36AM",
"description": "",
"image": "https://c.ndtvimg.com/2020-09/l0jbiltk_kirill-dmitriev_160x120_04_September_20.jpg",
"question": "Clinical Trials Of Russian Anti-Covid Vaccine To Begin In India This Month Official - NDTV"
},
{
"answer": "https://www.indiatoday.in/india/story/covid-pandemic-will-continue-in-2021-india-seeing-2nd-covid-wave-in-some-areas-aiims-chief-dr-randeep-guleria-1718778-2020-09-04",
"date": "September 5, 2020 at 01:36AM",
"description": "The coronavirus pandemic is likely to spillover to 2021 and continue for some months given the trend in the rise of daily Covid-19 cases at present, said Dr…",
"image": "",
"question": "Covid pandemic will continue in 2021, India seeing 2nd Covid wave in some areas AIIMS chief Dr Randeep Guleria - India Today"
},
{
"answer": "https://www.hindustantimes.com/india-news/cash-strapped-govt-cuts-non-essential-expenditures-amid-covid-19-crisis/story-eHD4dAEgLX4iGKoqyp4PlN.html",
"date": "September 5, 2020 at 04:36AM",
"description": "Sign In Sign Out e-paper Today in New Delhi , India Sep 05, 2020-Saturday - °C Humidity - Wind - Select Country IND USA Select city Metro cities - , ,, Other…",
"image": "",
"question": "Cash-strapped govt cuts non-essential expenditures amid Covid-19 crisis - Hindustan Times"
},
{
"answer": "https://timesofindia.indiatimes.com/world/us/covid-19-early-vaccine-results-show-no-major-safety-issue/articleshow/77907325.cms",
"date": "September 5, 2020 at 04:36AM",
"description": "Covid-19: Early vaccine results show no major safety issue News World News US News Covid-19: Early vaccine results show no major safety issue Covid-19: Early…",
"image": "https://static.toiimg.com/thumb/msid-77907328,width-1070,height-580,imgsize-55219,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"question": "Covid-19 Early vaccine results show no major safety issue - Times of India"
},
{
"answer": "https://timesofindia.indiatimes.com/india/covid-19-indias-cases-hit-4-million-mark-last-1-million-rise-fastest-for-any-country/articleshow/77940439.cms",
"date": "September 5, 2020 at 04:37AM",
"description": "Covid-19: India’s cases hit 4 million mark, last 1 million rise fastest for any country News India News Covid-19: India’s cases hit 4 million mark, last 1…",
"image": "",
"question": "Covid-19 India’s cases hit 4 million mark, last 1 million rise fastest for any country - Times of India"
},
{
"answer": "https://www.livemint.com/news/india/covid-19-vaccine-russia-says-having-close-dialogue-with-india-for-mass-production-11599226311130.html",
"date": "September 5, 2020 at 04:37AM",
"description": "Kirill Dmitriev, CEO, Russian Direct Investment Fund today said, \"We are having close dialogue with corresponding ministries and Indian government and its…",
"image": "",
"question": "Covid-19 vaccine Russia says having 'close dialogue' with India for production - Mint"
},
{
"answer": "https://www.livemint.com/news/india/covid-19-record-19-218-new-cases-takes-maharashtra-s-tally-past-8-6-lakh-mark-11599235176453.html",
"date": "September 5, 2020 at 05:36AM",
"description": "The second-biggest spike was recorded on Thursday with 18,105 new cases emerging in the 24-hour period. With this, Maharashtra's overall tally of virus…",
"image": "https://images.livemint.com/img/2020/09/04/600x338/c2e070c778c246eda867d4bbd472956a-c2e070c778c246eda867d4bbd472956a-1_1594037184311_1599235765904.jpg",
"question": "Covid-19 Record 19,218 new cases takes Maharashtra's tally past 8.6 lakh-mark - Mint"
},
{
"answer": "https://indianexpress.com/article/explained/india-economy-coronavirus-lockdown-explained-ideas-6582451/",
"date": "September 5, 2020 at 05:36AM",
"description": "By: Explained Desk | New Delhi | Updated: September 4, 2020 11:12:41 am Laborers carry sacks of food grains at a market in Kolkata on Thursday, September 3,…",
"image": "https://images.indianexpress.com/2020/09/india-economy-1.jpg",
"question": "Explained Ideas Two factors that will determine the course of India’s economy for the rest of the year - The Indian Express"
},
{
"answer": "https://timesofindia.indiatimes.com/india/coronavirus-india-vaccine-and-cases-news-live-updates/liveblog/77921726.cms",
"date": "September 5, 2020 at 06:36AM",
"description": "04:46 (IST) Sep 04 Positive sign in five high caseload states While active cases of Covid-19 are rising on a daily basis led by rapidly rising positive cases…",
"image": "https://static.toiimg.com/thumb/msid-77921726,width-1070,height-580,imgsize-106924,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"question": "Coronavirus live updates Another 11.7 lakh tests done, daily positivity rate at 7.1% - Times of India"
},
{
"answer": "https://www.business-standard.com/article/companies/covid-impact-indigo-may-shelve-approved-qip-plan-if-air-travel-picks-up-120090400437_1.html",
"date": "September 5, 2020 at 06:36AM",
"description": "Vodafone's India unit plans $1.5 billion fundraising including share sales Business Standard QIP is a capital-raising tool through which listed companies can…",
"image": "",
"question": "Covid-19 impact IndiGo may shelve approved QIP plan if air travel picks up - Business Standard"
},
{
"answer": "https://timesofindia.indiatimes.com/videos/city/delhi/covid-19-case-fatality-trajectory-increased-by-50-in-delhi-says-health-ministry/videoshow/77913662.cms",
"date": "September 5, 2020 at 06:36AM",
"description": "News Videos City Delhi COVID-19: Case fatality trajectory increased by 50% in Delhi, says Health Ministry 989 views 1 day ago COVID-19: Case fatality trajectory…",
"image": "",
"question": "COVID-19 Case fatality trajectory increased by 50% in Delhi, says Health Ministry - Times of India"
},
{
"answer": "https://www.moneycontrol.com/news/india/international-flights-on-september-4-here-are-the-flights-operated-by-air-india-under-vande-bharat-mission-5796191.html",
"date": "September 5, 2020 at 07:36AM",
"description": "The Centre started the ‘Vande Bharat Mission’ on May 6 to help those stranded due to the novel coronavirus pandemic reach their destinations via international…",
"image": "",
"question": "International flights on September 4 Here are the flights operated by Air India under Vande Bharat... - Moneycontrol"
},
{
"answer": "https://timesofindia.indiatimes.com/city/delhi/a-third-of-covid-beds-occupied-by-outsiders/articleshow/77939272.cms",
"date": "September 5, 2020 at 07:36AM",
"description": "",
"image": "https://static.toiimg.com/thumb/msid-77941821,width-1070,height-580,imgsize-833311,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"question": "A third of Covid beds occupied by ‘outsiders’ in Delhi - Times of India"
},
{
"answer": "https://www.news18.com/news/india/coronavirus-india-news-live-updates-cases-deaths-lockdown-vaccine-treatment-cure-2847859.html",
"date": "September 5, 2020 at 08:36AM",
"description": "Coronavirus LIVE Updates: Kerala chief minister Pinarayi Vijayan has warned of the formation of “Onam Clusters” of coronavirus in the state because of increased…",
"image": "https://images.news18.com/ibnlive/uploads/2020/08/1598848304_migrant.jpg",
"question": "Delhi Records Highest Spike in Cases in 69 Days, No Chance of Another Lockdown, Says Official - News18"
},
{
"answer": "https://www.ndtv.com/india-news/coronavirus-india-live-news-updates-coronavirus-recovery-rate-rises-to-77-per-cent-2290718",
"date": "September 5, 2020 at 08:36AM",
"description": "COVID-19 India Updates: Coronavirus cases in India have crossed 39 lakh on Friday. (File) New Delhi: Coronavirus Live Updates: India, one of the worst…",
"image": "https://c.ndtvimg.com/2020-09/6tjr6i64_coronavirus-india-afp_625x300_03_September_20.jpg",
"question": "Coronavirus Live Updates COVID-19 Cases In India Cross 40-Lakh Mark - NDTV"
},
{
"answer": "https://www.thehindu.com/news/national/coronavirus-india-records-over-4-million-covid-19-cases/article32526048.ece",
"date": "September 5, 2020 at 08:36AM",
"description": "India’s COVID-19 tally crossed the 4 million mark on September 4, according to data from the State governments. As of 9.30 p.m. IST on September 4, the total…",
"image": "https://www.thehindu.com/news/national/77tojk/article32526047.ece/ALTERNATES/LANDSCAPE_615/HEALTH-CORONAVIRUSINDIA-CASES",
"question": "Coronavirus | India’s COVID-19 cases cross 4 million - thehindu.com"
},
{
"answer": "https://www.ndtv.com/world-news/widespread-vaccination-for-coronavirus-not-until-mid-2021-who-2290426",
"date": "September 5, 2020 at 08:36AM",
"description": "Need to see how truly protective the vaccine is and how safe it is, the WHO says. (Representational) Geneva: The World Health Organization does not expect…",
"image": "https://c.ndtvimg.com/2020-07/1e2qjfv_coronavirus-vaccine-reuters-_625x300_03_July_20.jpg",
"question": "Widespread Covid Vaccination Not Expected Until Middle Of Next Year WHO - NDTV"
},
{
"answer": "https://www.hindustantimes.com/world-news/covid-19-vaccine-distribution-expected-to-start-in-mid-2021-who-chief-scientist/story-jzFzgjKhE3CmLwWiK1awdK.html",
"date": "September 5, 2020 at 09:37AM",
"description": "",
"image": "",
"question": "Covid-19 vaccine distribution not expected until mid-2021 WHO chief scientist - Hindustan Times"
},
{
"answer": "https://timesofindia.indiatimes.com/india/covid-19-allow-testing-on-demand-centre-tells-states/articleshow/77941268.cms",
"date": "September 5, 2020 at 09:37AM",
"description": "Covid-19: Allow testing on demand, Centre tells states News India News Covid-19: Allow testing on demand, Centre tells states Covid-19: Allow testing on demand,…",
"image": "https://static.toiimg.com/thumb/msid-77941271,width-1070,height-580,imgsize-549926,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"question": "Covid-19 Allow testing on demand, Centre tells states - Times of India"
},
{
"answer": "https://www.indiatvnews.com/news/india/russia-coronavirus-vaccine-sputnik-v-manufacturing-in-india-details-covid-pandemic-647288",
"date": "September 5, 2020 at 09:37AM",
"description": "You Are At: English News India Russia in talks with India to manufacture coronavirus vaccine Sputnik V locally Russia is in talks with India for production of…",
"image": "https://resize.indiatvnews.com/en/resize/newbucket/715_-/2020/09/russia-coroanvirus-vaccine-sputnik-v-1599239860.jpg",
"question": "Russia in talks with India to manufacture coronavirus vaccine Sputnik V locally - India TV News"
},
{
"answer": "https://www.news18.com/news/india/coronavirus-live-updates-covid-19-vaccine-when-covid-tracker-india-cases-virus-testing-death-toll-covid-pass-2851361.html",
"date": "September 5, 2020 at 09:38AM",
"description": "Coronavirus LIVE Updates: The Indian Council of Medical Research (ICMR) on Friday issued a new advisory on Covid-19 testing strategy, allowing ‘testing on…",
"image": "",
"question": "Coronavirus LIVE Updates ICMR Allows ‘Testing on Demand’ as India Adds 10 Lakh Cases in 2 Weeks; WHO Tempers Quick Vaccine Hopes - News18"
},
{
"answer": "https://www.indiatvnews.com/news/world/coronavirus-live-updates-breaking-news-september-5-2020-647298",
"date": "September 5, 2020 at 10:37AM",
"description": "You Are At: English News World Breaking News LIVE: Top Headlines This Hour Live now Get all the latest news on coronavirus cases, news on the vaccine, monsoon…",
"image": "https://resize.indiatvnews.com/en/resize/newbucket/715_-/2020/09/breakingnews-live-blog-1568185450-1595123397-1599270550.jpg",
"question": "Encounter broke out between police and members of liquor mafia gang - India TV News"
},
{
"answer": "https://www.ndtv.com/india-news/coronavirus-testing-icmr-new-advisory-in-new-covid-guidelines-top-medical-body-on-testing-on-demand-2290754",
"date": "September 5, 2020 at 10:37AM",
"description": "Across India, over 40 lakh people have been affected by the pandemic. New Delhi: All people living in containment zones should be tested using rapid antigen…",
"image": "",
"question": "Covid Testing On Demand Top Medical Body's New Advisory For States - NDTV"
},
{
"answer": "https://economictimes.indiatimes.com/news/economy/indicators/rising-cases-of-covid-19-in-rural-areas-could-risk-economic-recovery-report/articleshow/77907297.cms",
"date": "September 5, 2020 at 10:37AM",
"description": "",
"image": "",
"question": "Rising cases of Covid-19 in rural areas could risk economic recovery Report - Economic Times"
},
{
"answer": "https://indianexpress.com/article/india/coronavirus-india-news-live-updates-covid-19-cases-deaths-vaccine-total-corona-cases-in-india-today-latest-news-6583804/",
"date": "September 5, 2020 at 10:37AM",
"description": "Coronavirus India LIVE updates: Workers sanitize the bar area in New Delhi on Friday. Coronavirus India News Live Updates: The total number of coronavirus cases…",
"image": "",
"question": "Coronavirus Live Updates India reports 86,432 cases in last 24 hours, total infections cross 40 lakh mark - The Indian Express"
},
{
"answer": "https://www.aljazeera.com/news/2020/09/covid-19-outbreak-worsening-malnutrition-india-200904132435543.html",
"date": "September 5, 2020 at 11:37AM",
"description": "Home News AJ Impact Middle East Africa Asia US & Canada Latin America Europe Asia Pacific All AJ Impact AJ Go Start Here Al Jazeera Close Up Fork the System All…",
"image": "",
"question": "COVID-19 outbreak is worsening malnutrition in India - Aljazeera.com"
},
{
"answer": "https://www.thehindu.com/news/national/coronavirus-india-lockdown-september-5-2020-live-updates/article32528792.ece",
"date": "September 5, 2020 at 11:37AM",
"description": "India has recorded 28% of new COVID-19 infections in the world in the last five days. India has recorded 28% of new COVID-19 infections in the world in the last…",
"image": "https://www.thehindu.com/news/national/fnocs1/article32529711.ece/ALTERNATES/LANDSCAPE_615/Covid19-testingjpg",
"question": "Coronavirus India lockdown Day 164 updates | Serological survey shows 5.15% of Bhubaneswar residents have antibodies - The Hindu"
},
{
"answer": "https://timesofindia.indiatimes.com/city/goa/travel-operators-demand-air-bubble-with-3-nations/articleshow/77920476.cms",
"date": "September 5, 2020 at 11:37AM",
"description": "Goa: Travel operators demand air bubble with 3 nations News City News goa News Goa: Travel operators demand air bubble with 3 nations Goa: Travel operators…",
"image": "https://static.toiimg.com/thumb/msid-77925373,width-1070,height-580,imgsize-433179,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"question": "Goa Travel operators demand air bubble with 3 nations - Times of India"
},
{
"answer": "https://indianexpress.com/article/explained/russian-coronavirus-vaccine-trial-results-6583540/",
"date": "September 5, 2020 at 11:37AM",
"description": "Written by Anuradha Mascarenhas | Pune | Updated: September 5, 2020 8:08:10 am The vaccine is the first in the world to be authorised for general use. (Photo:…",
"image": "",
"question": "Explained Reading Russian coronavirus vaccine trial results - The Indian Express"
},
{
"answer": "https://www.bbc.com/news/world-asia-india-53981830",
"date": "September 5, 2020 at 11:37AM",
"description": "Published 3 days ago image copyright AFP image caption Small businesses have suffered the most during the lockdown India's economy contracted by 23.9% in the…",
"image": "",
"question": "India’s economic woes may have only just begun - BBC News"
},
{
"answer": "https://www.hindustantimes.com/india-news/india-allows-testing-on-demand-for-covid-19/story-JWprzSKRd4l2ZRXkGBp4AO.html",
"date": "September 5, 2020 at 11:38AM",
"description": "Sign In Sign Out e-paper Today in New Delhi , India Sep 05, 2020-Saturday - °C Humidity - Wind - Select Country IND USA Select city Metro cities - , ,, Other…",
"image": "https://www.hindustantimes.com/rf/image_size_960x540/HT/p2/2020/09/05/Pictures/covid-19-test-in-delhi_ee06364a-ef31-11ea-a6a9-ef65eb2fa0ec.jpg",
"question": "India allows testing on demand for Covid-19 - Hindustan Times"
},
{
"answer": "https://www.hindustantimes.com/mumbai-news/alarming-increase-in-active-covid-cases-mumbai-sees-20-jump-in-fortnight/story-lktvAe1SqxuxZ6Q26V8D1I.html",
"date": "September 5, 2020 at 12:37PM",
"description": "Sign In Sign Out e-paper Today in New Delhi , India Sep 05, 2020-Saturday - °C Humidity - Wind - Select Country IND USA Select city Metro cities - , ,, Other…",
"image": "",
"question": "Alarming increase in active Covid cases; Mumbai sees 20% jump in fortnight - Hindustan Times"
},
{
"answer": "https://www.indiatoday.in/india/story/chinese-army-abduct-5-villagers-arunachal-pradesh-congress-mla-ninong-ering-1718843-2020-09-05",
"date": "September 5, 2020 at 12:37PM",
"description": "Amid escalating border tension with China in eastern Ladakh, Congress MLA from Arunachal Pradesh Ninong Ering has claimed that five people have been abducted by…",
"image": "https://akm-img-a-in.tosshub.com/indiatoday/images/story/202009/AFP-000_Del6160865__1_-647x363.jpeg?si_OKH1D2WQKguZSgiMYAKMhKW9uq52l",
"question": "Chinese Army abducted 5 villagers from Arunachal Pradesh, claims Congress MLA Ninong Ering - India Today"
},
{
"answer": "https://www.india.com/news/india/delhi-containment-zone-list-today-total-count-nears-1000-amid-rapid-surge-in-covid-19-cases-full-list-4132196/",
"date": "September 5, 2020 at 12:37PM",
"description": "New Delhi: Amid consistent surge in COVID-19 cases, Tthe number of containment zones in the national capital rose to 949. A total of 146 red zones have been…",
"image": "",
"question": "Delhi Containment Zones Total Count Nears 1,000 Amid Rapid Surge in COVID-19 Cases | Full List - India.com"
},
{
"answer": "https://economictimes.indiatimes.com/news/newsblogs/latest-daily-news-and-updates-september-5/liveblog/77941995.cms",
"date": "September 5, 2020 at 12:37PM",
"description": "",
"image": "https://img.etimg.com/thumb/msid-77941995,width-600,resizemode-4,imglength-143295/news/newsblogs/latest-daily-news-and-updates-september-5.jpg",
"question": "India China LIVE Updates Chinese Army abducted 5 villagers from Arunachal Pradesh, claims Congress MLA - Economic Times"
},
{
"answer": "https://www.moneycontrol.com/news/india/coronavirus-india-news-live-updates-statewise-tally-delhi-pune-mumbai-tamil-nadu-covid-19-vaccine-update-antigen-test-pune-lockdown-5800811.html",
"date": "September 5, 2020 at 01:36PM",
"description": "",
"image": "",
"question": "Coronavirus India News LIVE Updates Odisha’s COVID-19 tally at 1.2 lakh; situation in Delhi under... - Moneycontrol"
},
{
"answer": "https://www.ndtv.com/india-news/cant-lose-an-inch-of-territory-china-statement-after-rajnath-singh-meet-2290801",
"date": "September 5, 2020 at 01:36PM",
"description": "India-China Standoff: Statement comes after meeting between Rajnath Singh and China's Defence Minister New Delhi: India is \"entirely\" responsible for the border…",
"image": "",
"question": "Can't Lose An Inch Of Territory China Statement After Rajnath Singh Meet - NDTV"
},
{
"answer": "https://www.indiatoday.in/india/story/telangana-finance-minister-tests-positive-for-coronavirus-1718858-2020-09-05",
"date": "September 5, 2020 at 01:36PM",
"description": "T Harish Rao, Telangana's Finance Minister has tested positive for coronavirus. He revealed the news on his official Twitter handle. He Tweeted, \"On getting…",
"image": "",
"question": "Telangana Finance Minister tests positive for coronavirus - India Today"
},
{
"answer": "https://www.aninews.in/news/national/general-news/covid-19-situation-in-delhi-under-control-cfr-at-05-pc-testing-doubled-satyendar-jain20200905124709/",
"date": "September 5, 2020 at 01:36PM",
"description": "New Delhi [India], September 5 (ANI): Delhi Health Minister Satyendar Jain on Saturday said that the situation in the national capital is under control and…",
"image": "",
"question": "COVID-19 situation in Delhi under control, CFR at 0.5 pc, testing doubled Satyendar Jain - ANI News"
},
{
"answer": "https://www.ndtv.com/delhi-news/arvind-kejriwal-on-delhi-covid-cases-more-cases-as-testing-has-doubled-2290823",
"date": "September 5, 2020 at 01:36PM",
"description": "The AAP government has doubled testing in the city, Arvind Kejriwal said. New Delhi: The Covid-19 situation in Delhi is under control, Chief Minister Arvind…",
"image": "https://c.ndtvimg.com/2020-09/2inr2c1g_arvind-kejriwal-_625x300_05_September_20.jpg",
"question": "More Cases As Testing Doubled Arvind Kejriwal On Covid Spurt In Delhi - NDTV"
},
{
"answer": "https://www.business-standard.com/article/current-affairs/coronavirus-live-updates-india-cases-global-corona-death-toll-lockdown-maharashtra-delhi-tamil-nadu-andhra-up-covid-19-vaccine-update-latest-news-120090401896_1.html",
"date": "September 5, 2020 at 02:36PM",
"description": "Coronavirus latest news: India's coronavirus cases stand at 4,023,179. Globally, there are 26,795,701 cases of the highly contagious disease. Stay tuned for…",
"image": "",
"question": "Coronavirus LIVE Delhi reports 2,914 new cases, fatality rate at 0.5% - Business Standard"
},
{
"answer": "https://indianexpress.com/article/explained/covid-19-india-cases-numbers-tracker-updates-6584020/",
"date": "September 5, 2020 at 02:36PM",
"description": "Written by Amitabh Sinha | Pune | Updated: September 5, 2020 1:00:02 pm Staff working at Kailas Smashan Bhoomi, Pune on Thursday. (Express photo by Pavan…",
"image": "",
"question": "India coronavirus numbers explained Behind the unusual surge in Maharashtra cases - The Indian Express"
},
{
"answer": "https://www.hindustantimes.com/india-news/pm-must-explain-why-india-failed-chidambaram-targets-govt-on-covid-19-economy/story-kucwbm1BOgBNjG1sfEnupK.html",
"date": "September 5, 2020 at 02:36PM",
"description": "Sign In Sign Out e-paper Today in New Delhi , India Sep 05, 2020-Saturday - °C Humidity - Wind - Select Country IND USA Select city Metro cities - , ,, Other…",
"image": "",
"question": "‘PM must explain why India failed’ Chidambaram targets govt on Covid-19, economy - Hindustan Times"
},
{
"answer": "https://news.google.com/__i/rss/rd/articles/CBMiK2h0dHBzOi8vd3d3LnlvdXR1YmUuY29tL3dhdGNoP3Y9XzFZY2ZjdkdPVknSAQA?oc=5",
"date": "September 5, 2020 at 03:36PM",
"description": "",
"image": "https://i.ytimg.com/vi/_1YcfcvGOVI/maxresdefault.jpg",
"question": "India is reporting world's highest single day spike in cases | Coronavirus | World News - WION"
},
{
"answer": "https://www.india.com/news/india/international-flights-on-september-5-full-schedule-air-india-air-india-express-repatriation-flights-to-leave-for-dubai-torronto-and-jeddah-from-delhi-and-chenai-today-4131966/",
"date": "September 5, 2020 at 03:36PM",
"description": "International Flights: The sixth of the Vande Bharat Mission has been operational from September 1. In this phase, 1,007 international flights from 24 countries…",
"image": "",
"question": "International Flights on September 5 Air India, Air India Express' Repatriation Flights to Leave For Dubai, - India.com"
},
{
"answer": "https://www.news18.com/news/world/russian-defence-minister-sergei-shoigu-gets-sputnik-v-vaccine-shot-for-coronavirus-2850939.html",
"date": "September 5, 2020 at 03:36PM",
"description": "Russian Defence Minister Sergei Shoigu on Friday received a shot of the country's 'Sputnik V' vaccine on a day a study said the Covid-19 vaccine has been shown…",
"image": "https://images.news18.com/ibnlive/uploads/2020/09/1599242334_russian-defence-minister-new.jpg",
"question": "Russian Defence Minister Gets 'Sputnik V' Shot for Coronavirus on Day Initial Study Shows It is Safe - News18"
},
{
"answer": "https://timesofindia.indiatimes.com/city/delhi/judge-tests-covid-positive-in-delhi/articleshow/77944430.cms",
"date": "September 5, 2020 at 03:36PM",
"description": "Judge tests Covid positive in Delhi News City News delhi News Judge tests Covid positive in Delhi Judge tests Covid positive in Delhi Facebook Twitter Linkedin…",
"image": "https://static.toiimg.com/thumb/msid-77944483,width-1070,height-580,imgsize-190621,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"question": "Judge tests Covid positive in Delhi - Times of India"
},
{
"answer": "https://timesofindia.indiatimes.com/world/rest-of-world/how-to-decide-who-should-get-the-covid-19-vaccine-first/articleshow/77945017.cms",
"date": "September 5, 2020 at 03:36PM",
"description": "How to decide who should get the Covid-19 vaccine first News World News Rest of World News How to decide who should get the Covid-19 vaccine first How to decide…",
"image": "",
"question": "How to decide who should get the Covid-19 vaccine first - Times of India"
},
{
"answer": "https://www.ndtv.com/india-news/coronavirus-india-sees-record-single-day-surge-of-86-432-cases-total-cases-pass-40-lakh-over-69-000-deaths-so-far-2290763",
"date": "September 5, 2020 at 03:36PM",
"description": "Maharashtra, Andhra Pradesh, Karnataka, Tamil Nadu and Uttar Pradesh are the five states which reported the highest number of cases in the last 24 hours. These…",
"image": "",
"question": "India 3rd Country To Cross 40 Lakh Covid Cases, Sees Record 1-Day Surge - NDTV"
},
{
"answer": "https://www.hindustantimes.com/delhi-news/covid-19-situation-under-control-spike-in-delhi-cases-because-of-increased-testing-says-cm/story-zNqBGeWrhpaOODypvF4iDN.html",
"date": "September 5, 2020 at 04:38PM",
"description": "Sign In Sign Out e-paper Today in New Delhi , India Sep 05, 2020-Saturday - °C Humidity - Wind - Select Country IND USA Select city Metro cities - , ,, Other…",
"image": "",
"question": "‘Situation under control in Delhi, spike in Covid-19 cases due to increased testing’ CM - Hindustan Times"
},
{
"answer": "https://www.aljazeera.com/news/2020/09/india-coronavirus-cases-top-million-200905060437264.html",
"date": "September 5, 2020 at 04:38PM",
"description": "India became the third country to cross four million coronavirus cases on Saturday, also setting a new global record for a daily surge in infections and closing…",
"image": "",
"question": "Worst is yet to come' India coronavirus cases top four million - Al Jazeera English"
},
{
"answer": "https://www.firstpost.com/health/coronavirus-vaccine-tracker-news-india-live-updates-unlock-4-new-rules-guidelines-latest-news-covid19-bus-service-flight-train-status-maharashtra-tamil-nadu-chennai-8785751.html",
"date": "September 5, 2020 at 05:37PM",
"description": "",
"image": "",
"question": "Coronavirus LIVE Updates Railway announces 80 more special trains from 12 Sep; bookings to open on 10 Sep - Firstpost"
},
{
"answer": "https://www.livemint.com/news/india/india-to-make-covid-19-vaccine-available-to-friendly-neighbours-11599264294121.html",
"date": "September 5, 2020 at 05:37PM",
"description": "Topics Coronavirus Vaccine Indian pharmaceutical companies will be among the largest producers of a coronavirus vaccine once it is available and will ensure…",
"image": "https://images.livemint.com/img/2020/09/05/600x338/d705017e18fa4c34a91b3e5b31295d81-582e421bc6af4058a868bf60ade261bd-1_1599264616895_1599264636732.jpg",
"question": "India to make covid-19 vaccine available to friendly neighbours - Mint"
},
{
"answer": "https://timesofindia.indiatimes.com/world/pakistan/explained-mysterious-decline-in-pakistans-covid-19-cases/articleshow/77913017.cms",
"date": "September 5, 2020 at 06:37PM",
"description": "NEW DELHI: From a peak of over 6,000 daily Covid-19 cases in mid-June to just 300-odd daily fresh cases in September, Pakistan has witnessed a dramatic decline…",
"image": "https://static.toiimg.com/thumb/msid-77932688,width-1070,height-580,imgsize-372430,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"question": "Explained 'Mysterious' decline in Pakistan's Covid-19 cases - Times of India"
},
{
"answer": "https://timesofindia.indiatimes.com/sports/cricket/ipl/top-stories/ipl-13-mumbai-indians-introduce-nba-style-smart-ring-to-fight-covid-19/articleshow/77945713.cms",
"date": "September 5, 2020 at 07:37PM",
"description": "NEW DELHI: Defending champions Mumbai Indians have taken their Covid-19 precautionary protocol to the next level with the introduction of a special ' smart ring…",
"image": "",
"question": "IPL 13 Mumbai Indians introduce NBA-style 'smart ring' to fight Covid-19 - Times of India"
},
{
"answer": "https://www.france24.com/en/20200905-india-covid-19-cases-top-4-million-as-virus-hits-rural-hinterland",
"date": "September 5, 2020 at 07:37PM",
"description": "Advertising Initially, the virus ravaged India ’s sprawling and densely populated cities. It has since stretched to almost every state, spreading through…",
"image": "https://s.france24.com/media/display/e85e4f50-ef74-11ea-b75a-005056bff430/w:1280/p:16x9/2020-09-04T084729Z_1170400523_RC2KRI9QX1S8_RTRMADP_3_HEALTH-CORONAVIRUS-INDIA-CASES.JPG",
"question": "India's Covid-19 cases top 4 million as virus hits rural hinterland - FRANCE 24 English"
},
{
"answer": "https://www.cnbc.com/2020/09/05/india-crosses-4-million-coronavirus-cases-with-record-surge.html",
"date": "September 5, 2020 at 08:36PM",
"description": "Pedestrians wearing protective face masks in front of a mural in New Delhi, India on July 21, 2020. Yawar Nazir | Getty Images India's total coronavirus cases…",
"image": "",
"question": "India crosses 4 million coronavirus cases with record surge - CNBC"
},
{
"answer": "https://www.india.com/news/india/international-flights-on-september-4-delhi-to-vancouver-dubai-to-ahmedabad-list-of-repatriation-flights-leaving-for-and-from-india-today-full-schedule-4130756/",
"date": "September 5, 2020 at 08:36PM",
"description": "Representational Pic International Flights Today: Under ‘Vande Bharat’ mission phase 6, national carrier Air India will continue operating special international…",
"image": "",
"question": "International Flights on September 4 Delhi to Vancouver, Dubai to Ahmedabad | List of Repatriation Flights L - India.com"
},
{
"answer": "https://www.business-standard.com/article/current-affairs/coronavirus-live-updates-india-total-cases-global-death-toll-coronavirus-vaccine-update-maharashtra-delhi-tamil-nadu-andhra-up-latest-news-120090400098_1.html",
"date": "September 5, 2020 at 08:36PM",
"description": "Coronavirus latest news: India's Covid total is now at 3,933,124. Maharashtra, Andhra, Karnataka, Delhi and Tamil Nadu account for 70% of total deaths in India.…",
"image": "",
"question": "LIVE Select intl passengers can avail Covid-19 tests on arrival at airport - Business Standard"
},
{
"answer": "https://www.greatandhra.com/politics/telangana-news/centre-tells-ap-to-break-chain-of-covid-19-transmission-107300",
"date": "September 5, 2020 at 08:36PM",
"description": "The Health Ministry on Saturday exhorted Maharashtra, Andhra Pradesh and Karnataka to focus on aggressive measures to break the chain of transmission and to…",
"image": "#REF!",
"question": "Centre tells AP to break chain of Covid-19 transmission.. - Greatandhra.com"
},
{
"answer": "https://www.livemint.com/news/india/keep-covid-19-mortality-below-1-centre-tells-three-states-11599305746053.html",
"date": "September 5, 2020 at 08:36PM",
"description": "\"The Health Ministry has been regularly engaging with States and UTs that have been exhibiting either a sudden surge in COVID cases, high caseload or reporting…",
"image": "https://images.livemint.com/img/2020/09/05/600x338/2020-09-05T110244Z_968657144_RC2BSI9PCP0Q_RTRMADP_3_HEALTH-CORONAVIRUS-INDIA-CASES_1599306647574_1599306706993.JPG",
"question": "Keep Covid-19 mortality below 1% Centre tells three states - Mint"
},
{
"answer": "https://www.livemint.com/news/india/centre-working-with-states-on-a-one-product-one-district-programme-goyal-11599302344213.html",
"date": "September 5, 2020 at 09:36PM",
"description": "Ministry of Commerce & Industry is working with states on a \"One Product One District\" programme, where every district in the country will be focussing its…",
"image": "https://images.livemint.com/img/2020/09/05/600x338/goyal_1599302779860_1599302787985.jpg",
"question": "Centre working with states on 'One Product, One District' programme Goyal - Mint"
},
{
"answer": "https://www.moneycontrol.com/news/india/international-flights-on-september-5-here-are-the-flights-operated-by-air-india-under-vande-bharat-mission-5800861.html",
"date": "September 5, 2020 at 09:36PM",
"description": "The Centre started the ‘Vande Bharat Mission’ on May 6 to help those stranded due to the novel coronavirus pandemic reach their destinations via international…",
"image": "",
"question": "International flights on September 5 Here are the flights operated by Air India under Vande Bharat... - Moneycontrol"
},
{
"answer": "https://time.com/5886360/india-coronavirus-caseload-tops-4-million/",
"date": "September 5, 2020 at 10:14PM",
"description": "NEW DELHI — India’s coronavirus caseload surpassed 4 million on Saturday, deepening misery in the country’s vast hinterlands, where surges have crippled the…",
"image": "",
"question": "India Coronavirus Caseload Tops 4 Million | Time - TIME"
},
{
"answer": "https://www.livemint.com/news/india/railways-to-run-40-pairs-of-new-special-trains-from-12-sept-reservation-begins-10-sept-11599303145976.html",
"date": "September 5, 2020 at 10:36PM",
"description": "These 80 new trains will be in addition to 230 special trains already in operation, said Yadav who was recently appointed as Indian Railways' first CEO. The…",
"image": "",
"question": "80 new passenger trains will start 12 Sept; reservation begins 10 Sept Full list - Mint"
},
{
"answer": "https://www.aninews.in/news/national/general-news/2973-new-covid-19-cases-in-delhi20200905222933/",
"date": "September 5, 2020 at 10:36PM",
"description": "",
"image": "",
"question": "2,973 new COVID-19 cases in Delhi - ANI News"
},
{
"answer": "https://www.nytimes.com/2020/09/05/world/asia/india-economy-coronavirus.html",
"date": "September 6, 2020 at 12:36AM",
"description": "A fabric manufacturing business in Surat, India, has been shut since the coronavirus lockdown in the spring. Credit... Saumya Khandelwal The country’s ambitions…",
"image": "",
"question": "Coronavirus Shatters India's Economy - The New York Times"
},
{
"answer": "https://economictimes.indiatimes.com/news/politics-and-nation/coronavirus-crisis-is-shattering-indias-big-and-bright-dreams/articleshow/77952488.cms",
"date": "September 6, 2020 at 12:36AM",
"description": "",
"image": "",
"question": "Coronavirus crisis is shattering India's big and bright dreams - Economic Times"
},
{
"answer": "https://www.ndtv.com/india-news/uddhav-thackeray-on-sharper-rise-in-covid-cases-in-maharashtra-next-3-months-challenging-2291008",
"date": "September 6, 2020 at 01:36AM",
"description": "Uddhav Thackeray was speaking at a review meeting on the COVID-19 situation. Mumbai: The spike in COVID-19 cases in Mumbai in the last two days shows the state…",
"image": "https://c.ndtvimg.com/2020-09/ir1p0io_uddhav-thackeray-650_625x300_05_September_20.jpg",
"question": "Next 3 Months Challenging Uddhav Thackeray On Sharper Rise In Covid Cases - NDTV"
},
{
"answer": "https://www.moneycontrol.com/news/india/coronavirus-india-centre-urges-maharashtra-andhra-pradesh-karnataka-to-keep-covid-19-mortality-below-1-5802341.html",
"date": "September 6, 2020 at 01:36AM",
"description": "The central government on September 5 exhorted three states- Maharashtra, Andhra Pradesh and Karnataka to focus on breaking the chain of COVID-19 transmission…",
"image": "",
"question": "Coronavirus India Centre urges 3 states with most COVID cases to check transmission, keep mortality below... - Moneycontrol"
},
{
"answer": "https://www.ndtv.com/india-news/pre-flight-alcohol-test-for-pilots-crew-to-be-resumed-aviation-watchdog-2290985",
"date": "September 6, 2020 at 01:36AM",
"description": "The aviation regulator had on March 29 this year suspended breath analyser (BA) test (File) New Delhi: The Directorate General of Civil Aviation (DGCA) on…",
"image": "https://c.ndtvimg.com/2020-03/7p3ui1c_aeroplane-generic-afp_625x300_27_March_20.jpg",
"question": "Pre-Flight Alcohol Test For Pilots, Cabin Crew To Be Resumed Aviation Watchdog - NDTV"
},
{
"answer": "https://www.indiatvnews.com/news/good-news/covid-19-vaccine-covaxin-phase-2-trials-bharat-biotech-icmr-bbv152-coronavirus-vaccine-sars-cov-2-647353",
"date": "September 6, 2020 at 01:36AM",
"description": "",
"image": "",
"question": "COVID-19 Vaccine Bharat Biotech gets Centre's nod to start phase 2 trials of Covaxin - India TV News"
},
{
"answer": "https://indianexpress.com/article/cities/delhi/health-system-busy-dealing-with-covid-govt-launches-campaign-to-check-dengue-6584777/",
"date": "September 6, 2020 at 03:37AM",
"description": "By: Express News Service | New Delhi | Updated: September 6, 2020 2:33:09 am The fight against vector-borne diseases, however, primarily hinges on the…",
"image": "https://images.indianexpress.com/2019/11/fogging-1200.jpg",
"question": "Health system busy dealing with Covid, Delhi govt launches campaign to check dengue - The Indian Express"
},
{
"answer": "https://www.hindustantimes.com/kolkata/west-bengal-reports-3-042-new-covid-19-cases-58-deaths/story-OZmbNglw6qlI24yAw6bJHJ.html",
"date": "September 6, 2020 at 04:36AM",
"description": "Sign In Sign Out e-paper Today in New Delhi , India Sep 06, 2020-Sunday - °C Humidity - Wind - Select Country IND USA Select city Metro cities - , ,, Other…",
"image": "https://www.hindustantimes.com/rf/image_size_960x540/HT/p2/2020/09/06/Pictures/_6291b9ac-efbf-11ea-a6a9-ef65eb2fa0ec.jpg",
"question": "West Bengal reports 3,042 new Covid-19 cases, 58 deaths - Hindustan Times"
},
{
"answer": "https://timesofindia.indiatimes.com/india/indias-covid-cases-worlds-2nd-highest/articleshow/77956328.cms",
"date": "September 6, 2020 at 04:36AM",
"description": "India’s Covid cases world’s 2nd highest News India News India’s Covid cases world’s 2nd highest India’s Covid cases world’s 2nd highest Facebook Twitter…",
"image": "https://static.toiimg.com/thumb/msid-77956327,width-1070,height-580,imgsize-138812,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"question": "India’s Covid cases world’s 2nd highest - Times of India"
},
{
"answer": "https://timesofindia.indiatimes.com/life-style/health-fitness/health-news/coronavirus-vaccine-would-a-covid-19-vaccine-be-made-compulsory-for-all/photostory/77928380.cms",
"date": "September 5, 2020 at 05:37PM",
"description": "News » Lifestyle » Health & Fitness Tips » Health News » Coronavirus vaccine: Would a COVID-19 vaccine be made compulsory for all? Now Reading: Coronavirus…",
"image": "",
"question": "Coronavirus vaccine Would a COVID-19 vaccine be made compulsory for all - Times of India"
},
{
"answer": "https://www.indiatoday.in/india/story/coronavirus-live-updates-september-5-world-india-covid-vaccine-who-china-us-1718810-2020-09-05",
"date": "September 6, 2020 at 06:36AM",
"description": "",
"image": "https://akm-img-a-in.tosshub.com/indiatoday/images/breaking_news/202009/PTI03-09-2020_000157A-647x363.jpeg?aNwkOAykM6cYvZAh8H6xUvIt5S8LMrEs",
"question": "Coronavirus Updates Haryana reports 2,289 new cases, 22 deaths; tally reaches 74,272 - India Today"
},
{
"answer": "https://indianexpress.com/article/explained/gdp-contraction-23-9-the-economics-behind-the-math-6578046/",
"date": "September 5, 2020 at 10:37AM",
"description": "Written by Udit Misra , Nushaiba Iqbal | New Delhi | Updated: September 3, 2020 10:31:10 am Migrant labourers return to New Delhi from parts of Uttar Pradesh on…",
"image": "https://images.indianexpress.com/2014/03/Labour-New-Delhi.jpg",
"question": "India GDP growth contracts 23.9% What is the economics behind the math - The Indian Express"
},
{
"answer": "https://www.ndtv.com/business/adani-takes-control-of-mumbai-airport-no-mention-of-covid-19-impact-2289410",
"date": "September 6, 2020 at 07:36AM",
"description": "Adani Airports has bought majority stakes in Mumbai International Airport Adani Enterprises says it is well placed to build the infrastructure needed to support…",
"image": "https://c.ndtvimg.com/2019-07/846n6bbg_gautam-adani-bloomberg-650_625x300_11_July_19.jpg",
"question": "Adani Takes Control Of Mumbai Airport, No Mention Of COVID-19 Impact - NDTV Profit"
},
{
"answer": "https://theprint.in/opinion/indian-economy-is-heading-for-a-k-shaped-recovery-and-it-wont-be-a-pretty-sight/496170/",
"date": "September 6, 2020 at 07:36AM",
"description": "Illustration by Ramandeep Kaur | ThePrint Text Size: A midst the flood of commentary that followed the finding that the world’s fastest-growing large economy…",
"image": "#REF!",
"question": "Indian economy is heading for a K-shaped recovery and it won’t be a pretty sight - ThePrint"
},
{
"answer": "https://indianexpress.com/article/cities/pune/pune-coronavrius-update-ncp-sharad-pawar-6584729/",
"date": "September 6, 2020 at 09:37AM",
"description": "Written by Ajay Jadhav , Manoj Dattatrye More | Pune | Updated: September 6, 2020 7:08:54 am Sharad Pawar leaves after a review meeting on Covid in Pune on…",
"image": "",
"question": "With NCP feeling heat for Covid surge in Pune, Pawar steps in - The Indian Express"
},
{
"answer": "https://www.indiatoday.in/science/story/vaccine-developer-moderna-could-slow-covid-19-trials-to-add-at-risk-minorities-1718935-2020-09-05",
"date": "September 6, 2020 at 09:37AM",
"description": "Moderna Inc MRNA.O has been asking sites that are conducting clinical trials of its experimental coronavirus vaccine to focus on enrolling at-risk minorities,…",
"image": "",
"question": "Vaccine developer Moderna could slow COVID-19 trials to add at-risk minorities - India Today"
},
{
"answer": "https://indianexpress.com/article/india/bharat-biotech-to-move-to-phase-ii-trials-for-covaxin-6584730/",
"date": "September 6, 2020 at 09:37AM",
"description": "By: ENS Economic Bureau | New Delhi | Updated: September 6, 2020 7:50:16 am Covaxin is an “inactivated” vaccine — it works by injecting doses of the virus that…",
"image": "https://images.indianexpress.com/2020/07/covaxin-1200-1.jpg",
"question": "Bharat Biotech to move to phase II trials for Covaxin - The Indian Express"
},
{
"answer": "https://www.firstpost.com/health/coronavirus-vaccine-tracker-news-india-updates-unlock-4-new-rules-guidelines-latest-news-covid19-bus-service-flight-train-status-maharashtra-tamil-nadu-chennai-3-8785751.html",
"date": "September 6, 2020 at 09:37AM",
"description": "live Coronavirus Updates: Next three months will be challenging, says Uddhav Thackeray as Mumbai sees sharp rise in cases Coronavirus Updates: Mumbai on…",
"image": "",
"question": "Coronavirus Updates Next three months will be chall..ys Uddhav Thackeray as Mumbai sees sharp rise in cases - Firstpost"
},
{
"answer": "https://indianexpress.com/article/explained/september-6-coronavirus-vaccine-latest-covid-19-updates-6584896/",
"date": "September 6, 2020 at 09:37AM",
"description": "By: Explained Desk | Pune | Updated: September 6, 2020 7:45:04 am A visitor wearing a face mask takes a photo of a model of a coronavirus and boxes for COVID-19…",
"image": "https://images.indianexpress.com/2020/09/AP20249294505380.jpg",
"question": "Covid-19 vaccine tracker, Sept 6 Pushback from leading developers, to pledge not to bring out their vaccines prematurely - The Indian Express"
},
{
"answer": "https://www.ndtv.com/india-news/coronavirus-india-live-news-updates-india-third-country-to-cross-40-lakh-covid-19-cases-2291083",
"date": "September 6, 2020 at 09:37AM",
"description": "About 31 lakh patients have recovered from the infection in the country (File) New Delhi: A record single-day spike of 86,432 cases has pushed India's…",
"image": "https://c.ndtvimg.com/2020-09/l1ri7ub8_coronavirus-india-september-2020-pti-650_650x400_01_September_20.jpg",
"question": "Coronavirus Live Updates India Third Country To Cross 40 Lakh COVID-19 Cases - NDTV"
},
{
"answer": "https://www.news18.com/news/india/coronavirus-live-updates-covid19-vaccine-symptoms-india-cases-worldometer-us-prevention-how-long-does-virus-last-2852867.html",
"date": "September 6, 2020 at 10:37AM",
"description": "Coronavirus LIVE Updates: Democratic US vice presidential candidate Kamala Harris said she would not take President Donald Trump's word alone on any potential…",
"image": "",
"question": "Coronavirus LIVE Updates India Registers Biggest One-day Spike of Over 90,000 Cases, Inches Closer to No.2 Spot Among World's Worst-hit Nations - News18"
},
{
"answer": "https://www.freepressjournal.in/mumbai/coronavirus-in-mumbai-ward-wise-breakdown-of-covid-19-cases-as-issued-by-bmc-on-september-5",
"date": "September 6, 2020 at 10:37AM",
"description": "As India's COVID-19 case tally continues to hit new highs, Maharashtra on Saturday recorded its highest single day spike. The western state reported 20,801 new…",
"image": "https://gumlet.assettype.com/freepressjournal%2F2020-08%2Fcd607161-c2c8-4ee7-a339-78f69abbe115%2FCoronavirus_Testing_Labs_PTI.jpg?w=1200&auto=format%2Ccompress&ogImage=true",
"question": "Coronavirus in Mumbai Ward-wise breakdown of COVID-19 cases as issued by BMC on September 5 - Free Press Journal"
},
{
"answer": "https://www.indiatoday.in/india/story/90632-new-coronavirus-cases-highest-single-day-spike-india-total-over-41-lakh-1719059-2020-09-06",
"date": "September 6, 2020 at 10:37AM",
"description": "India has reported a record single-day jump of 90,632 coronavirus infections in the past 24 hours, taking the country's total tally to over 41 lakh, the health…",
"image": "https://akm-img-a-in.tosshub.com/indiatoday/images/story/202009/PTI23-07-2020_000078A-647x363.jpeg?XEpAmuYiryacV3Rl5nMjAh7S__Aw_f_M",
"question": "90,632 new coronavirus cases in highest single-day spike take India's total to over 41 lakh - India Today"
},
{
"answer": "https://www.livemint.com/news/india/for-first-time-maharashtra-sees-over-20-000-new-covid-19-cases-in-a-day-tally-past-8-8-lakh-11599319551187.html",
"date": "September 6, 2020 at 10:37AM",
"description": "This is the fourth consecutive day that Maharashtra has reported record number of cases in a single day. The second-biggest spike was recorded on Friday with…",
"image": "",
"question": "For first time, Maharashtra sees over 20,000 new Covid-19 cases in a day, tally past 8.8 lakh - Mint"
},
{
"answer": "https://www.hindustantimes.com/world-news/50-000-people-taking-part-in-phase-3-trial-of-chinese-covid-19-vaccine/story-yR9hBBfcJSFxacswrQF1HL.html",
"date": "September 6, 2020 at 10:37AM",
"description": "Sign In Sign Out e-paper Today in New Delhi , India Sep 05, 2020-Saturday - °C Humidity - Wind - Select Country IND USA Select city Metro cities - , ,, Other…",
"image": "",
"question": "50,000 people taking part in phase 3 trial of Chinese Covid-19 vaccine - Hindustan Times"
},
{
"answer": "https://www.business-standard.com/article/current-affairs/covid-19-india-is-facing-a-unique-crisis-but-no-signs-of-panic-yet-120090600077_1.html",
"date": "September 6, 2020 at 10:37AM",
"description": "Gujarat's Covid-19 tally reaches 103,006 with 1,311 new cases : Officials Business Standard India might still have managed the economic storm if its Covid-19…",
"image": "",
"question": "Crashing economy, bare cupboard Costs of pandemic are piling up for India - Business Standard"
},
{
"answer": "https://timesofindia.indiatimes.com/india/no-ban-or-curbs-on-filling-up-govt-posts-says-finance-ministry/articleshow/77956459.cms",
"date": "September 6, 2020 at 10:38AM",
"description": "NEW DELHI: The Union ministry of finance clarified on Saturday that there is no restriction or ban on filling up of posts in the government. Normal recruitment…",
"image": "https://static.toiimg.com/thumb/msid-77956460,width-1070,height-580,imgsize-212706,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"question": "No ban or curbs on filling up govt posts, says finance ministry - Times of India"
},
{
"answer": "https://timesofindia.indiatimes.com/city/delhi/capital-sees-highest-spike-in-72-days/articleshow/77955702.cms",
"date": "September 6, 2020 at 10:38AM",
"description": "Covid-19: Delhi sees highest spike in 72 days News City News delhi News Covid-19: Delhi sees highest spike in 72 days Covid-19: Delhi sees highest spike in 72…",
"image": "https://static.toiimg.com/thumb/msid-77956480,width-1070,height-580,imgsize-271878,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"question": "Covid-19 Delhi sees highest spike in 72 days - Times of India"
},
{
"answer": "https://www.ndtv.com/india-news/90-632-coronavirus-cases-in-biggest-one-day-rise-in-india-over-41-lakh-total-cases-so-far-2291125",
"date": "September 6, 2020 at 10:38AM",
"description": "Coronavirus Cases in India: Maharashtra accounts for nearly a quarter of the new daily cases. New Delhi: India reported a record daily jump of 90,632…",
"image": "https://c.ndtvimg.com/2020-09/jhajg6t_coronavirus-generic-september-2020-afp-650_650x400_06_September_20.jpg",
"question": "90,632 Coronavirus Cases In Biggest One-Day Rise In India - NDTV"
},
{
"answer": "https://www.news18.com/news/india/coronavirus-vaccine-tracker-live-white-house-sets-late-october-target-sanofi-glaxosmithkline-start-clinical-trials-2847841.html",
"date": "September 5, 2020 at 04:38PM",
"description": "Coronavirus Vaccine Tracker LIVE Updates: Defence Minister Rajnath Singh, who is in Moscow for the Shanghai Cooperation Organisation (SCO) ministerial,…",
"image": "",
"question": "Coronavirus Vaccine Tracker LIVE Rajnath Singh Says Russia's 'Sputnik V' Will be Effective, Touts Partne... - News18"
},
{
"answer": "https://timesofindia.indiatimes.com/videos/news/covid-19-in-india-over-89000-infections-reported-in-last-24-hours-5-states-account-for-60-of-total-cases/videoshow/77957493.cms",
"date": "September 6, 2020 at 11:37AM",
"description": "News Videos India Covid-19 in India: Over 89000 infections reported in last 24 hours, 5 states account for 60% of total cases 1 hour ago Covid-19 in India: Over…",
"image": "",
"question": "Covid-19 in India Over 89000 infections reported in last 24 hours, 5 states account for 60% of total cases - Times of India"
},
{
"answer": "https://timesofindia.indiatimes.com/videos/city/mumbai/prakash-javadekar-sharad-pawar-review-covid-19-situation-in-maharashtra/videoshow/77948515.cms",
"date": "September 6, 2020 at 11:37AM",
"description": "News Videos City Mumbai Prakash Javadekar, Sharad Pawar review Covid-19 situation in Maharashtra 416 views 18 hours ago Prakash Javadekar, Sharad Pawar review…",
"image": "",
"question": "Prakash Javadekar, Sharad Pawar review Covid-19 situation in Maharashtra - Times of India"
},
{
"answer": "https://indianexpress.com/article/opinion/columns/india-economy-slowdown-act-of-god-p-chidambaram-6584615/",
"date": "September 6, 2020 at 11:37AM",
"description": "Written by P Chidambaram | September 6, 2020 4:00:13 am Union Minister of Finance and Corporate Affairs, Nirmala Sitharaman announced in the fourth edition of…",
"image": "",
"question": "The worst affected economy - The Indian Express"
},
{
"answer": "https://www.newindianexpress.com/cities/delhi/2020/sep/06/two-eateries-near-delhi-sealed-after-staff-report-covid-positive-customers-told-to-get-tested-2193016.html",
"date": "September 6, 2020 at 11:37AM",
"description": "Home Cities Delhi Both eateries are located in Sonipat's Murthal and nearly 50 km away from Delhi, and on regular days a large number of people from the…",
"image": "",
"question": "Two eateries near Delhi sealed after staff report COVID positive, customers told to get tested - The New Indian Express"
},
{
"answer": "https://economictimes.indiatimes.com/news/latest-daily-news-and-updates-september6/liveblog/77956622.cms",
"date": "September 6, 2020 at 11:37AM",
"description": "",
"image": "https://img.etimg.com/thumb/msid-77956622,width-600,resizemode-4,imglength-55483/news/latest-daily-news-and-updates-september6.jpg",
"question": "Latest News Live India adds over 90k new coronavirus cases, tally tops 41 lakh-mark - indiatimes.com"
},
{
"answer": "https://www.livemint.com/news/india/covid-19-update-for-first-time-over-90-000-cases-reported-in-india-in-a-day-11599363306881.html",
"date": "September 6, 2020 at 11:37AM",
"description": "The number of deaths due to the infection has reached 70,626. The country registered a hike of more than 90,000 cases for the first time in a single day as…",
"image": "https://images.livemint.com/img/2020/09/06/600x338/20200905163L_1599365612034_1599365627201.jpg",
"question": "Covid-19 update For first time, over 90,000 cases reported in India in a day - Mint"
},
{
"answer": "https://www.business-standard.com/article/current-affairs/coronavirus-live-india-records-over-90k-cases-in-24-hrs-tally-at-4-1-mn-covid-19-cases-in-delhi-uttar-pradesh-maharashtra-news-120090600058_1.html",
"date": "September 6, 2020 at 12:36PM",
"description": "Coronavirus latest news: Around 50,000 people in a number of countries are participating in phase 3 clinical trials of a coronavirus vaccine developed by the…",
"image": "",
"question": "Coronavirus LIVE Exponential recovery as 70K cases discharged in a day - Business Standard"
},
{
"answer": "https://www.dw.com/en/coronavirus-germany-gives-india-millions-in-aid-thousands-of-testing-kits/a-54828976",
"date": "September 6, 2020 at 12:36PM",
"description": "German Development Minister Gerd Müller on Sunday said Germany is significantly expanding its aid program in India where coronavirus cases are soaring rapidly .…",
"image": "https://www.dw.com/image/54772768_304.jpg",
"question": "Coronavirus Germany gives India millions in aid, thousands of testing kits - DW (English)"
},
{
"answer": "https://fortune.com/2020/09/05/covid-vaccine-india-corona-development-manufacturing/",
"date": "September 6, 2020 at 12:36PM",
"description": "© 2020 Fortune Media IP Limited. All Rights Reserved. Use of this site constitutes acceptance of our Terms of Use and Privacy Policy | CA Notice at Collection…",
"image": "",
"question": "More than manufacturing India’s homegrown COVID vaccines could transform its pharma industry - Fortune"
},
{
"answer": "https://www.thehindu.com/news/national/coronavirus-india-lockdown-september-6-2020-live-updates/article32534295.ece",
"date": "September 6, 2020 at 12:37PM",
"description": "India overtook Brazil to become the country with the second highest number of COVID-19 cases in the world. India overtook Brazil to become the country with the…",
"image": "https://www.thehindu.com/news/cities/chennai/ab13g2/article32534764.ece/ALTERNATES/LANDSCAPE_615/Kasimedu-fish-market-chennai-covid",
"question": "Coronavirus India lockdown Day 165 updates | Women participation in equity market grows during the pandemic - The Hindu"
},
{
"answer": "https://www.hindustantimes.com/india-news/over-90-000-covid-19-cases-recorded-in-india-in-single-day/story-0wqy4KR37yIcKusc6tM1ZJ.html",
"date": "September 6, 2020 at 12:37PM",
"description": "Sign In Sign Out e-paper Today in New Delhi , India Sep 06, 2020-Sunday - °C Humidity - Wind - Select Country IND USA Select city Metro cities - , ,, Other…",
"image": "https://www.hindustantimes.com/rf/image_size_960x540/HT/p2/2020/09/06/Pictures/virus-outbreak-india_758a3bac-f004-11ea-a6a9-ef65eb2fa0ec.jpg",
"question": "Over 90,000 Covid-19 cases recorded in India in single day - Hindustan Times"
},
{
"answer": "https://www.thehindu.com/news/national/coronavirus-india-records-over-90000-cases-in-a-day/article32534476.ece",
"date": "September 6, 2020 at 01:36PM",
"description": "Case tally crosses 41 lakh; 1,065 deaths registered in the span of 24 hours. Case tally crosses 41 lakh; 1,065 deaths registered in the span of 24 hours.…",
"image": "https://www.thehindu.com/news/national/9yw28w/article32534475.ece/ALTERNATES/LANDSCAPE_615/06THPTICOVID19INDIA",
"question": "Coronavirus | India records over 90,000 cases in a day - thehindu.com"
},
{
"answer": "https://www.livemint.com/news/india/delhi-airport-covid-19-testing-rules-for-arriving-international-passengers-11599279378813.html",
"date": "September 6, 2020 at 01:36PM",
"description": "Topics Delhi airport Delhi International Airport Limited (DIAL) has set up a COVID-19 testing facility at the multi-level car parking area of its Terminal 3 for…",
"image": "",
"question": "Delhi Airport Covid-19 testing rules for arriving international passengers - Mint"
},
{
"answer": "https://www.indiatoday.in/india/story/coronavirus-live-updates-september-6-world-india-covid-vaccine-who-china-us-1719031-2020-09-06",
"date": "September 6, 2020 at 02:36PM",
"description": "Posted by Ashni Dhaor Bollywood actor Arjun Kapoor tests positive for coronavirus Bollywood actor Arjun Kapoor took to social media to reveal that he has tested…",
"image": "https://akm-img-a-in.tosshub.com/indiatoday/images/breaking_news/202009/arjunmalaika-647x363.jpeg?ueBG5WxUXmEWe4MCqCH5H9wxQkr34h6J",
"question": "Coronavirus LIVE Updates Bollywood actor Arjun Kapoor tests positive - India Today"
},
{
"answer": "https://www.firstpost.com/health/coronavirus-vaccine-tracker-news-india-live-updates-unlock-4-new-rules-guidelines-latest-news-covid19-bus-service-flight-train-status-maharashtra-tamil-nadu-chennai-8788171.html",
"date": "September 6, 2020 at 02:36PM",
"description": "live Coronavirus LIVE Updates: Centre deploys teams in Punjab, Chandigarh for 10 days to 'help manage' COVID-19 situation Coronavirus LIVE Updates: The Union…",
"image": "",
"question": "Coronavirus LIVE Updates Centre deploys teams in Pu..andigarh for 10 days to help manage COVID-19 situation - Firstpost"
},
{
"answer": "https://www.news18.com/news/india/covid-19-patient-raped-by-ambulance-driver-enroute-to-hospital-in-keralas-pathanamthitta-2853239.html",
"date": "September 6, 2020 at 02:36PM",
"description": "New Delhi : A coronavirus patient was allegedly raped by an ambulance driver while being taken to hospital in Kerala’s Pathanamthitta district on Saturday.…",
"image": "",
"question": "Covid-19 Patient Raped by Ambulance Driver Enroute to Hospital in Kerala's Pathanamthitta - News18"
},
{
"answer": "https://www.livemint.com/market/commodities/gold-in-india-sold-at-a-discount-even-if-prices-fall-rs-5-000-from-highs-11599363081229.html",
"date": "September 6, 2020 at 03:37PM",
"description": "Even though gold prices in India have fallen about 10% from their last month's highs, physical retail demand remained less than usual, forcing dealers to offer…",
"image": "",
"question": "Gold in India sold at a discount even if prices fall ₹5,000 from highs - Mint"
},
{
"answer": "https://www.thehindu.com/news/national/coronavirus-india-records-over-4-million-covid-19-cases/article32526048.ece",
"date": "September 6, 2020 at 07:36AM",
"description": "India’s COVID-19 tally crossed the 4 million mark on September 4, according to data from the State governments. As of 9.30 p.m. IST on September 4, the total…",
"image": "https://www.thehindu.com/news/national/77tojk/article32526047.ece/ALTERNATES/LANDSCAPE_615/HEALTH-CORONAVIRUSINDIA-CASES",
"question": "Coronavirus | India’s COVID-19 cases cross 4 million - thehindu.com"
},
{
"answer": "https://indianexpress.com/article/entertainment/bollywood/arjun-kapoor-coronavirus-positive-6585293/",
"date": "September 6, 2020 at 04:37PM",
"description": "By: Entertainment Desk | New Delhi | September 6, 2020 2:24:06 pm Arjun Kapoor said he is under home quarantine. (Photo: Arjun Kapoor/Instagram) Bollywood actor…",
"image": "https://images.indianexpress.com/2020/09/Arjun-Kapoor-1200.jpg",
"question": "Arjun Kapoor tests positive for coronavirus - The Indian Express"
},
{
"answer": "https://www.hindustantimes.com/business-news/small-positive-growth-may-not-be-ruled-out-in-fy21-says-rangarajan/story-ahnt0ZUJ7hT42o0mhZYd8L.html",
"date": "September 6, 2020 at 05:37PM",
"description": "A small positive economic growth in 2020-21 may not be ruled out as sectors like agriculture and essential goods and services were fully operational in the…",
"image": "",
"question": "Small positive growth may not be ruled out in FY21, says ex-RBI governor Rangarajan - Hindustan Times"
},
{
"answer": "https://timesofindia.indiatimes.com/entertainment/hindi/bollywood/news/arjun-kapoor-tests-positive-for-covid-19/articleshow/77960192.cms",
"date": "September 6, 2020 at 05:37PM",
"description": "Now playing Thanks For Rating Reminder Successfully Set! Arjun Kapoor tests positive for Covid-19 Sushant Singh Rajput case: Rhea Chakraborty likely to be…",
"image": "",
"question": "Arjun Kapoor tests positive for Covid-19 - Times of India"
},
{
"answer": "https://www.livemint.com/news/india/covid-19-bengaluru-confirms-first-coronavirus-reinfection-27-year-old-tests-positive-again-in-a-month-11599384545044.html",
"date": "September 6, 2020 at 07:37PM",
"description": "A woman was infected with the coronavirus after recovering from an initial bout in July in what doctors claimed to be the first case showing that re-infection…",
"image": "",
"question": "COVID-19 reinfection Bengaluru woman tests positive for coronavirus again in a month - Mint"
},
{
"answer": "https://timesofindia.indiatimes.com/city/goa/travel-operators-demand-air-bubble-with-3-nations/articleshow/77920476.cms",
"date": "September 6, 2020 at 11:37AM",
"description": "Goa: Travel operators demand air bubble with 3 nations News City News goa News Goa: Travel operators demand air bubble with 3 nations Goa: Travel operators…",
"image": "https://static.toiimg.com/thumb/msid-77925373,width-1070,height-580,imgsize-433179,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"question": "Goa Travel operators demand air bubble with 3 nations - Times of India"
},
{
"answer": "https://timesofindia.indiatimes.com/city/mumbai/icmr-wants-rt-pcr-even-when-antigen-makes-sense/articleshow/77956579.cms",
"date": "September 6, 2020 at 07:37PM",
"description": "Covid-19: ‘ICMR wants RT-PCR even when antigen makes sense’ News City News mumbai News Covid-19: ‘ICMR wants RT-PCR even when antigen makes sense’ Covid-19:…",
"image": "https://static.toiimg.com/thumb/msid-77956578,width-1070,height-580,imgsize-37622,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"question": "Covid-19 ‘ICMR wants RT-PCR even when antigen makes sense’ - Times of India"
},
{
"answer": "https://www.india.com/news/international-flights-on-september-6-15-lakh-people-returned-under-vande-bharat-mission-check-out-full-schedule-for-today-4132933/",
"date": "September 6, 2020 at 07:37PM",
"description": "International Flights: Union Civil Aviation Minister Hardeep Singh Puri said that under the Centre’s ‘Vande Bharat Mission’, more than 15 lakh people have…",
"image": "",
"question": "International Flights on September 6 15 Lakh People Returned Under Vande Bharat Mission; Check Out Full Sche - India.com"
},
{
"answer": "https://economictimes.indiatimes.com/news/economy/policy/view-the-costs-of-indias-covid-crisis-are-too-high-and-it-cant-afford-to-lose-money-right-now/articleshow/77960210.cms",
"date": "September 6, 2020 at 07:37PM",
"description": "",
"image": "",
"question": "View The costs of India’s Covid crisis are too high and it can't afford to lose money right now - Economic Times"
},
{
"answer": "https://timesofindia.indiatimes.com/entertainment/hindi/bollywood/news/malaika-arora-tested-positive-for-covid-19/articleshow/77961352.cms",
"date": "September 6, 2020 at 08:37PM",
"description": "Now playing Thanks For Rating Reminder Successfully Set! After Arjun Kapoor, now Malaika Arora tests positive for COVID-19 Did Kangana Ranaut once ask Adhyayan…",
"image": "",
"question": "After Arjun Kapoor, now Malaika Arora tests positive for COVID-19 - Times of India"
},
{
"answer": "https://www.hindustantimes.com/india-news/centre-proposes-full-refund-in-15-days-on-air-tickets-booked-before-covid-19-lockdown/story-Zi3HicKhDpoQuDCwv5CDBJ.html",
"date": "September 6, 2020 at 08:37PM",
"description": "Sign In Sign Out e-paper Today in New Delhi , India Sep 06, 2020-Sunday - °C Humidity - Wind - Select Country IND USA Select city Metro cities - , ,, Other…",
"image": "",
"question": "Centre proposes full refund in 15 days on air tickets booked before lockdown - Hindustan Times"
},
{
"answer": "https://news.google.com/__i/rss/rd/articles/CBMiK2h0dHBzOi8vd3d3LnlvdXR1YmUuY29tL3dhdGNoP3Y9UlJrM3Btb042TFHSAQA?oc=5",
"date": "September 6, 2020 at 08:37PM",
"description": "",
"image": "https://i.ytimg.com/vi/RRk3pmoN6LQ/maxresdefault.jpg",
"question": "Coronavirus Update With Over 41-Lakh Covid-19 Cases, India Becomes Third Most Affected Country - India Today"
},
{
"answer": "https://www.ndtv.com/india-news/coronavirus-bengaluru-hospital-reports-first-case-of-covid-reinfection-in-city-2291275",
"date": "September 6, 2020 at 08:37PM",
"description": "A 27-year-old woman, who first tested positive in July, is Bengaluru's first case of Covid reinfection. Bengaluru: Bengaluru has reported its first case of…",
"image": "https://c.ndtvimg.com/2020-09/kh820mv_coronavirus-istock_625x300_06_September_20.jpg",
"question": "Bengaluru Hospital Reports First Case Of Covid Reinfection In City - NDTV"
},
{
"answer": "https://www.livemint.com/news/india/flight-tickets-booked-between-25-mar-and-3-may-will-be-fully-refunded-dgca-tells-sc-11599396746790.html",
"date": "September 6, 2020 at 09:36PM",
"description": "Supreme Court on Sunday was informed by Directorate General of Civil Aviation (DGCA) that tickets booked by passengers in domestic and international carriers…",
"image": "",
"question": "Flight tickets booked between 25 Mar and 3 May will be 'fully refunded' DGCA tells SC - Mint"
},
{
"answer": "https://timesofindia.indiatimes.com/india/breaking-news-live-updates-september-6/liveblog/77956986.cms",
"date": "September 6, 2020 at 09:36PM",
"description": "11:37 (IST) Sep 06 'Your safety is our priority. We are now reviewing our policing across the city and will make any necessary changes. You may see a greater…",
"image": "https://static.toiimg.com/thumb/msid-77956986,width-1070,height-580,imgsize-127229,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"question": "Breaking news live updates Int'l flights from Kushinagar airport in two months, says UP CM - Times of India"
},
{
"answer": "https://timesofindia.indiatimes.com/india/coronavirus-live-updates-indias-covid-cases-worlds-second-highest/liveblog/77956485.cms",
"date": "September 6, 2020 at 09:36PM",
"description": "05:01 (IST) Sep 06 Assam's Covid-19 tally climbs to 1,23,922 after detection of 2,698 new cases, 7 fresh fatalities push death toll to 352; active case count…",
"image": "https://static.toiimg.com/thumb/msid-77956485,width-1070,height-580,imgsize-491967,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"question": "Coronavirus live updates Kerala finance minister Thomas Issac tests positive for Covid-19 - Times of India"
},
{
"answer": "https://www.hindustantimes.com/delhi-news/delhi-records-over-3-000-new-covid-19-cases-tally-over-1-91-lakh/story-FKo1fYh2cila5ZogOvcNXJ.html",
"date": "September 6, 2020 at 09:36PM",
"description": "Sign In Sign Out e-paper Today in New Delhi , India Sep 06, 2020-Sunday - °C Humidity - Wind - Select Country IND USA Select city Metro cities - , ,, Other…",
"image": "",
"question": "Delhi records over 3,000 new Covid-19 cases; tally over 1.91 lakh - Hindustan Times"
},
{
"answer": "https://www.ndtv.com/delhi-news/delhi-sees-80-rise-in-home-isolation-cases-of-covid-19-in-last-16-days-2291328",
"date": "September 6, 2020 at 09:37PM",
"description": "The active cases tally on Saturday rose to 19,870 from 18,842 the previous day. New Delhi: There has been a rise of 80 per cent in the number of home isolation…",
"image": "https://c.ndtvimg.com/2020-08/gemdctrk_delhi-coronavirus-afp_625x300_09_August_20.jpg",
"question": "Delhi Sees 80% Rise In Home Isolation Cases Of COVID-19 In Last 16 Days - NDTV"
},
{
"answer": "https://timesofindia.indiatimes.com/city/delhi/covid-cases-up-due-to-more-tests-cm/articleshow/77955667.cms",
"date": "September 6, 2020 at 10:36PM",
"description": "Covid cases up due to more tests: Delhi CM Arvind Kejriwal News City News delhi News Covid cases up due to more tests: Delhi CM Arvind Kejriwal Covid cases up…",
"image": "https://static.toiimg.com/thumb/msid-77956470,width-1070,height-580,imgsize-562605,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"question": "Covid cases up due to more tests Delhi CM Arvind Kejriwal - Times of India"
},
{
"answer": "https://indianexpress.com/article/india/kerala-finance-minister-thomas-isaac-covid-19-positive6585633/",
"date": "September 6, 2020 at 10:36PM",
"description": "By: Express Web Desk | Updated: September 6, 2020 10:13:34 pm Kerala Finance Minister Thomas Isaac. (Express Photo by Gajendra Yadav/File) Kerala Finance…",
"image": "https://images.indianexpress.com/2018/05/idea-exchange-isaac-1200.jpg",
"question": "Kerala Finance Minister Thomas Isaac tests Covid positive, asks staff to self-quarantine - The Indian Express"
},
{
"answer": "https://www.thehindubusinessline.com/news/world/vaccine-distribution-not-likely-to-begin-before-mid-2021-who/article32529207.ece",
"date": "September 6, 2020 at 11:36PM",
"description": "World Hemani Sheth Mumbai |Updated on September 05, 2020 Published on September 05, 2020 × SHARE Widespread distribution of an approved Covid-19 vaccine is not…",
"image": "https://www.thehindubusinessline.com/news/science/5aiq2f/article31487818.ece/ALTERNATES/LANDSCAPE_615/world-health-organisationjpg",
"question": "Vaccine distribution not likely to begin before mid-2021 WHO - BusinessLine"
},
{
"answer": "https://www.livemint.com/news/india/delhi-metro-entry-rules-timings-and-other-travel-guidelines-as-services-resume-from-tomorrow-september-7-11599357003943.html",
"date": "September 7, 2020 at 12:36AM",
"description": "Delhi: Transport Minister Kailash Gahlot visits Rajiv Chowk to inspect preparations made to start Metro services from tomorrow. \"I appeal to passengers to…",
"image": "",
"question": "Delhi Metro Entry rules, timings and other travel guidelines as services resume from tomorrow - Mint"
},
{
"answer": "https://news.abplive.com/health/coronavirus-vaccine-in-india-bharat-biotech-gets-nod-for-conducting-phase-ii-trials-of-covaxin-know-details-here-1332346",
"date": "September 7, 2020 at 01:36AM",
"description": "हिन्दी বাংলা मराठी ਪੰਜਾਬੀ ગુજરાતી ABP Ganga TV Videos Podcasts HOME PHOTOS VIDEOS LATEST NEWS INDIA WORLD ENTERTAINMENT EDUCATION SPORTS MPBSE 10th Result Pin…",