-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsampleout.json
More file actions
1306 lines (1306 loc) · 118 KB
/
sampleout.json
File metadata and controls
1306 lines (1306 loc) · 118 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
{
"status": "ok",
"totalResults": 4111,
"articles": [
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Sean Ingle",
"title": "ECB sets out case against Hoggard and attacks ‘misrepresentations’ of accused",
"description": "<ul><li>Cricket Disciplinary Commission hearing under way in London</li><li>Six Yorkshire players and staff charged by ECB</li></ul>England’s Ashes-winning bowler Matthew Hoggard was accused of racist and discriminatory language as the long-awaited Cricket Di…",
"url": "https://www.theguardian.com/sport/2023/mar/01/ecb-sets-out-case-against-hoggard-and-attacks-misrepresentations-of-accused-cdc-hearing-cricket",
"urlToImage": "https://i.guim.co.uk/img/media/7d4c6338f308acf75aad5b8256ccb757d43fa619/0_59_3500_2102/master/3500.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=69408c4bcf4064af105d1f905493dbd2",
"publishedAt": "2023-03-01T14:46:55Z",
"content": "Englands Ashes-winning bowler Matthew Hoggard was accused of racist and discriminatory language as the long-awaited Cricket Disciplinary Commission hearing into Azeem Rafiqs allegations of racism in … [+3339 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Taha Hashim (now) and James Wallace",
"title": "Bangladesh v England: second men’s cricket one-day international – live",
"description": "<ul><li>Over-by-over updates from Mirpur, 6am (GMT) start</li><li>Get in touch: email or tweet Taha with your thoughts</li></ul>Bangladesh XI: Tamim Iqbal (c), Litton Das, Najmul Hossain Shanto, Mushfiqur Rahim (wk), Shakib Al Hasan, Mahmudullah, Afif Hossain…",
"url": "https://www.theguardian.com/sport/live/2023/mar/03/bangladesh-england-second-cricket-one-day-international-odi-live",
"urlToImage": "https://i.guim.co.uk/img/media/efa3d7035eead1d9f075fa2fecc38fbd3e9e427c/0_222_4292_2576/master/4292.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctbGl2ZS5wbmc&enable=upscale&s=018ec0b9f2c3f6b2b1bb6997c44fbfd8",
"publishedAt": "2023-03-03T05:47:26Z",
"content": "Bangladesh XI: \r\nTamim Iqbal (c), Litton Das, Najmul Hossain Shanto, Mushfiqur Rahim (wk), Shakib Al Hasan, Mahmudullah, Afif Hossain, Mehidy Hassan Miraz, Taskin Ahmed, Mustafizur Rahman, Taijul Isl… [+990 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Sean Ingle",
"title": "Yorkshire cricket racism hearing: Michael Vaughan to give evidence – live",
"description": "Day three of Cricket Discipline Commission to feature former England captain giving evidence <ul><li>Rafiq denies ‘blackmailing’ Rashid to support racism claims</li></ul>Stoner is criticising the process of the ECB’s enquiry and its scope. He reads out commen…",
"url": "https://www.theguardian.com/sport/live/2023/mar/03/yorkshire-cricket-racism-hearing-michael-vaughan-to-give-evidence-live-azeem-rafiq",
"urlToImage": "https://i.guim.co.uk/img/media/99049d1f5a97ef408d20f0d05f49e5cfb2e5cfb4/0_0_3500_2101/master/3500.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctbGl2ZS5wbmc&enable=upscale&s=76eb1d26310e0392aa176ca27aade66a",
"publishedAt": "2023-03-03T10:34:23Z",
"content": "Stoner is criticising the process of the ECBs enquiry and its scope. He reads out comments from Lord Patel, who ran Yorkshire after the Azeem Rafiq allegations emerged, in an interview given to the E… [+2805 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Tanya Aldred (now) and Daniel Harris (later)",
"title": "Bangladesh v England: first men’s cricket one-day international – live",
"description": "<ul><li>Updates from the ODI series-opening match in Mirpur</li><li>Sign up to The Spin | And you can mail Tanya or tweet her</li></ul>Our man in Bangladesh, Simon Burnton, with his preview of the series:Sleeping through the Test: Continue reading...",
"url": "https://www.theguardian.com/sport/live/2023/mar/01/bangladesh-v-england-first-mens-cricket-one-day-international-live",
"urlToImage": "https://i.guim.co.uk/img/media/96cd20c432532c81d0430f653932500c8f603d0c/0_291_4391_2636/master/4391.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctbGl2ZS5wbmc&enable=upscale&s=f58f722046aee01e4709425244a31c95",
"publishedAt": "2023-03-01T05:00:24Z",
"content": "Bangladesh XI\r\nBangladesh: Tamim Iqbal (c), Litton Das, Najmul Hossain Shanto, Shakib Al Hasan, Mushfiqur Rahim (wk), Mahmudullah, Afif Hossain, Mehidy Hasan Miraz, Taskin Ahmed, Taijul Islam, Mustaf… [+2077 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Simon Burnton",
"title": "The Yorkshire racism scandal: how did we get here and what’s next?",
"description": "With the CDC hearings taking place next month these are the key questions in a complicated and high-profile caseLast June, after a “thorough and complex investigation”, the England and Wales Cricket Board charged seven individuals, then unnamed, and Yorkshire…",
"url": "https://www.theguardian.com/sport/2023/feb/07/yorkshire-racism-scandal-cricket-hearings-what-next",
"urlToImage": "https://i.guim.co.uk/img/media/84df5abcd5d8e6d9ee22ca4b0eb202ef6c87448f/0_138_3500_2100/master/3500.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=4581f60f6f67d101be9bd64ba47b16ee",
"publishedAt": "2023-02-07T22:25:14Z",
"content": "Whats going on?\r\nLast June, after a thorough and complex investigation, the England and Wales Cricket Board charged seven individuals, then unnamed, and Yorkshire Cricket Club with bringing the game … [+4731 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Sean Ingle",
"title": "Rafiq denies ‘blackmailing’ Rashid to support his Vaughan racism claims",
"description": "<ul><li>Idea he pressured Rashid is ‘categorically untrue’ says Rafiq</li><li>Rashid backs up Rafiq denial at Cricket Discipline Commission</li></ul>Azeem Rafiq has told a Cricket Discipline Commission hearing that claims he blackmailed the England player Adi…",
"url": "https://www.theguardian.com/sport/2023/mar/02/rafiq-denies-blackmailing-rashid-to-support-his-vaughan-racism-claims",
"urlToImage": "https://i.guim.co.uk/img/media/705b9a84d44054572009f46861b2431621d70b6a/0_79_3500_2101/master/3500.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=e51a56676264ee0b37f944d05fd4afc5",
"publishedAt": "2023-03-02T20:31:02Z",
"content": "Azeem Rafiq has told a Cricket Discipline Commission hearing that claims he blackmailed the England player Adil Rashid to support his case against Michael Vaughan are categorically untrue.\r\nOn the se… [+4718 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Angus Fontaine (now) and Jonathan Horn (later)",
"title": "India v Australia: first Test, day three – live",
"description": "<ul><li>Updates from the third day of play at VCA Stadium</li><li>The cricket starts at 9.30am in Nagpur/3pm AEDT</li><li>Any thoughts? Feel free to get in touch on email</li></ul>For those who came in late, here’s Geoff Lemon’s wrap of Day 2…Greetings cricke…",
"url": "https://www.theguardian.com/sport/live/2023/feb/11/india-vs-australia-live-updates-cricket-score-first-test-day-three-ind-v-aus-scorecard-international-latest-scores-nagpur-vca-stadium",
"urlToImage": "https://i.guim.co.uk/img/media/76be57c311f800d4e93ff85e0dfc9d9a14abc821/0_354_5316_3190/master/5316.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctbGl2ZS5wbmc&enable=upscale&s=b060e6f55ff77d22e6c63e296bcecb74",
"publishedAt": "2023-02-11T03:37:06Z",
"content": "115th over: India 324-7 (Jadeja 67, Patel 54) Pat Cummins delivers an old fashioned sandshoe crusher to start us off but the second is wider and Axar works a single off his hip. Jadeja adds another t… [+2563 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Tanya Aldred",
"title": "The Spin | ‘Well bowled Harold!’ Ninety years on, England’s Bodyline tactics retain heat",
"description": "Nine decades ago this week, Australia’s under-fire cricket board rowed back on complaints against the tourists’ brutal bowlingIn this era of cricketing glut, some matches pound through the sausage machine so effectively, they might never have happened at all.…",
"url": "https://www.theguardian.com/sport/2023/feb/08/90-years-on-england-bodyline-tactics-retain-heat-australia-ashes-cricket",
"urlToImage": "https://i.guim.co.uk/img/media/16c6751b8f6424c568aee7134cb7ba8c0d4b3c06/0_107_3592_2156/master/3592.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=29344c2d73f01dfcbad90b2de724c9ea",
"publishedAt": "2023-02-08T13:22:41Z",
"content": "In this era of cricketing glut, some matches pound through the sausage machine so effectively, they might never have happened at all. But one series continues to hold fast in the imagination: England… [+5926 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Andy Bull",
"title": "How mentoring can make a difference in rapidly changing world of women’s cricket | Andy Bull",
"description": "Pioneering former England player Isa Guha has launched an initiative aiming to ensure women and girls get the support they needChanging rooms can be lonely places. When Isa Guha started playing cricket she was the only girl in an all-boys team and when she wa…",
"url": "https://www.theguardian.com/sport/2023/mar/02/how-mentoring-can-make-a-difference-in-rapidly-changing-world-of-womens-cricket",
"urlToImage": "https://i.guim.co.uk/img/media/9dedc593cceac275019702f9d04885ece64205bc/0_116_5526_3315/master/5526.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctb3BpbmlvbnMucG5n&enable=upscale&s=76a61620d10938930cbcdab4aad49756",
"publishedAt": "2023-03-02T08:00:04Z",
"content": "Changing rooms can be lonely places. When Isa Guha started playing cricket she was the only girl in an all-boys team and when she was only a little older, the only girl in an all-womens one. A lot of… [+5444 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin in Hamilton",
"title": "Stuart Broad tips Ollie Pope as future England Test cricket captain",
"description": "<ul><li>‘No doubt’ the batter can lead team in the future, says Broad</li><li>England meet New Zealand in day-night first Test next week</li></ul>Ollie Pope has said he will continue to develop his cricket brain amid a mounting body of evidence he is being gr…",
"url": "https://www.theguardian.com/sport/2023/feb/10/stuart-broad-tips-ollie-pope-as-future-england-test-cricket-captain",
"urlToImage": "https://i.guim.co.uk/img/media/60c65ad2284f139bf61f83cab8ce482f6f60fa6c/0_55_5000_3002/master/5000.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=fdded64ac46c7969aff0465e43eaa3c0",
"publishedAt": "2023-02-10T06:00:23Z",
"content": "Ollie Pope has said he will continue to develop his cricket brain amid a mounting body of evidence he is being groomed as a future England Test captain.\r\nBen Stokes has never officially named a deput… [+4060 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin in Hamilton",
"title": "McCullum keen ‘to make Test cricket enjoyable’ and counter lure of T20",
"description": "England’s recent success has been built on off-field fun, with their head coach’s approach very different to his predecessorsKeep an eye out for one of the horses running in the Herbie Dyke Stakes at Te Rapa near Hamilton this weekend. It is an eight-year-old…",
"url": "https://www.theguardian.com/sport/2023/feb/09/cricket-england-brendon-mccullum-test-new-zealand-t20",
"urlToImage": "https://i.guim.co.uk/img/media/dbe4d608c301a596590137c3cc5606ebb0f02914/0_295_5091_3055/master/5091.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=dad7f3327d3bc35e8067eb57bdec1f83",
"publishedAt": "2023-02-09T09:00:09Z",
"content": "Keep an eye out for one of the horses running in the Herbie Dyke Stakes at Te Rapa near Hamilton this weekend. It is an eight-year-old gelding co-owned by Englands Kiwi head coach, Brendon McCullum, … [+4874 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Annesha Ghosh",
"title": "Rich in every sense: how Ashleigh Gardner landed a $558,000 cricket deal | Annesha Ghosh",
"description": "Those who know her best say the Australian is perfectly built for T20 cricket and has every facet of the short format of the game covered offFun, fearlessness and first-rate talent can often be a winning combination, and in world No 1 allrounder Ashleigh Gard…",
"url": "https://www.theguardian.com/sport/2023/feb/18/rich-in-every-sense-how-ashleigh-gardner-landed-a-558000-cricket-deal",
"urlToImage": "https://i.guim.co.uk/img/media/35d2282bfded890c4eadcc6aa04489232eb336af/0_369_6722_4036/master/6722.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=f3bb2b18c9fc731d85cf744ef91ba6f7",
"publishedAt": "2023-02-17T19:00:20Z",
"content": "Fun, fearlessness and first-rate talent can often be a winning combination, and in world No 1 allrounder Ashleigh Gardner, cricket has a fine example. A three-time World Cup winner, Commonwealth Game… [+6335 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin in Wellington",
"title": "‘It feels a bit like club cricket’: Foakes providing calm amid Bazball storm",
"description": "The wicketkeeper has been a counterpoint to England’s frenzied approach but he is relaxed about his place in the sideIf it sounded a bit village it is because it pretty much was. When Ben Foakes came out to bat ahead of Ben Stokes on day three in Mount Maunga…",
"url": "https://www.theguardian.com/sport/2023/feb/21/it-feels-a-bit-like-club-cricket-foakes-providing-calm-amid-bazball-storm",
"urlToImage": "https://i.guim.co.uk/img/media/32593568a46bda4286a8b9ebda2cde7873db88b0/83_260_3196_1918/master/3196.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=2f1a8e777d419799d05c0b932b323435",
"publishedAt": "2023-02-21T09:10:38Z",
"content": "If it sounded a bit village it is because it pretty much was. When Ben Foakes came out to bat ahead of Ben Stokes on day three in Mount Maunganui, the promotion was not some tactical masterstroke but… [+4519 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Tanya Aldred",
"title": "The Spin | When Test cricket is this good, even defeats can feel like a triumph",
"description": "New Zealand’s one-run victory over England gave devotees a pinch-yourself moment of glee at one of the greatest TestsMemorable things happen at three o’clock in the morning. Perhaps you watched the then Conservative defence secretary Michael Portillo climb sl…",
"url": "https://www.theguardian.com/sport/2023/mar/01/the-spin-when-test-cricket-is-this-good-even-defeats-can-feel-like-a-triumph",
"urlToImage": "https://i.guim.co.uk/img/media/641e4908452cb43f8c3340a2c3b1151f57840d31/0_173_5203_3122/master/5203.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=386881e5b1972bb8068c63842d68d04a",
"publishedAt": "2023-03-01T11:30:40Z",
"content": "Memorable things happen at three oclock in the morning. Perhaps you watched the then Conservative defence secretary Michael Portillo climb slowly on to a wooden stage, to be sent into the political w… [+5270 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Angus Fontaine (now) and Daniel Gallan (later)",
"title": "India v Australia: third Test, day two – live",
"description": "<ul><li>Updates from the second day of play at Holkar Stadium</li><li>The cricket starts at 9:30am in Indore/3pm AEDT</li><li>Any thoughts? Feel free to get in touch on email</li></ul>For those who came in late… here’s how our own Geoff Lemon saw Day 1Howdy c…",
"url": "https://www.theguardian.com/sport/live/2023/mar/02/india-vs-australia-live-updates-cricket-score-third-test-3rd-day-two-ind-v-aus-scorecard-international-match-latest-scores-indore-holkar-stadium",
"urlToImage": "https://i.guim.co.uk/img/media/0f66cf137fcc9cf84daf6db7858d245c19943fac/0_209_2630_1579/master/2630.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctbGl2ZS5wbmc&enable=upscale&s=ceac19ee1c2d552039179926f3c818c8",
"publishedAt": "2023-03-02T03:38:24Z",
"content": "But all the chuntering in the chat rooms of the cricketing netherworld is about this Six Demon Bag of a pitch served up at Indore. Darryl from South Africa emailed overnight with these sage words\r\nTh… [+2168 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin at Bay Oval",
"title": "Ollie Robinson hopes to be ‘worthy bearer’ of Anderson and Broad’s baton",
"description": "<ul><li>England’s veteran pace bowlers hit 1,001 Test wickets in tandem</li><li>‘These guys are the greats of the game,’ says Tom Blundell</li></ul>Ollie Robinson hopes to become a worthy recipient of the baton when Jimmy Anderson and Stuart Broad finally cal…",
"url": "https://www.theguardian.com/sport/2023/feb/17/ollie-robinson-hopes-worthy-bearer-of-anderson-and-broad-baton-cricket",
"urlToImage": "https://i.guim.co.uk/img/media/ff1275aa0d96843712ef38a56a36a19f786b0e90/0_90_2694_1616/master/2694.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=e618ae361a718143ec91bf6ddab103fa",
"publishedAt": "2023-02-17T11:50:46Z",
"content": "Ollie Robinson hopes to become a worthy recipient of the baton when Jimmy Anderson and Stuart Broad finally call time on their careers after crediting the record-breaking pair for his rapid rise in i… [+2137 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Angus Fontaine",
"title": "India v Australia: third Test, day three – live",
"description": "<ul><li>Updates from the third day of play at Holkar Stadium</li><li>The cricket starts at 9:30am in Indore/3pm AEDT</li><li>Any thoughts? Feel free to get in touch on email</li></ul>Some food for thought… if India defend 76 runs today it will break the 141-y…",
"url": "https://www.theguardian.com/sport/live/2023/mar/03/india-vs-australia-live-updates-cricket-score-third-test-3rd-day-three-ind-v-aus-scorecard-international-match-latest-scores-indore-holkar-stadium",
"urlToImage": "https://i.guim.co.uk/img/media/2450e0dcc236703ad03e01b8b8f38fb29e034fa6/0_365_5472_3283/master/5472.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctbGl2ZS5wbmc&enable=upscale&s=ec04c33b5bd29d222f46fedb28f7e1de",
"publishedAt": "2023-03-03T03:46:05Z",
"content": "Cheteshwar Pujara, who top-scored in Indias second innings with 59, last night give a hint on the mindset India will take into today and the challenge facing Australias batters:\r\nIts a tough pitch to… [+2555 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin in Wellington",
"title": "New Zealand’s Tickner swaps Tests for flood clean-up as father’s house destroyed",
"description": "<ul><li>Seamer helping out neighbours in hard-hit Hawke’s Bay</li><li>‘Cricket is nothing compared to what people are going through’</li></ul>Two days out from the second Test in Wellington came a reminder of more sobering events elsewhere as Blair Tickner, a…",
"url": "https://www.theguardian.com/sport/2023/feb/22/blair-tickner-cricket-new-zealand-cyclone-gabrielle",
"urlToImage": "https://i.guim.co.uk/img/media/135bfbe8affc5dcf0351276b394c3c9c3835f3fb/0_94_5400_3240/master/5400.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=fc7cad6a3cfe6d1232f7bcb973e14799",
"publishedAt": "2023-02-22T10:00:05Z",
"content": "Two days out from the second Test in Wellington came a reminder of more sobering events elsewhere as Blair Tickner, a debutant for New Zealand against England last week, stood on the outfield at the … [+3261 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin in Mount Maunganui",
"title": "New Zealand coach Stead defends omitting Boult and selecting Kuggeleijn",
"description": "<ul><li>Call-up for uncapped Scott Kuggeleijn prompts online backlash</li><li>‘I get given the players I can choose from,’ says Gary Stead</li></ul>New Zealand’s head coach, Gary Stead, has defended two potentially divisive selection calls before the first Te…",
"url": "https://www.theguardian.com/sport/2023/feb/14/new-zealand-coach-defends-overlooking-boult-selecting-kuggeleijn-cricket",
"urlToImage": "https://i.guim.co.uk/img/media/0378fc6b7074596bb8c5db13a6e51dc0b92b31d0/0_104_2908_1745/master/2908.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=109bc79dbf9f4d34aadecb6b4899a56b",
"publishedAt": "2023-02-14T11:25:23Z",
"content": "New Zealands head coach, Gary Stead, has defended two potentially divisive selection calls before the first Test against England after opting against sending an SOS to Trent Boult and calling up the … [+3185 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Daniel Harris (now) and James Wallace (later)",
"title": "New Zealand v England: first Test, day four – live",
"description": "<ul><li>Updates as England hunt victory in Mount Maunganui</li><li>Day three: Broad turns up heat on New Zealand</li><li>Any thoughts? Email or tweet @DanielHarris</li></ul>Is David Warner the reason England are like this? Maybe we’re\r\n I’m just projecting, b…",
"url": "https://www.theguardian.com/sport/live/2023/feb/19/new-zealand-v-england-first-test-day-four-live",
"urlToImage": "https://i.guim.co.uk/img/media/e27d99fc9443e657e81b0e2e62d2f6cadf23ec21/0_164_4834_2900/master/4834.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctbGl2ZS5wbmc&enable=upscale&s=788d1873e4c89b6cbef8b2b0a5f8d8b2",
"publishedAt": "2023-02-19T00:14:32Z",
"content": "Is David Warner the reason England are like this? Maybe were\r\n Im just projecting, but bear with me.\r\nIts true that Steve Waughs Australia changed the way Test cricket was played, Matthew Hayden and … [+1504 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Simon Burnton",
"title": "Yorkshire CCC admits four charges in ECB racism inquiry while Pyrah pulls out",
"description": "<ul><li>Club will no longer have to take part in CDC hearings next month</li><li>Pyrah decision leaves Michael Vaughan as only participant</li></ul>Yorkshire Cricket Club has admitted four charges of bringing the game into disrepute, reaching an agreement wit…",
"url": "https://www.theguardian.com/sport/2023/feb/07/yorkshire-ccc-admits-four-charges-in-ecb-racism-inquiry-while-pyrah-pulls-out",
"urlToImage": "https://i.guim.co.uk/img/media/a01d8df334125796fb5dd902bcae1acacf9e7d9a/621_152_2398_1439/master/2398.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=bc07587c660c7f1c89ebbab4e5d0e019",
"publishedAt": "2023-02-07T12:42:54Z",
"content": "Yorkshire Cricket Club has admitted four charges of bringing the game into disrepute, reaching an agreement with the ECB that means it will not have to take part in the Cricket Discipline Commission … [+3275 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Simon Burnton in Dhaka",
"title": "England’s other squad: how the Test drama unfolded … in Bangladesh",
"description": "As one of the great Tests reached a climax, England’s ODI squad were scrambling to follow the action. Well, some were …As one of the great Tests was building to its barnstorming conclusion in New Zealand, England’s other senior squad was just waking up in Ban…",
"url": "https://www.theguardian.com/sport/2023/feb/28/englands-other-squad-how-the-test-drama-unfolded-in-bangladesh",
"urlToImage": "https://i.guim.co.uk/img/media/968b98bb29c69b2254c60da1dda81ea37917cbf4/0_147_4253_2552/master/4253.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=ce94cb037f80d3a4e8c3fa47964035da",
"publishedAt": "2023-02-28T18:00:10Z",
"content": "As one of the great Tests was building to its barnstorming conclusion in New Zealand, Englands other senior squad was just waking up in Bangladesh. Though it was not being shown at their hotel some p… [+3888 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin at the Basin Reserve",
"title": "Williamson and Nicholls dig in as New Zealand resistance frustrates England",
"description": "<ul><li>Ben Stokes enforces follow-on early on day three in Wellington</li><li>Hosts trail by 24 runs with seven second-innings wickets intact</li></ul>A couple of days out from the second Test, at a drinks reception, the chief executive of New Zealand Cricke…",
"url": "https://www.theguardian.com/sport/2023/feb/26/williamson-and-nicholls-dig-in-as-new-zealand-resistance-frustrates-england",
"urlToImage": "https://i.guim.co.uk/img/media/dcb705eb7bea2bb0c765c285dd2a4c87ccb2d659/0_49_3262_1957/master/3262.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=dbf209e584eedd545b7821b3a1b228cf",
"publishedAt": "2023-02-26T06:38:11Z",
"content": "A couple of days out from the second Test, at a drinks reception, the chief executive of New Zealand Cricket, David White, referred to the Basin Reserve as the spiritual home of the sport in the coun… [+5237 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Angus Fontaine (now) and James Wallace (later)",
"title": "India v Australia: first Test, day one – live",
"description": "<ul><li>Updates from the opening match of the series at VCA Stadium</li><li>Play in the cricket starts at 9:30am in Nagpur/3pm AEDT</li><li>Any thoughts? Feel free to get in touch with an email</li></ul>And the India XI…And here are the full teams… Continue r…",
"url": "https://www.theguardian.com/sport/live/2023/feb/09/india-vs-australia-live-updates-cricket-score-first-test-day-one-ind-v-aus-scorecard-international-latest-scores-nagpur-vca-stadium",
"urlToImage": "https://i.guim.co.uk/img/media/d9e99418fecd7504de5e16901799f8dc70fc95b8/0_125_3763_2259/master/3763.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctbGl2ZS5wbmc&enable=upscale&s=f8f35d72d18e4ac7e0d2f2ff48fae750",
"publishedAt": "2023-02-09T03:52:53Z",
"content": "And here are the full teams\r\nAustralia XI: David Warner, Usman Khawaja, Marnus Labuschagne, Steve Smith, Matthew Renshaw, Peter Handscomb, Alex Carey (wk), Pat Cummins (c), Todd Murphy, Nathan Lyon, … [+4122 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Sean Ingle",
"title": "Yorkshire racism hearing: Vaughan, Rashid and Rafeeq due to give evidence – live",
"description": "<ul><li>Live updates from the Cricket Discipline Commission hearing</li><li>Bresnan accused of racist comments about Rafiq’s sister</li><li>Drop Sean an email | Tweet him</li></ul>The CDC has already heard the ECB’s case against three players on day one of th…",
"url": "https://www.theguardian.com/sport/live/2023/mar/02/yorkshire-racism-hearing-vaughan-rashid-and-rafeeq-due-to-give-evidence-live",
"urlToImage": "https://i.guim.co.uk/img/media/3f14eb23728e2fea4166fa831441d3c170a76624/0_7_6465_3879/master/6465.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctbGl2ZS5wbmc&enable=upscale&s=189852b10b1cb55c1441f7dc34d8b8bd",
"publishedAt": "2023-03-02T11:21:21Z",
"content": "Show key events onlyPlease turn on JavaScript to use this feature\r\nChristopher Stoner KC, counsel for Michael Vaughan, is now giving his opening statement.\r\nThe charge against Mr Vaughan is denied. W… [+4709 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Sean Ingle",
"title": "Michael Vaughan denies using racist language: ‘That’s not what I am about’",
"description": "<ul><li>Former England captain gives evidence to Yorkshire hearing</li><li>Azeem Rafiq accused of playing ‘race card’ by Matthew Wood</li></ul>The former England cricket captain Michael Vaughan has categorically denied using racist language to four Asian play…",
"url": "https://www.theguardian.com/sport/2023/mar/03/michael-vaughan-denies-using-racist-language-thats-not-what-i-am-about",
"urlToImage": "https://i.guim.co.uk/img/media/d1de64c19a60d0c3c058c673943990177ff6ecf1/0_129_3500_2100/master/3500.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=4592e37794be830cc3e154efe79e83d0",
"publishedAt": "2023-03-03T19:17:30Z",
"content": "The former England cricket captain Michael Vaughan has categorically denied using racist language to four Asian players in 2009, telling a disciplinary hearing: Thats not what I am about.\r\nOn a day w… [+6237 chars]"
},
{
"source": {
"id": "bbc-news",
"name": "BBC News"
},
"author": "https://www.facebook.com/bbcnews",
"title": "'Now I deliver food, but once I played football for my country'",
"description": "Poulami Adhikari played in India's under-16 team, but had to stop when her family fell on hard times.",
"url": "https://www.bbc.co.uk/news/world-asia-india-64513558",
"urlToImage": "https://ichef.bbci.co.uk/news/1024/branded_news/03FC/production/_128502010_poulami_garden.jpg",
"publishedAt": "2023-02-05T00:18:05Z",
"content": "Poulami Adhikari was half-way through a double shift when Atindra Chakraborty, a social worker whose hobby is making videos about ordinary people in Kolkata, stopped her to ask some questions. \r\nPoul… [+5873 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Raf Nicholson in Paarl",
"title": "Women’s T20 World Cup: Sri Lanka stun hosts South Africa in dramatic opener",
"description": "<ul><li>Sri Lanka 129-4, South Africa 126-9; Sri Lanka win by three runs</li><li>Athapaththu sets up win as hosts feel the pressure in Cape Town</li></ul>Playing a tournament opener in front of a home crowd can do funny things to a team – just ask Australia (…",
"url": "https://www.theguardian.com/sport/2023/feb/10/sri-lanka-shock-hosts-south-africa-in-womens-t20-world-cup-opener",
"urlToImage": "https://i.guim.co.uk/img/media/03bce4b4d4bb714ad4e46d6300868bad2ec7b99f/0_61_3116_1871/master/3116.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=5a01204f623073039cc578b427c1272e",
"publishedAt": "2023-02-10T21:03:58Z",
"content": "Playing a tournament opener in front of a home crowd can do funny things to a team just ask Australia (who lost to India in 2020) or England (who did the same in 2017). And so it proved again at Newl… [+3779 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin in Mount Maunganui",
"title": "‘Gimmicky’: Robinson grumbles at pink ball as cyclone rumbles in New Zealand",
"description": "<ul><li>England bowlers irked by Kookaburra ball for day-night Test</li><li>Rain and winds hits Bay of Plenty as Cyclone Gabrielle circles</li></ul>“Now is not the time for sprinklers” declared one of the billboards on the drive into Mount Maunganui on Sunday…",
"url": "https://www.theguardian.com/sport/2023/feb/12/gimmicky-ollie-robinson-grumbles-pink-cricket-ball-cyclone-gabrielle-england-new-zealand",
"urlToImage": "https://i.guim.co.uk/img/media/2d388cedece73b9be32ffa6061466c6a122c7b65/0_81_2045_1226/master/2045.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=b3373da1e930385bb11080b97fa4e602",
"publishedAt": "2023-02-12T09:09:25Z",
"content": "Now is not the time for sprinklers declared one of the billboards on the drive into Mount Maunganui on Sunday and although it was not the weather that the local authorities had in mind here, the sent… [+4623 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Simon Burnton in Chittagong",
"title": "Curran using England’s packed T20 schedule as ODI World Cup audition",
"description": "With chances to impress in ODI cricket rare, those players on the periphery will need to seize opportunities in other formatsAs England’s white-ball squad gathered in Dhaka there was widespread optimism that the ODI series could be won. There was also recogni…",
"url": "https://www.theguardian.com/sport/2023/mar/04/sam-curran-cricket-england-odi-world-cup-t20-audition",
"urlToImage": "https://i.guim.co.uk/img/media/c4285947f0b0a8fc0122dab8b28fc0dd22645260/430_5_1429_857/master/1429.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=816d3e1d2809667075020c5a2c4b8937",
"publishedAt": "2023-03-04T18:00:30Z",
"content": "As Englands white-ball squad gathered in Dhaka there was widespread optimism that the ODI series could be won. There was also recognition that in unfamiliar conditions and against a side with a formi… [+4894 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Simon Burnton",
"title": "Briefs intermission: Jacks happy to straddle England tours despite bag lag",
"description": "Will Jacks reflects on his ‘whirlwind’ route to Bangladesh, including a lost suitcase resulting in a shortage of underwearThe last six months in the career of Will Jacks have been such a whirlwind even his own clothes have not been able to keep up. Half a yea…",
"url": "https://www.theguardian.com/sport/2023/mar/02/will-jacks-england-tours-bangladesh-cricket",
"urlToImage": "https://i.guim.co.uk/img/media/f8860da5442b89bc9c98b5f04b94e9f58e06f589/356_153_2052_1231/master/2052.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=ac0ea3ee4ce41ba25742419a528f71ab",
"publishedAt": "2023-03-02T13:25:15Z",
"content": "The last six months in the career of Will Jacks have been such a whirlwind even his own clothes have not been able to keep up. Half a year ago he had never played for England in any format; now he ha… [+3956 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Taha Hashim",
"title": "The Spin | ‘I’m a lucky man’: Ryan Campbell on his ‘seven-day window of nothing’",
"description": "The new Durham coach on the early days of T20, coaching Ben Stokes and the trauma of spending a week in a coma“I thought I was in Bali, I’d been kidnapped, drugged and people had stolen all my stuff because I couldn’t find anything,” says Ryan Campbell. In re…",
"url": "https://www.theguardian.com/sport/2023/feb/15/the-spin-cricket-ryan-campbell-interview-australia-durham",
"urlToImage": "https://i.guim.co.uk/img/media/b4bc8d38dd662f912dcbf001fb91eec8ce76cc11/0_255_8192_4918/master/8192.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=b2a6baf57bd3d6deb45d1c8557af696b",
"publishedAt": "2023-02-15T12:30:11Z",
"content": "I thought I was in Bali, Id been kidnapped, drugged and people had stolen all my stuff because I couldnt find anything, says Ryan Campbell. In reality, the former Australia wicketkeeper was in a Stok… [+5612 chars]"
},
{
"source": {
"id": null,
"name": "Yahoo Entertainment"
},
"author": "MUNIR AHED",
"title": "Pakistani court orders arrest of former premier Imran Khan",
"description": "A Pakistani court on Tuesday issued an arrest warrant for former Prime Minister Imran Khan, as the cricket star-turned-politician called on his supporters to...",
"url": "https://news.yahoo.com/pakistani-court-orders-arrest-former-132709802.html",
"urlToImage": "https://s.yimg.com/ny/api/res/1.2/oVIg.nsvIyOyxBEu6WE.mg--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD04MDA-/https://media.zenfs.com/en/ap.org/16a0516021abc3be61411149d94373a0",
"publishedAt": "2023-02-28T13:27:09Z",
"content": "ISLAMABAD (AP) A Pakistani court on Tuesday issued an arrest warrant for former Prime Minister Imran Khan, as the cricket star-turned-politician called on his supporters to keep up protests amid a ro… [+2878 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Raf Nicholson at Newlands",
"title": "Beth Mooney guides Australia to Women’s T20 World Cup victory against South Africa",
"description": "<ul><li>Final: Australia, 156-6, beat South Africa, 137-6, by 19 runs</li><li>Mooney scores second successive T20 World Cup half-century</li></ul>Sunday 26 February 2023 was an historic day for women’s sport in South Africa before a ball was even bowled. A se…",
"url": "https://www.theguardian.com/sport/2023/feb/26/beth-mooney-guides-australia-to-womens-t20-world-cup-victory-against-south-africa",
"urlToImage": "https://i.guim.co.uk/img/media/57688dc061450e70fae715d9d00772fdd55dcb41/0_55_5432_3259/master/5432.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=d08e7ea344934d4ea0caba34e73bc209",
"publishedAt": "2023-02-26T16:22:00Z",
"content": "Sunday 26 February 2023 was an historic day for womens sport in South Africa before a ball was even bowled. A sellout crowd at Newlands, in a country where womens cricket is rarely even ticketed. Que… [+2610 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin at the Basin Reserve",
"title": "Jack Leach has ‘learned a hell of a lot’ and thriving for England under Stokes",
"description": "<ul><li>Leach’s five-wicket haul vital for England against New Zealand</li><li>Stokes is ‘wanting to challenge me in lots of different situations’</li></ul>His work for the winter done – with the ball at least – a weary Jack Leach sat down in the press confer…",
"url": "https://www.theguardian.com/sport/2023/feb/27/jack-leach-has-learned-a-hell-of-a-lot-and-thriving-for-england-under-stokes",
"urlToImage": "https://i.guim.co.uk/img/media/d94f9146786faf33d64204c8e54a84ad793f44b7/0_234_2179_1307/master/2179.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=316ebd4431279fcd84ec86fc3b07122b",
"publishedAt": "2023-02-27T07:38:36Z",
"content": "His work for the winter done with the ball at least a weary Jack Leach reflected on the progress he believes he has made. Leachs fifth five-wicket haul in Test cricket was vital to Englands cause, sh… [+2709 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Australian Associated Press",
"title": "Australia lose nine wickets in one session in humiliating second Test defeat to India",
"description": "<ul><li>Australia 263 and 114; India 262 and 118-4 | India win by six wickets</li><li>Hosts retain Border-Gavaskar trophy for fourth straight time</li></ul>Australia’s hopes of conquering the final frontier are over after being crushed by India’s ruthless spi…",
"url": "https://www.theguardian.com/sport/2023/feb/19/australia-lose-nine-wickets-in-one-session-in-humiliating-second-test-defeat-to-india",
"urlToImage": "https://i.guim.co.uk/img/media/80d971458c720ec04afd6be859c1344ccff6c19a/0_171_3440_2064/master/3440.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=a5a4f8bc76c8cad6b413f1ab78992b0b",
"publishedAt": "2023-02-19T08:30:59Z",
"content": "Australias hopes of conquering the final frontier are over after being crushed by Indias ruthless spin sensations Ravi Jadeja and Ravichandran Ashwin for the second time in a week.\r\nIndia will retain… [+3263 chars]"
},
{
"source": {
"id": "bbc-news",
"name": "BBC News"
},
"author": "https://www.facebook.com/bbcnews",
"title": "Mardi Gras: Australia's PM Anthony Albanese first to join march",
"description": "Anthony Albanese's presence at Mardi Gras has been welcomed by many but he has also faced criticism.",
"url": "https://www.bbc.co.uk/news/world-australia-64771714",
"urlToImage": "https://ichef.bbci.co.uk/news/1024/branded_news/8543/production/_128751143_gettyimages-1247463010.jpg",
"publishedAt": "2023-02-25T13:47:14Z",
"content": "Anthony Albanese has become Australia's first sitting prime minister to take part in Sydney's Gay and Lesbian Mardi Gras parade - one of the biggest events of its kind in the world. \r\nHuge crowds pac… [+2196 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Angus Fontaine (now) and James Wallace (later)",
"title": "India v Australia: first Test, day two – live",
"description": "<ul><li>Updates from the second day of play at VCA Stadium</li><li>The cricket starts at 9:30am in Nagpur/3pm AEDT</li><li>Any thoughts? Feel free to get in touch on email</li></ul>And for those who like a little extra heat in their Biryani, here’s one of the…",
"url": "https://www.theguardian.com/sport/live/2023/feb/10/india-vs-australia-live-updates-cricket-score-first-test-day-two-ind-v-aus-scorecard-international-latest-scores-nagpur-vca-stadium",
"urlToImage": "https://i.guim.co.uk/img/media/265e804f24b7e8468765e0e4b950a3c4c5947180/0_0_3299_1980/master/3299.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctbGl2ZS5wbmc&enable=upscale&s=5027c952b715a589aa43de728b4cef24",
"publishedAt": "2023-02-10T03:39:17Z",
"content": "Namaste cricket fans! Welcome back to the tiger capital of Nagpur for day two of the first Test between India and Australia in the Border-Gavaskar Trophy.\r\nDay one had all the intrigue, controversy, … [+2068 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin in Mount Maunganui",
"title": "Brendon McCullum embraces rugby roots before New Zealand return",
"description": "England’s head coach almost opted for his country’s national sport over cricket and his mentor believes was destined to excelIt was probably to be expected that an England team coached by a Kiwi should tune-up for the Test series that gets under way in New Ze…",
"url": "https://www.theguardian.com/sport/2023/feb/15/brendon-mccullum-embraces-rugby-roots-before-new-zealand-return",
"urlToImage": "https://i.guim.co.uk/img/media/3c695aa7f159836960be4a55ab4be42dc904c2aa/0_248_5472_3283/master/5472.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=a1a5aa3d0af52bfb21347683216c1611",
"publishedAt": "2023-02-15T16:00:15Z",
"content": "It was probably to be expected that an England team coached by a Kiwi should tune-up for the Test series that gets under way in New Zealand on Thursday by crashing into some tackle bags.\r\nRugby runs … [+5076 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Emma Kemp",
"title": "Multi-million dollar WPL auction signals huge step forward for women’s sport | Emma Kemp",
"description": "The cricket deals offered in India and recent financial developments in other sports are progress of a kind not seen beforeIt was only a few days ago that members of the Australian women’s cricket team were contemplating how best to navigate the impending “di…",
"url": "https://www.theguardian.com/sport/blog/2023/feb/14/multi-million-dollar-wpl-auction-signals-huge-step-forward-for-womens-sport",
"urlToImage": "https://i.guim.co.uk/img/media/c463d9192fecb65991f8ad9af287497904b1f786/0_97_2898_1739/master/2898.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=8bab7022c09ce1a757f584b05d8e4727",
"publishedAt": "2023-02-14T06:13:27Z",
"content": "It was only a few days ago that members of the Australian womens cricket team were contemplating how best to navigate the impending distraction of the inaugural Womens Premier League auction, schedul… [+5555 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "James Wallace (now) and Daniel Harris (later)",
"title": "New Zealand v England: second Test, day four – live",
"description": "<ul><li>Updates from the fourth day of the second Test in Wellington</li><li>Get in touch! You can email James or tweet him</li></ul>Hello and welcome to the day four OBO of New Zealand v England from Wellington. So how does the land lie on the southern tip o…",
"url": "https://www.theguardian.com/sport/live/2023/feb/26/new-zealand-v-england-second-test-day-four-live-score-updates",
"urlToImage": "https://i.guim.co.uk/img/media/8c9148712a78ddaf1ebce41f2fa505c35ef654eb/0_295_5400_3240/master/5400.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctbGl2ZS5wbmc&enable=upscale&s=e019a103d45aec3ef74e487a856feb1e",
"publishedAt": "2023-02-26T21:17:10Z",
"content": "Now, we know England will try to chase whatever target the hosts manage to put on the board but what sort of a score will have them twitching a little on the back seat of the BazBus*? Anything over 2… [+1935 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Angus Fontaine (now) and James Wallace (later)",
"title": "India v Australia: third Test, day one – live",
"description": "<ul><li>Updates from the penultimate Test at Holkar Stadium</li><li>The cricket in Indore starts at 9:30am local/3pm AEDT</li><li>Any thoughts? Feel free to get in touch on email</li></ul>Australia XI: Khawaja, Head, Labuschagne, Smith (c), Handscomb, Green, …",
"url": "https://www.theguardian.com/sport/live/2023/mar/01/india-vs-australia-live-updates-cricket-score-third-test-3rd-day-one-ind-v-aus-scorecard-international-match-latest-scores-indore-holkar-stadium",
"urlToImage": "https://i.guim.co.uk/img/media/3ebfbf15445b801f84f96ee06f3cf727feecbb7a/0_78_3520_2112/master/3520.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctbGl2ZS5wbmc&enable=upscale&s=872dfd5560df41c559e608bcff34581d",
"publishedAt": "2023-03-01T03:36:06Z",
"content": "With Starc and Green back in the fold, this seems a better-balanced Australian XI. Yet batting is where Australia have been found wanting on this tour.\r\nOn camera we can see the Indore wicket has a l… [+3904 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Raf Nicholson in Paarl",
"title": "England take inspiration from Bazball for Women’s T20 World Cup title bid",
"description": "Positive approach will be taken in order to topple Australia but the Premier League auction could prove a distractionThere may be a sparkly new kid on the block in the shape of the Women’s Premier League, but for the next four weeks at least international wom…",
"url": "https://www.theguardian.com/sport/2023/feb/09/england-women-bazball-for-t20-world-cup-cricket",
"urlToImage": "https://i.guim.co.uk/img/media/30d9b815106cf6584f815d3df92030e52b620df1/0_9_3698_2221/master/3698.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=c8376653440759196b9f914499e13002",
"publishedAt": "2023-02-09T13:42:16Z",
"content": "There may be a sparkly new kid on the block in the shape of the Womens Premier League, but for the next four weeks at least international womens cricket is the focus. Beginning on Friday, at three ve… [+4283 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Australian Associated Press and Guardian sport",
"title": "‘Never seen this’: debate spins around Ravi Jadeja and mystery substance",
"description": "<ul><li>Star of day one of first Test seen rubbing substance onto finger</li><li>Indian media reports say it was ointment for damaged digit</li></ul>Prominent former cricketers have weighed in on a debate that surfaced around what India spinner Ravindra Jadej…",
"url": "https://www.theguardian.com/sport/2023/feb/10/never-ever-seen-this-debate-spins-around-ravi-jadeja-and-mystery-substance",
"urlToImage": "https://i.guim.co.uk/img/media/e4f8924baa8c1cbe28a6ae801db9ebe5b51a9c2f/0_96_1988_1193/master/1988.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=0e257ef9042aa18f93ec950f7097bd18",
"publishedAt": "2023-02-09T23:37:31Z",
"content": "Prominent former cricketers have weighed in on a debate that surfaced around what India spinner Ravindra Jadeja was doing with an unidentified substance near the ball on the opening day of the first … [+2415 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Sean Ingle",
"title": "Adil Rashid to give evidence via videolink at Yorkshire racism hearing",
"description": "<ul><li>England player will speak from Bangladesh on Thursday</li><li>CDC hearing begins on Wednesday and will last three days</li></ul>The England cricketer Adil Rashid has agreed to give evidence from Bangladesh via videolink to a public hearing into Azeem …",
"url": "https://www.theguardian.com/sport/2023/feb/28/adil-rashid-to-give-evidence-via-videolink-at-yorkshire-racism-hearing",
"urlToImage": "https://i.guim.co.uk/img/media/9c38afd5177e9b43bfbed7048498bbf64421feda/0_719_2569_1541/master/2569.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=4d23fcd26a779c4b7673e851a9391d8b",
"publishedAt": "2023-02-28T18:02:05Z",
"content": "The England cricketer Adil Rashid has agreed to give evidence from Bangladesh via videolink to a public hearing into Azeem Rafiqs racism allegations which begins on Wednesday.\r\nRashid was a teammate … [+2374 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin in Wellington",
"title": "England chase magnificent seven as New Zealand battle with Bazball",
"description": "England aim to continue winning run while the Black Caps will hope to counter tourists’ tactics at their Wellington strongholdFirst established back in the 1860s after swamp land produced by a massive earthquake was then drained by prisoners from the Mount Co…",
"url": "https://www.theguardian.com/sport/2023/feb/22/england-magnificent-seven-new-zealand-bazball-cricket-second-test",
"urlToImage": "https://i.guim.co.uk/img/media/71a32dc73795b24681f571d83ddee25f892dc967/0_137_5400_3240/master/5400.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=cf09220677fb11012c1bc22d5755ac50",
"publishedAt": "2023-02-22T12:00:23Z",
"content": "First established back in the 1860s after swamp land produced by a massive earthquake was then drained by prisoners from the Mount Cook Gaol, the Basin Reserve in Wellington feels a pretty special pl… [+6194 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin in Hamilton",
"title": "Stuart Broad: ‘Being dropped by England arguably saved my career’",
"description": "Seamer was furious at being left out for Caribbean tour but is loving playing cricket under Ben Stokes and Brendon McCullumTwelve months on from being dropped for a tour of the Caribbean – and back in the country where his record-breaking alliance with Jimmy …",
"url": "https://www.theguardian.com/sport/2023/feb/11/stuart-broad-being-dropped-by-england-saved-my-career",
"urlToImage": "https://i.guim.co.uk/img/media/402ee0e9960a65efa56713382a0ab53f4e7d624c/0_175_1979_1188/master/1979.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=71ff080c208035ebf360f2b2f931f13d",
"publishedAt": "2023-02-11T18:00:01Z",
"content": "Twelve months on from being dropped for a tour of the Caribbean and back in the country where his record-breaking alliance with Jimmy Anderson began Stuart Broad is almost grateful his England career… [+7089 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Geoff Lemon in Delhi",
"title": "Australia rely on Handscomb to help solve high-stakes puzzle against India",
"description": "With Steve Smith and Marnus Labuschagne knocked out, it was Handscomb who carried the campaign against spinFor Australia’s cricketers in India, working out how to bat on local pitches has meant solving a puzzle. One with high stakes, in real time. They cycle …",
"url": "https://www.theguardian.com/sport/2023/feb/17/australia-would-do-well-to-give-peter-handscomb-time-up-the-order-to-solve-india-puzzle",
"urlToImage": "https://i.guim.co.uk/img/media/afea9c63d76596fbd2a60cddd8328647f345e805/0_76_1536_922/master/1536.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=f113564993ee0b22202717a9404ec129",
"publishedAt": "2023-02-17T20:46:51Z",
"content": "For Australias cricketers in India, working out how to bat on local pitches has meant solving a puzzle. One with high stakes, in real time. They cycle through the options: advance to the ball, or swe… [+5089 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin at the Basin Reserve",
"title": "‘It was the right decision’: Ben Stokes defends follow-on call after Test defeat",
"description": "<ul><li>Stokes the fourth captain to lose Test after enforcing follow-on</li><li>England captain to play in IPL despite struggles with knee injury</li></ul>Ben Stokes was unrepentant after England’s historic, nail-biting one-run defeat to New Zealand in Welli…",
"url": "https://www.theguardian.com/sport/2023/feb/28/ben-stokes-defends-follow-on-call-test-cricket-defeat",
"urlToImage": "https://i.guim.co.uk/img/media/82994f160dd49ac6f1e48451fc2db9519786749e/0_62_3716_2231/master/3716.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=0464d9500a925e49f16ef7fede8a9ab0",
"publishedAt": "2023-02-28T08:55:16Z",
"content": "Ben Stokes was unrepentant after Englands historic, nail-biting one-run defeat to New Zealand in Wellington, insisting he had no regrets about the follow-on and stating he will plough on to the India… [+3764 chars]"
},
{
"source": {
"id": null,
"name": "Yahoo Entertainment"
},
"author": "Associated Press",
"title": "Australia skipper Cummins leaves India between tests matches",
"description": "Skipper Pat Cummins has left Australia’s cricket tour to India for a brief visit to Sydney because of a serious family illness. Cricket Australia issued a...",
"url": "https://news.yahoo.com/australia-skipper-cummins-leaves-india-061000773.html",
"urlToImage": "https://s.yimg.com/ny/api/res/1.2/OxHp1s6bUJNGq4EB9cGk3g--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD04MDA-/https://media.zenfs.com/en/ap.org/5382779aa431d394c97e6331261dbc03",
"publishedAt": "2023-02-20T06:10:00Z",
"content": "SYDNEY (AP) Skipper Pat Cummins has left Australias cricket tour to India for a brief visit to Sydney because of a serious family illness.\r\nCricket Australia issued a statement Monday saying Cummins … [+723 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Tanya Aldred",
"title": "Australia v South Africa: Women’s T20 World Cup final – live",
"description": "<ul><li>Over-by-over updates from the showpiece in Cape Town</li><li>Any comments? You can email Tanya or tweet Tanya</li></ul>Hello! With the clock ticking down, roll up, tune in, spread out, for the women’s T20 World Cup final between Australia and South Af…",
"url": "https://www.theguardian.com/sport/live/2023/feb/26/australia-v-south-africa-womens-t20-world-cup-final-live-score-updates",
"urlToImage": "https://i.guim.co.uk/img/media/d9d821f9c3e8d0781c7c0601844a0e0cffac91bc/0_207_5669_3400/master/5669.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctbGl2ZS5wbmc&enable=upscale&s=3502654152949c8bbd553f9412580049",
"publishedAt": "2023-02-26T12:09:28Z",
"content": "Hello! With the clock ticking down, roll up, tune in, spread out, for the womens T20 World Cup final between Australia and South Africa. Its been a humdinger of a competition, crescendoing in those t… [+1131 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Daniel Harris (now) and Tim de Lisle (later)",
"title": "New Zealand v England: first Test, day two – live",
"description": "<ul><li>Updates from the second day’s play at the Bay Oval</li><li>And you can contact Daniel by email or on Twitter</li></ul>“Bay Oval looks such a chilled out place to be a spectator,” tweets Andrew Benton. “There can’t be many other grounds as grassy, can …",
"url": "https://www.theguardian.com/sport/live/2023/feb/17/new-zealand-v-england-first-test-day-two-live-score-updates",
"urlToImage": "https://i.guim.co.uk/img/media/5ecb5d94ab482c7dba025a13ed1416283b30942e/0_365_5472_3283/master/5472.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctbGl2ZS5wbmc&enable=upscale&s=63bb30291da4f21035cfcc40f621d0a8",
"publishedAt": "2023-02-17T00:50:34Z",
"content": "Stuart Broad is chatting to BT and he thinks itll be a wobble-seam day, so we probably wont see his new delivery coming from a new angle with a different body-twizzle, aimed at taking the ball away f… [+3434 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Tanya Aldred",
"title": "West Indies v England: Women’s T20 World Cup – live",
"description": "<ul><li>Updates from the Group 2 game in Paarl, 1pm GMT start</li><li>Sri Lanka shock hosts South Africa in dramatic opener</li><li>Get in touch: email Tanya or email @tjaldred</li></ul>Here is yesterday’s report from Cape Town:Our woman on the scene, Raf Nic…",
"url": "https://www.theguardian.com/sport/live/2023/feb/11/cricket-west-indies-england-womens-t20-world-cup-live",
"urlToImage": "https://i.guim.co.uk/img/media/455977ff5250e7b7fa5d836951a9a31351894179/0_83_4769_2862/master/4769.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctbGl2ZS5wbmc&enable=upscale&s=f2a902d008e9199ea66a20a457b88352",
"publishedAt": "2023-02-11T12:15:01Z",
"content": "Teams: England\r\nEngland XI: Danni Wyatt, Sophia Dunkley, Alice Capsey, Nat Sciver-Brunt, Heather Knight (c), Amy Jones (wk), Katherine Sciver-Brunt, Sophie Ecclestone, Charlie Dean, Sarah Glenn, Laur… [+3152 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin at Bay Oval",
"title": "Stuart Broad: England ‘unrecognisable’ in Test revival worthy of documentary",
"description": "<ul><li>Bowler praises impact of Ben Stokes and Brendon McCullum</li><li>‘It’s a shame there’s not a documentary about it’</li></ul>Stuart Broad has described the England setup as “completely unrecognisable” under Ben Stokes and Brendon McCullum and the bowle…",
"url": "https://www.theguardian.com/sport/2023/feb/18/stuart-broad-england-quotes-cricket-new-zealand-reaction",
"urlToImage": "https://i.guim.co.uk/img/media/e27d99fc9443e657e81b0e2e62d2f6cadf23ec21/0_0_3665_2200/master/3665.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=727c2aef83e7fe4f65369009999e11a0",
"publishedAt": "2023-02-18T12:00:20Z",
"content": "Stuart Broad has described the England setup as completely unrecognisable under Ben Stokes and Brendon McCullum and the bowler believes a trick has been missed by not making a fly-on-the wall documen… [+2629 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin at Bay Oval",
"title": "James Anderson blitz delivers thumping first-Test victory over New Zealand",
"description": "The redoubtable fast bowler, with help from pace partner Stuart Broad, routed the home side to deliver England’s first victory in New Zealand since 2008An England team that has made a virtue of enjoying life off the field earned themselves another day at leis…",
"url": "https://www.theguardian.com/sport/2023/feb/19/james-anderson-blitz-delivers-thumping-first-test-victory-over-new-zealand",
"urlToImage": "https://i.guim.co.uk/img/media/8ef346b39ab18364bb10040da643ce7c9962ccf0/0_111_4547_2730/master/4547.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=2a130fca391d7c29a1ed54948f03ac07",
"publishedAt": "2023-02-19T03:13:34Z",
"content": "An England team that has made a virtue of enjoying life off the field earned themselves another day at leisure in New Zealand after wrapping up a thumping 267-run win in the first Test in Mount Maung… [+2800 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Geoff Lemon in Delhi",
"title": "David Warner exit leaves Australian Test team looking balanced in India | Geoff Lemon",
"description": "Management gets a convenient chance to try Travis Head at the top without being seen to have made a definitive call on WarnerSo David Warner is heading home, arm busted and ambitions dented but that radiation-proof determination surely intact. Anyone who know…",
"url": "https://www.theguardian.com/sport/blog/2023/feb/22/david-warner-exit-leaves-australian-test-team-looking-balanced-in-india",
"urlToImage": "https://i.guim.co.uk/img/media/35304600107882b04364dc5409c30d1d6dc77e72/0_339_4028_2417/master/4028.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=4323d64be53034fc6a69b856b2a729b8",
"publishedAt": "2023-02-22T06:09:23Z",
"content": "So David Warner is heading home, arm busted and ambitions dented but that radiation-proof determination surely intact. Anyone who knows the feeling of broken bones could see what had happened as soon… [+4561 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin at Basin Reserve",
"title": "Harry Brook and Joe Root blaze centuries to sink New Zealand in soggy second Test",
"description": "An absurd 184 from Harry Brook and a classy century from Joe Root on day one against New Zealand have England on track for seven-straight under coach Brendon McCullumEngland have kissed a good few frogs over the years but on a Wellington pitch that started ou…",
"url": "https://www.theguardian.com/sport/2023/feb/24/harry-brook-and-joe-root-blaze-centuries-to-sink-new-zealand-in-soggy-second-test",
"urlToImage": "https://i.guim.co.uk/img/media/754100b11c19282ceda37d68a5c143a1f8e25328/169_15_2831_1699/master/2831.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=ae3d0b16a257ccabe99ef8a07b8f3f6c",
"publishedAt": "2023-02-24T05:30:02Z",
"content": "England have kissed a good few frogs over the years but on a Wellington pitch that started out green as Kermit himself came the latest evidence that, in Harry Brook, they have found a new middle orde… [+4318 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Australian Associated Press",
"title": "Australia ‘too high-tempo’ in second Test capitulation, says captain Pat Cummins",
"description": "<ul><li>Tourists search for answers after defeat by India inside three days</li><li>Former captain Allan Border ‘disappointed’ and ‘shell-shocked’</li></ul>Captain Pat Cummins has admitted Australia went “too high tempo” in a stunning capitulation as they los…",
"url": "https://www.theguardian.com/sport/2023/feb/20/cricket-australia-india-second-test-reaction",
"urlToImage": "https://i.guim.co.uk/img/media/a824385b3bc6aca2b3c700437c055ea804dc053c/0_204_4303_2583/master/4303.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=901c8a99b0ec753163cba3988a84bc63",
"publishedAt": "2023-02-19T23:17:22Z",
"content": "Captain Pat Cummins has admitted Australia went too high tempo in a stunning capitulation as they lost the second Test in Delhi inside three days. Defeat meant Australias hopes of winning a Test seri… [+3514 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin in Mount Maunganui",
"title": "Joe Root admits he is still searching for his role under England captain Stokes",
"description": "<ul><li>‘I’ve got to find out what sits best for me,’ says former captain</li><li>Root says Ben Stokes’s leadership has been ‘incredible’</li></ul>In the wash-up from England’s commanding victory in the first Test against New Zealand came an admission from Jo…",
"url": "https://www.theguardian.com/sport/2023/feb/20/england-cricket-joe-root-ben-stokes-new-zealand",
"urlToImage": "https://i.guim.co.uk/img/media/b736512f1c691ea0295813b000a3ea963e95b566/0_148_4159_2496/master/4159.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=0cc719a1acdb7617c23bc84452ab18bb",
"publishedAt": "2023-02-20T09:03:40Z",
"content": "In the wash-up from Englands commanding victory in the first Test against New Zealand came an admission from Joe Root that he is still finding his role under the captaincy of Ben Stokes - and it may … [+5073 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin at the Basin Reserve",
"title": "Joe Root unbeaten as England bowlers bring New Zealand to its knees",
"description": "<ul><li>Second Test, day two: England 435-8d (New Zealand 138 for 7)</li><li>Joe Root hits 153 not out; Leach and Anderson claim three wickets each</li></ul>Ben Stokes has given up warm-up cricket, pared back his training sessions and, in response to a chroni…",
"url": "https://www.theguardian.com/sport/2023/feb/25/joe-root-unbeaten-as-england-bowlers-bring-new-zealand-to-its-knees",
"urlToImage": "https://i.guim.co.uk/img/media/803dfbc36e69094a8dedb1f215ad4db16d4f1142/0_5_4234_2541/master/4234.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=7ecd4102e889c545a64a153f7a53c894",
"publishedAt": "2023-02-25T07:07:44Z",
"content": "Ben Stokes has given up warm-up cricket, pared back his training sessions and, in response to a chronic left knee problem that might have prompted a break earlier on in his career, the all-rounder ha… [+5671 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin in Hamilton",
"title": "‘Now I feel like I belong’: Leach out to create better memories in New Zealand",
"description": "<ul><li>Spinner was in hospital with sepsis for 48 hours on last tour</li><li>‘I was struggling. But I’m having too much fun to get ill now’</li></ul>After a week spent rekindling the feelgood vibes of their transformative 2022 – four days of golf and adventu…",
"url": "https://www.theguardian.com/sport/2023/feb/07/england-jack-leach-better-memories-new-zealand-cricket",
"urlToImage": "https://i.guim.co.uk/img/media/1bd3f139732a829e2f84152e328fd3081e006fff/0_71_3081_1849/master/3081.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=96f458cf8550578e84ab2df145f36495",
"publishedAt": "2023-02-07T12:07:55Z",
"content": "After a week spent rekindling the feelgood vibes of their transformative 2022 four days of golf and adventure sports on New Zealands South Island before heading north to begin training Englands Test … [+4518 chars]"
},
{
"source": {
"id": null,
"name": "Digital Trends"
},
"author": "Andrew Morrisey",
"title": "New Zealand vs England Live Stream: Watch the Cricket for FREE",
"description": "New Zealand takes on England today in the Cricket Test Series, and we've tracked down the best places to watch the live stream online.",
"url": "https://www.digitaltrends.com/movies/watch-new-zealand-vs-england-live-stream-online/",
"urlToImage": "https://www.digitaltrends.com/wp-content/uploads/2019/01/cricket.jpg?resize=1200%2C630&p=1",
"publishedAt": "2023-02-23T21:48:53Z",
"content": "Tottenham Hotspur is facing off against West Ham United this weekend, so if you're looking to watch this and other Premier League soccer games online, you've come to the right place. Given the increa… [+1531 chars]"
},
{
"source": {
"id": null,
"name": "Digital Trends"
},
"author": "Andrew Morrisey",
"title": "India vs Australia live stream: How to watch the Cricket Test Series",
"description": "The Cricket Test Series is in action tonight, and we've tracked down the best way to watch the India vs Australia live stream online.",
"url": "https://www.digitaltrends.com/movies/watch-india-vs-australia-live-stream-online/",
"urlToImage": "https://www.digitaltrends.com/wp-content/uploads/2019/01/cricket.jpg?resize=1200%2C630&p=1",
"publishedAt": "2023-02-28T21:45:30Z",
"content": "The Nascar Cup Series continues this Sunday with the 2023 Pala Casino 400 race happening at the Auto Club Speedway in Fontana, California. Thanks to Fox Sports, the official broadcaster of Nascar eve… [+1506 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "PA Media",
"title": "Azeem Akhtar departs as Essex chair despite no findings of antisemitism",
"description": "<ul><li>Announcement follows review of Akhtar’s social media activity</li><li>He said the review had ‘taken a toll’ in the last few weeks</li></ul>Azeem Akhtar has chosen not to continue in his role as chair of Essex, the club have announced.Akhtar was appoin…",
"url": "https://www.theguardian.com/sport/2023/feb/20/azeem-akhtar-departs-as-essex-cricket-chair-despite-no-findings-of-antisemitism",
"urlToImage": "https://i.guim.co.uk/img/media/b472a10c0d691c5f040270c2a4378bc8b862d339/0_120_3600_2160/master/3600.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=e181c84b24c335ae78d923872857107b",
"publishedAt": "2023-02-20T19:38:50Z",
"content": "Azeem Akhtar has chosen not to continue in his role as chair of Essex, the club have announced. Akhtar was appointed in November 2022 but stepped aside in December amid an independent review into his… [+1628 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin at Bay Oval",
"title": "England close on victory after Stuart Broad turns up heat on New Zealand",
"description": "<ul><li>First Test, D3: England 325-9 dec & 374; New Zealand 306 & 63-5</li><li>Broad takes four late wickets as hosts wilt under the lights</li></ul>The word “gimmick” has been doing the rounds among the England camp regarding day-night Test cricket but as S…",
"url": "https://www.theguardian.com/sport/2023/feb/18/cricket-new-zealand-england-first-test-match-report",
"urlToImage": "https://i.guim.co.uk/img/media/608a96c666fdc66d4b5ff74402ec87e34e957ed2/0_48_3014_1809/master/3014.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=afa336e3dd689a2ab047fca5e40b5852",
"publishedAt": "2023-02-18T09:25:13Z",
"content": "The word gimmick has been doing the rounds among the England camp regarding day-night Test cricket but as Stuart Broad set off on one his trademark surges, sending zing bails flying in the darkness a… [+6690 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Geoff Lemon in Nagpur",
"title": "Calm, confident Todd Murphy justifies quick climb into Australia Test side",
"description": "The spinner picks up five debut wickets in India’s first innings in Nagpur, including KL Rahul, Cheteshwar Pujara and Virat KohliFor a visiting slow bowler, India can be a trap. It is the spiritual home of spin, the still centre of the universe of revolutions…",
"url": "https://www.theguardian.com/sport/2023/feb/10/todd-murphy-justifies-his-rapid-ascent-into-australia-test-side",
"urlToImage": "https://i.guim.co.uk/img/media/18202302f5893a6a4ebceaeb8b9e87b6fe58ad47/0_155_2739_1643/master/2739.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=e50847dd7aefe3aef4a943f703ea6eee",
"publishedAt": "2023-02-10T18:22:47Z",
"content": "For a visiting slow bowler, India can be a trap. It is the spiritual home of spin, the still centre of the universe of revolutions, the place where you might find the most dramatic turner since Tina.… [+5030 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Simon Burnton in Dhaka",
"title": "England’s Bangladesh trip is bizarrely timed and packed with personal peril | Simon Burnton",
"description": "The scheduling may be comical, but there is plenty at stake for players who know this team is devilishly hard to break intoThere may be something faintly ridiculous, comical even, about England commencing a series in Bangladesh within hours of completing one …",
"url": "https://www.theguardian.com/sport/2023/feb/27/england-bangladesh-trip-bizarrely-timed-packed-with-personal-peril-cricket",
"urlToImage": "https://i.guim.co.uk/img/media/2fcc8378fd49a8a5a8c37a14ad22c826a2761011/0_166_3100_1860/master/3100.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=feff42bc2afcdbd40f6451d5bd3edc60",
"publishedAt": "2023-02-27T18:18:48Z",
"content": "There may be something faintly ridiculous, comical even, about England commencing a series in Bangladesh within hours of completing one in New Zealand, but there is no lack of seriousness about the t… [+3681 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Raf Nicholson at St George's Park",
"title": "Nat Sciver-Brunt leads England to win over India to close in on semi-finals",
"description": "<ul><li>Group 2: England, 151-7, beat India, 140-5, by 11 runs</li><li>Nat Sciver-Brunt scores 50 to help England clinch victory</li></ul>England are sitting pretty atop Group B in the T20 World Cup after beating India by 11 runs, all-but sealing their place …",
"url": "https://www.theguardian.com/sport/2023/feb/18/nat-sciver-brunt-leads-england-to-win-over-india-to-close-in-on-semi-finals",
"urlToImage": "https://i.guim.co.uk/img/media/27fcaf29e61e2a7b67a4eca24bfa47275d2f7d07/57_0_3968_2382/master/3968.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=fcf2326acc3f9d813f56ea2782dd5af8",
"publishedAt": "2023-02-18T16:45:32Z",
"content": "England are sitting pretty atop Group B in the T20 World Cup after beating India by 11 runs, all-but sealing their place in the semi-finals next week.\r\nBoth sides remain in pole position to progress … [+4456 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Anya Ryan",
"title": "Winner’s Curse review – Clive Anderson’s warmth can’t revive this dodo",
"description": "Park theatre, LondonThis interactive play by a former diplomat about working in negotiation feels like Debating for Dummies. Anderson’s off-script ad-libs are the sparkiest intervention‘Thanks so much for coming,” announces Clive Anderson as Hugo Leitski at t…",
"url": "https://www.theguardian.com/stage/2023/feb/14/winners-curse-review-clive-andersons-warmth-cant-revive-this-dodo",
"urlToImage": "https://i.guim.co.uk/img/media/5437e9363963e50ece2d83b3e60493d8bc332991/198_54_5648_3388/master/5648.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctcmV2aWV3LTIucG5n&enable=upscale&s=e284aa6865edd4879e154b0f55ec7a92",
"publishedAt": "2023-02-14T10:39:16Z",
"content": "Thanks so much for coming, announces Clive Anderson as Hugo Leitski at the start of Winners Curse. Hes accepting an award for his lifetime of work in negotiation. It might be an evening of celebratio… [+1983 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin at Bay Oval",
"title": "‘I am pretty blessed’: Ben Stokes praises England talents as winning run goes on",
"description": "<ul><li>Stokes says England depth will cause Ashes selection dilemmas</li><li>NZ’s Tim Southee insists there is no ‘gulf’ between the sides</li></ul>Ben Stokes described himself as a “blessed” England captain as he looked to shift credit on to the players who…",
"url": "https://www.theguardian.com/sport/2023/feb/19/i-am-pretty-blessed-ben-stokes-praises-england-talents-as-winning-run-goes-on",
"urlToImage": "https://i.guim.co.uk/img/media/55e0c243ceaa5a9470938d94a01f2e8108afa7c0/0_58_3450_2070/master/3450.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=c6288bbfbfeb48edc80031196b48fcb9",
"publishedAt": "2023-02-19T09:30:08Z",
"content": "Ben Stokes described himself as a blessed England captain as he looked to shift credit on to the players who are responding to his methods and surpassing expectations.\r\nThe tourists will head into th… [+2152 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin in Mount Maunganui",
"title": "‘It was amazing’: how Kiwi hospitality proved pivotal for ailing Anderson",
"description": "In 2008 Jimmy Anderson was 26, low on confidence and struggling to secure a spot in England’s Test side – then came an offer from Auckland …Brendon McCullum has looked to show off the very best of New Zealand’s hospitality on this whistle-stop tour of his hom…",
"url": "https://www.theguardian.com/sport/2023/feb/13/kiwi-hospitality-anderson-new-zealand-england-cricket",
"urlToImage": "https://i.guim.co.uk/img/media/d5f0bc14fc92909ac6198f6ef1eda1346f5f2d6b/0_108_3281_1970/master/3281.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=512e4ed91a98dace6e66ba1b3ea1cbfc",
"publishedAt": "2023-02-13T09:01:30Z",
"content": "Brendon McCullum has looked to show off the very best of New Zealands hospitality on this whistle-stop tour of his homeland but 15 years ago, on the other side of the divide, Englands head coach was … [+5512 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Raf Nicholson at Newlands",
"title": "South Africa stun England to reach Women’s T20 World Cup final",
"description": "<ul><li>South Africa 164-4, England 158-8, South Africa win by six runs</li><li>Ismail seals victory in final over after Brits’s brilliance with bat</li></ul>It was meant to be a walkover for England – a suggestion that had riled the South Africa captain Sune…",
"url": "https://www.theguardian.com/sport/2023/feb/24/south-africa-stun-england-to-reach-womens-t20-world-cup-final",
"urlToImage": "https://i.guim.co.uk/img/media/61c7b6df966c095164e08d7c49dffca92591fc38/94_246_3812_2288/master/3812.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=19c8b94d6ca7d23b0fe9cf722964c2a6",
"publishedAt": "2023-02-24T16:44:29Z",
"content": "It was meant to be a walkover for England a suggestion that had riled the South Africa captain Sune Luus on the day before Fridays semi-final clash between the two sides at Newlands. Oh, thats great,… [+4396 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Geoff Lemon in Nagpur",
"title": "Jadeja’s mastery gives Australia scant chance to test pitch theories | Geoff Lemon",
"description": "Claims the pitch was prepared to target Australia’s left-handers went untested as they found other, swifter ways to get outAfter the prelude came the test. Nagpur’s strange chessboard of a pitch, watered and prepared in different sections that may or may not …",
"url": "https://www.theguardian.com/sport/2023/feb/09/india-australia-cricket-first-test-ravindra-jadeja",
"urlToImage": "https://i.guim.co.uk/img/media/b28b9d9dec9080cf2877cb475613e812de2f8c43/0_7_1951_1171/master/1951.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=d7e8e008da7e2c83d378cd52f13a878b",
"publishedAt": "2023-02-09T17:06:52Z",
"content": "After the prelude came the test. Nagpurs strange chessboard of a pitch, watered and prepared in different sections that may or may not have been related to the relevant strengths and vulnerabilities … [+4427 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Ali Martin in Hamilton",
"title": "Harry Brook smashes 71-ball 97 as England pick up where they left off",
"description": "<ul><li>England all out for 465 in 69.2 overs in Hamilton tour match</li><li>Brook, Root, Lawrence and Foakes all make half-centuries</li></ul>It feels like tour matches have joined the Kākāpo on the endangered list in recent times and where they still exist …",
"url": "https://www.theguardian.com/sport/2023/feb/08/harry-brook-england-hamilton-tour-match-cricket",
"urlToImage": "https://i.guim.co.uk/img/media/0b8f6eb083aa14dd0ec2c2ed5aa44cc99935288e/0_145_4334_2601/master/4334.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=15a589d329c233635cba3a4fe27672e7",
"publishedAt": "2023-02-08T09:26:56Z",
"content": "It feels like tour matches have joined the Kkpo on the endangered list in recent times and where they still exist in the crowded international calendar, this England team appear keen to keep them sho… [+4244 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Associated Press",
"title": "Australia slump to heavy defeat inside three days as India wrap up first Test",
"description": "<ul><li>Australia 177 and 91; India 400 | India win by innings and 132 runs</li><li>Visitors lose 10 wickets in single session on day three in Nagpur</li></ul>Ravichandran Ashwin picked up his 31st five-wicket haul and sent Australia crashing to an embarrassi…",
"url": "https://www.theguardian.com/sport/2023/feb/11/australia-slump-to-heavy-defeat-inside-three-days-as-india-wrap-up-first-test-cricket",
"urlToImage": "https://i.guim.co.uk/img/media/61b34684a2eeb243804005d94206d61bd6f4c1be/0_417_3472_2083/master/3472.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=e7c161eee41665a6ba432e160a63cc3d",
"publishedAt": "2023-02-11T09:14:41Z",
"content": "Ravichandran Ashwin picked up his 31st five-wicket haul and sent Australia crashing to an embarrassing three-day defeat in the first Test against India on Saturday. Ashwin had five for 37 in 12 overs… [+2044 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "PA Media",
"title": "West Indies knock Ireland out of T20 World Cup with narrow victory",
"description": "<ul><li>Ireland 137-9; West Indies 140-4 | West Indies win by six wickets</li><li>Hayley Matthews leads West Indies to victory with one ball to spare</li></ul>Hayley Matthews’ unbeaten half-century knocked Ireland out of the T20 World Cup as the West Indies s…",
"url": "https://www.theguardian.com/sport/2023/feb/17/west-indies-knock-ireland-out-of-t20-world-cup-with-narrow-victory",
"urlToImage": "https://i.guim.co.uk/img/media/fbd0e57ab9bb314b32b8b90d01f757c94c33ee25/39_0_3662_2198/master/3662.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=a2242203a1c4d4f2528df1634ddde353",
"publishedAt": "2023-02-17T21:09:18Z",
"content": "Hayley Matthews unbeaten half-century knocked Ireland out of the T20 World Cup as West Indies secured a six-wicket victory in Cape Town.\r\nWith both teams having lost their opening two games, the meet… [+2141 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Reuters",
"title": "Chelsea hire mental skills coach Gilbert Enoka from All Blacks",
"description": "<ul><li>Club take Gilbert Enoka on short-term consultancy basis</li><li>He has worked with All Blacks since 2000 in various roles</li></ul>The All Blacks coach Gilbert Enoka, who introduced what he called a “no dickheads policy” into the New Zealand set-up, h…",