-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathmedia_data.json
More file actions
5455 lines (5454 loc) · 225 KB
/
media_data.json
File metadata and controls
5455 lines (5454 loc) · 225 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
[
{
"country": "France",
"organization": "Mediapart",
"domains": [
"mediapart.fr"
],
"description": "Mediapart is a French independent, nonprofit investigative online newspaper founded in 2008 by Edwy Plenel, a former editor-in-chief of Le Monde. It is known for its in-depth investigative journalism and operates without advertising or state subsidies, relying entirely on reader subscriptions for funding. The platform also hosts subscriber-published content in its 'The Club' section.",
"owner": "Mediapart's capital is controlled by its founding journalists, ensuring structural independence from external investors or advertisers. It is structured as a SAS (simplified joint stock company), with initial capital funded entirely by personal contributions from the founders totaling €1.325 million. Edwy Plenel, the co-founder, served as president and publishing editor until 2024, when he passed leadership to Carine Fouteau.",
"typology": "Private Independent Media"
},
{
"country": "",
"organization": "AndroidPCTV",
"domains": [
"androidpctv.com"
],
"description": "A technology website focused on reviewing and providing news about Android TV devices, TV boxes, mini PCs, and tablets. The site offers firmware updates, device reviews, and technical information about various Android-based TV boxes and streaming devices.",
"owner": "",
"typology": "Private Media"
},
{
"country": "",
"organization": "blackMORE Ops",
"domains": [
"blackmoreops.com"
],
"description": "blackMORE Ops is a technical blog and educational resource focused on cybersecurity, Kali Linux, information security, and ethical hacking. The site provides tutorials, guides, and technical documentation for security professionals and enthusiasts, with particular emphasis on Kali Linux tools and penetration testing methodologies.",
"owner": "",
"typology": "Private Media"
},
{
"country": "",
"organization": "Boiling Steam",
"domains": [
"boilingsteam.com"
],
"description": "Boiling Steam is a specialized gaming blog focused on Linux gaming and Steam Deck coverage with news, podcasts, and analysis.",
"owner": "Ekianjo",
"typology": "Private Media"
},
{
"country": "",
"organization": "Charming Science",
"domains": [
"charmingscience.com"
],
"description": "Charming Science is a science news website established in 2019 that publishes daily content focused on physics, astronomy, and technology.",
"owner": "",
"typology": "Private Media"
},
{
"country": "",
"organization": "Kali Linux Blog",
"domains": [
"kali.org"
],
"description": "Kali Linux is an open-source Debian-based Linux distribution maintained and funded by Offensive Security, specifically designed for digital forensics, penetration testing, and security auditing.",
"owner": "Offensive Security",
"typology": "Private Media"
},
{
"country": "",
"organization": "Linux Stans",
"domains": [
"linuxstans.com"
],
"description": "Linux Stans is a technical blog/website focused on providing Linux tutorials, command-line guides, and system administration content.",
"owner": "",
"typology": "Private Media"
},
{
"country": "",
"organization": "Linuxiac",
"domains": [
"linuxiac.com"
],
"description": "Linuxiac is a media platform funded by Bobby Borisov in 2020 that publishes news, reviews, and how-to articles focused on Linux and Open Source software. The site provides coverage of Linux distributions, software releases, and community projects.",
"owner": "Bobby Borisov",
"typology": "Private Media"
},
{
"country": "",
"organization": "Redmond Pie",
"domains": [
"redmondpie.com"
],
"description": "Redmond Pie is a technology web publication focused on covering news, updates, and developments related to Apple, Microsoft, Google, and Tesla. The site particularly specializes in iOS device coverage, including jailbreaking tutorials and mobile technology news.",
"owner": "",
"typology": "Private Media"
},
{
"country": "",
"organization": "Sci-News",
"domains": [
"sci.news"
],
"description": "Sci-News is a online science news platform that covers breaking developments across multiple scientific fields including physics, astronomy, biology, archaeology, and technology.",
"owner": "",
"typology": "Private Media"
},
{
"country": "",
"organization": "TechNews City",
"domains": [
"technews.city"
],
"description": "A technology news website that covers AI developments, big tech companies, and health technology.",
"owner": "",
"typology": "Private Media"
},
{
"country": "Argentina",
"organization": "BeInCrypto",
"domains": [
"beincrypto.com"
],
"description": "BeInCrypto is a cryptocurrency and blockchain industry news website that provides unbiased news coverage, market analysis, and educational content about Bitcoin, altcoins, and blockchain technology.",
"owner": "Alena Afanaseva",
"typology": "Private Media"
},
{
"country": "Australia",
"organization": "Ausdroid",
"domains": [
"ausdroid.net"
],
"description": "Ausdroid is an Australian technology news website focused on smartphones, mobile devices, accessories, and personal computing. Originally known as Android Australia, it provides reviews, news coverage, and analysis of mobile and personal technology, with a particular emphasis on the Australian market.",
"owner": "Chris Rowland",
"typology": "Private Media"
},
{
"country": "Australia",
"organization": "Cosmos Magazine",
"domains": [
"cosmosmagazine.com"
],
"description": "Cosmos Magazine is a quarterly science publication that delivers comprehensive coverage of scientific discoveries, research, and analysis across various fields including space, technology, and core sciences.",
"owner": "CSIRO",
"typology": "Private Media"
},
{
"country": "Australia",
"organization": "Crikey",
"domains": [
"www.crikey.com.au"
],
"description": "Crikey is an Australian news and analysis newsletter and website.",
"owner": "Private Media Pty Ltd",
"typology": "Private Media"
},
{
"country": "Australia",
"organization": "Nine News (9News)",
"domains": [
"www.9news.com.au"
],
"description": "Nine News is an Australian television online and news network.",
"owner": "Nine Entertainment",
"typology": "Private Media"
},
{
"country": "Australia",
"organization": "Nine Publishing",
"domains": [
"www.brisbanetimes.com.au",
"www.smh.com.au",
"www.theage.com.au"
],
"description": "Nine Publishing (formerly Fairfax Media) publishes print and online newspapers including The Sydney Morning Herald, The Age, and the Brisbane Times.",
"owner": "Nine Entertainment",
"typology": "Private Media"
},
{
"country": "Australia",
"organization": "Science Media Exchange (Scimex)",
"domains": [
"scimex.org"
],
"description": "Scimex is an online science news portal and resource platform providing breaking science news, expert connections, multimedia resources, and event listings specifically designed to help journalists cover scientific stories.",
"owner": "Australian Science Media Centre (non-profit)",
"typology": "Private Media"
},
{
"country": "Australia",
"organization": "The Conversation",
"domains": [
"theconversation.com"
],
"description": "The Conversation is a digital news and analysis platform that publishes articles written by academics and researchers, combining scholarly expertise with journalistic editing to provide in-depth coverage of current affairs, science, health, politics, and culture.",
"owner": "The Conversation Media Group Ltd",
"typology": "Private Media"
},
{
"country": "Belgium",
"organization": "Apache",
"domains": [
"de werktitel"
],
"description": "Apache is a small independent investigative journalism platform in Belgium, focusing on in-depth reporting and analysis.",
"owner": "Coöperatieve vennootschap",
"typology": "Private Media"
},
{
"country": "Belgium",
"organization": "Brussels Morning",
"domains": [
"brusselsmorning.com"
],
"description": "Brussels Morning is an online newspaper focused on EU politics and policy, providing daily coverage of European affairs, international relations, and Brussels-based EU institutions.",
"owner": "Brussels Morning Newspaper LTD",
"typology": "Private Media"
},
{
"country": "Belgium",
"organization": "De Morgen",
"domains": [
"demorgen.be"
],
"description": "De Morgen is a Flemish daily newspaper offering in-depth news analysis and cultural reporting.",
"owner": "DPG Media",
"typology": "Private Media"
},
{
"country": "Belgium",
"organization": "De Standaard",
"domains": [
"standaard.be"
],
"description": "De Standaard is a Flemish daily newspaper known for its quality journalism and in-depth news coverage.",
"owner": "Mediahuis",
"typology": "Private Media"
},
{
"country": "Belgium",
"organization": "De Tijd",
"domains": [
"tijd.be"
],
"description": "De Tijd is a Flemish business newspaper providing in-depth financial and economic news.",
"owner": "Mediafin",
"typology": "Private Media"
},
{
"country": "Belgium",
"organization": "EU Observer",
"domains": [
"euobserver.com"
],
"description": "EUobserver is an independent online newspaper established in 2000 that provides daily news coverage focused on the European Union and European affairs. It specializes in EU policy and politics reporting for a professional audience.",
"owner": "EUobserver ASBL",
"typology": "Private Media"
},
{
"country": "Belgium",
"organization": "Euronews",
"domains": [
"euronews.com"
],
"description": "Euronews is a European multilingual news channel headquartered in Brussels that broadcasts in 17 languages across Europe and beyond. It provides international news coverage, focusing on European affairs, politics, economy, and culture.",
"owner": "Alpac Capital (97.6%)",
"typology": "Private Media"
},
{
"country": "Belgium",
"organization": "Focus-WTV",
"domains": [
"focus-wtv.be"
],
"description": "Focus-WTV is a regional television station in West Flanders, Belgium, offering local news and entertainment.",
"owner": "Roularta Media Group",
"typology": "Private Media"
},
{
"country": "Belgium",
"organization": "Gazet van Antwerpen",
"domains": [
"gva.be"
],
"description": "Gazet van Antwerpen is a regional newspaper in Belgium, focusing on news from the Antwerp region.",
"owner": "Mediahuis",
"typology": "Private Media"
},
{
"country": "Belgium",
"organization": "Het Belang van Limburg",
"domains": [
"hbvl.be"
],
"description": "Het Belang van Limburg is a regional newspaper in Belgium, providing news coverage for the Limburg region.",
"owner": "Mediahuis",
"typology": "Private Media"
},
{
"country": "Belgium",
"organization": "Het Laatste Nieuws",
"domains": [
"hln.be"
],
"description": "Het Laatste Nieuws is a popular Flemish daily newspaper known for its comprehensive news coverage and entertainment content.",
"owner": "DPG Media",
"typology": "Private Media"
},
{
"country": "Belgium",
"organization": "Het Nieuwsblad",
"domains": [
"nieuwsblad.be"
],
"description": "Nieuwsblad is a Flemish daily newspaper offering a mix of news, sports, and entertainment content.",
"owner": "Mediahuis",
"typology": "Private Media"
},
{
"country": "Belgium",
"organization": "Knack",
"domains": [
"knack.be"
],
"description": "Knack is a Flemish weekly news magazine offering investigative journalism and in-depth analysis.",
"owner": "Roularta Media Group",
"typology": "Private Media"
},
{
"country": "Belgium",
"organization": "La Libre Belgique",
"domains": [
"lalibre.be"
],
"description": "La Libre Belgique is a French-language daily newspaper in Belgium, known for its independent news coverage and analysis.",
"owner": "IPM Group",
"typology": "Private Media"
},
{
"country": "Belgium",
"organization": "Le Soir",
"domains": [
"lesoir.be"
],
"description": "Le Soir is a leading French-language daily newspaper in Belgium, providing comprehensive news coverage and analysis.",
"owner": "Rossel Group",
"typology": "Private Media"
},
{
"country": "Belgium",
"organization": "Sudinfo",
"domains": [
"sudinfo.be"
],
"description": "Sudinfo is a French-language news platform providing local and national news coverage in Belgium.",
"owner": "Rossel Group",
"typology": "Private Media"
},
{
"country": "Bulgaria",
"organization": "CryptoPotato",
"domains": [
"cryptopotato.com"
],
"description": "CryptoPotato is a cryptocurrency news and analysis website that provides daily coverage of Bitcoin and other digital currencies, including price analysis, trading guides, market updates, and educational content for both beginners and experienced crypto traders.",
"owner": "George Georgiev",
"typology": "Private Media"
},
{
"country": "Canada",
"organization": "CryptoCurrencyNews",
"domains": [
"cryptocurrencynews.com"
],
"description": "CryptoCurrencyNews is a digital media outlet focused on cryptocurrency news, market analysis, and trends. The platform provides coverage of Bitcoin, Ethereum, blockchain technology, and other digital assets, offering market updates, price analysis, and industry developments for cryptocurrency investors and enthusiasts.",
"owner": "Market Jar Media Inc.",
"typology": "Private Media"
},
{
"country": "Canada",
"organization": "MobileSyrup",
"domains": [
"mobilesyrup.com"
],
"description": "MobileSyrup is a Canadian technology news website focused on mobile technology, smartphones, and general tech coverage. The platform specializes in providing news, reviews, and coverage of the Canadian mobile and tech industry, with particular emphasis on local market analysis, device reviews, and telecom plan comparisons.",
"owner": "Blue Ant Media",
"typology": "Private Media"
},
{
"country": "Canada",
"organization": "The Globe and Mail",
"domains": [
"theglobeandmail.com"
],
"description": "The Globe and Mail is Canada's national newspaper of record, providing comprehensive coverage of national, international, business, and political news since 1844. The publication offers both print and digital formats, featuring investigative journalism, analysis, and commentary across multiple beats including politics, business, arts and culture.",
"owner": "Thomson Family",
"typology": "Private Media"
},
{
"country": "Canada",
"organization": "TheGamer",
"domains": [
"thegamer.com"
],
"description": "TheGamer is a digital gaming publication founded in 2017 that provides video game news, reviews, guides, and opinion pieces. The website produces content covering gaming industry news, in-depth game guides, reviews, and analysis across multiple gaming platforms.",
"owner": "Valnet Inc.",
"typology": "Private Media"
},
{
"country": "Canada",
"organization": "Winnipeg Free Press",
"domains": [
"winnipegfreepress.com"
],
"description": "The Winnipeg Free Press is a daily broadsheet newspaper based in Winnipeg, Manitoba, that publishes every day except Sunday. It provides local, national and international coverage through print and digital platforms for the Winnipeg metropolitan area.",
"owner": "FP Canadian Newspapers Limited Partnership",
"typology": "Private Media"
},
{
"country": "China",
"organization": "36Kr",
"domains": [
"36kr.com"
],
"description": "36Kr is a publicly listed Chinese media company that focuses on technology and financial news. It also is a data provider for entrepreneurs and investors.It has been referred to as China's equivalent of TechCrunch.",
"owner": "36Kr Holdings Inc.",
"typology": "Private Media"
},
{
"country": "China",
"organization": "IT Home",
"domains": [
"ithome.com"
],
"description": "IT Home, a technology portal under Qingdao Ruanmei, delivers fast updates on tech industry headlines and reviews of mobile and digital products. It keeps a close watch on smart cars, electric vehicles, AR/VR, virtual reality, Apple iOS/iPadOS, HarmonyOS, Google Android, Microsoft Windows 11/10/7, while tracking the latest trends in digital gadgets like iPhones, iPads, and Android smart devices.",
"owner": "Qingdao Ruanmei Network Technology Co., Ltd.",
"typology": "Private Media"
},
{
"country": "Croatia",
"organization": "Fudzilla",
"domains": [
"fudzilla.com",
"fudzilla.net"
],
"description": "Fudzilla is a technology news website focused on hardware reviews, semiconductor industry news, and general tech coverage, with particular emphasis on PC components, processors, and graphics cards. The site publishes daily news updates and detailed technical reviews targeting tech enthusiasts and industry professionals.",
"owner": "Fuad Abazovic",
"typology": "Private Media"
},
{
"country": "Cyprus",
"organization": "The Currency Analytics",
"domains": [
"thecurrencyanalytics.com"
],
"description": "The Currency Analytics is a cryptocurrency news and analysis website that provides coverage of crypto markets, blockchain technology, and altcoins.",
"owner": "Sydney Ifergan",
"typology": "Private Media"
},
{
"country": "Czech Republic",
"organization": "Lisenet",
"domains": [
"lisenet.com"
],
"description": "Lisenet is a technical blog focused on Linux systems administration, security, networking, and IT infrastructure. The site provides study guides for professional certifications like RHCE and LPIC, along with practical tutorials and guides on Kubernetes, Docker, and system administration.",
"owner": "Tomas Nevar",
"typology": "Private Media"
},
{
"country": "Estonia",
"organization": "Äripäev",
"domains": [
"aripaev.ee"
],
"description": "Äripäev is Estonia's leading business newspaper and news portal focused on business, financial and economic news coverage. Founded in 1989, it provides in-depth reporting and analysis of Estonian and international business developments.",
"owner": "Bonnier Group",
"typology": "Private Media"
},
{
"country": "Estonia",
"organization": "Delfi",
"domains": [
"delfi.ee"
],
"description": "Delfi is one of Estonia's largest news portals providing news coverage in Estonian, English, Lithuanian, Latvian, Polish and Russian languages. The platform offers real-time news updates, opinion pieces, and multimedia content covering local and international affairs.",
"owner": "Ekspress Grupp",
"typology": "Private Media"
},
{
"country": "Estonia",
"organization": "Postimees",
"domains": [
"pmo.ee",
"postimees.ee"
],
"description": "Postimees is Estonia's oldest and largest daily newspaper, founded in 1857. It provides comprehensive coverage of national and international news, politics, business, and culture through Estonian, English and Russian language editions.",
"owner": "MM Grupp",
"typology": "Private Media"
},
{
"country": "Finland",
"organization": "Helsingin Sanomat",
"domains": [
"hs.fi"
],
"description": "Helsingin Sanomat is Finland's largest subscription newspaper and the Nordic countries' largest daily newspaper. Founded in 1889, it is based in Helsinki and covers national and international news, politics, business, culture, and sports. The newspaper maintains Finland's highest circulation and is considered the country's newspaper of record.",
"owner": "Sanoma Corporation",
"typology": "Private Media"
},
{
"country": "Finland",
"organization": "Ilta-Sanomat",
"domains": [
"is.fi"
],
"description": "Ilta-Sanomat is Finland's largest tabloid newspaper, published by Sanoma. Founded in 1932, it is an afternoon and evening paper that covers general news, entertainment, sports, and celebrity content. Despite its tabloid format, it also provides substantial coverage of domestic and international news.",
"owner": "Sanoma Corporation",
"typology": "Private Media"
},
{
"country": "Finland",
"organization": "Kauppalehti",
"domains": [
"kauppalehti.fi"
],
"description": "Kauppalehti is Finland's leading business and financial newspaper, established in 1898. It provides comprehensive coverage of business news, financial markets, economics, and corporate developments in Finland and internationally. The publication serves as the primary source of business news for Finnish professionals and investors.",
"owner": "Alma Media Corporation",
"typology": "Private Media"
},
{
"country": "Finland",
"organization": "MTV Uutiset",
"domains": [
"mtvuutiset.fi"
],
"description": "MTV Uutiset is the news division of MTV (Mainos-TV), Finland's first commercial television channel. It provides 24-hour news coverage through its website and television broadcasts, covering domestic and international news, sports, weather, and current affairs. MTV Uutiset is one of Finland's major commercial news providers.",
"owner": "MTV Oy (Telia Company)",
"typology": "Private Media"
},
{
"country": "Finland",
"organization": "Suomen Kuvalehti",
"domains": [
"suomenkuvalehti.fi"
],
"description": "Suomen Kuvalehti is Finland's leading weekly news magazine, established in 1916. It provides in-depth analysis and coverage of politics, society, culture, and current affairs. The magazine is known for its investigative journalism and comprehensive feature articles about Finnish and international events.",
"owner": "Otavamedia",
"typology": "Private Media"
},
{
"country": "France",
"organization": "20 Minutes (France)",
"domains": [
"20minutes.fr"
],
"description": "20 Minutes is a general news media outlet distributed in France, Spain, and Switzerland. The French website is published by the company 20 Minutes France.",
"owner": "20 Minutes is currently co-owned by the SIPA - Ouest-France group (50%, through its subsidiaries Spir Communication and Sofiouest, which each hold a quarter of the capital)[43] and by the Rossel Group (50%).",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Artemis",
"domains": [
"lepoint.fr",
"pointdevue.fr"
],
"description": "Le Point is a magazine focused on political, economic, and cultural news, known for its in-depth analyses and debates. It has a traditionally right-leaning editorial line, with a conservative and liberal approach to various societal and economic issues. Point de Vue is a people newspaper.",
"owner": "Famille Pinault via Arttemis",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Bayard",
"domains": [
"bayard.eu",
"la-croix.com",
"notretemps.com",
"pelerin.com"
],
"description": "La Croix is a national daily newspaper covering general news, society and culture from a Christian perspective. It is the flagship news brand of Bayard.",
"owner": "Bayard (owned by the Augustinians of the Assumption)",
"typology": "Private Media"
},
{
"country": "France",
"organization": "CMA Media",
"domains": [
"brut.media",
"corsematin.com",
"laprovence.com",
"latribune.com"
],
"description": "CMA Media est un groupe de médias français, filiale de l'armateur français CMA CGM.",
"owner": "CMA Media (CMA CGM)",
"typology": "Private Media"
},
{
"country": "France",
"organization": "CMI France",
"domains": [
"cmi-france.fr",
"marianne.net"
],
"description": "Marianne is a weekly current affairs magazine with a republican and sovereigntist editorial line. It offers politics, society and culture coverage with both print and digital editions.",
"owner": "CMI France (part of International Media Invest – Daniel Křetínský)",
"typology": "Private Media"
},
{
"country": "France",
"organization": "CMI France",
"domains": [
"elle.fr",
"femina.fr",
"francedimanche.fr",
"loopsider.com",
"programme-television.org",
"usbeketrica.com"
],
"description": "Czech Media Invest (CMI) is a Czech holding company controlling one of the largest Czech press groups, Czech News Center. CMI is mainly owned by Daniel Křetínský and Patrik Tkáč, via another holding company, EP Corporate Group. It offers politics, society and culture coverage with both print and digital editions.",
"owner": "CMI France (part of International Media Invest – Daniel Křetínský)",
"typology": "Private Media"
},
{
"country": "France",
"organization": "CMI France",
"domains": [
"franc-tireur.fr"
],
"description": "Founded in 2021 by Caroline Fourest and Raphaël Enthoven, Franc-Tireur is a combative journal that employs a team of sharp editorialists to critically analyze weekly news and controversies, aiming to expose propagandas, misinformation, and deceits. It stands firmly against populism, conspiracy theories, racism, extremism, and all forms of identity-based extremism.",
"owner": "CMI France (part of International Media Invest – Daniel Křetínský)",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Groupe Canal+",
"domains": [
"canalplus.com",
"canalplus.fr",
"cnews.fr"
],
"description": "The Canal+ group is a French multinational company active in the media and telecommunications sector, founded in 1984 and controlled by the Bolloré group since 2012.",
"owner": "Vincent Bolloré via Vivendi",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Groupe EBRA",
"domains": [
"bienpublic.com",
"dna.fr",
"estrepublicain.fr",
"lalsace.fr",
"ledauphine.com",
"lejsl.com",
"leprogres.fr",
"republicain-lorrain.fr",
"vosgesmatin.fr"
],
"description": "EBRA is a leading French regional press group that publishes nine daily newspapers across Eastern and Southeastern France. Its titles focus on local news with robust digital operations.",
"owner": "Groupe EBRA (owned by Crédit Mutuel Alliance Fédérale)",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Groupe Figaro",
"domains": [
"ariase.com",
"commentcamarche.com",
"commentcamarche.net",
"gala.fr",
"journaldesfemmes.fr",
"journaldunet.com",
"lefigaro.fr",
"leparticulier.fr",
"linternaute.com",
"meteoconsult.fr",
"phonandroid.com",
"tvmag.com"
],
"description": "The Figaro Group, previously Dassault Media, is a French media company founded in 1826 that owns Le Figaro and operates in various sectors. Owned by the Dassault family,",
"owner": "Groupe Dassault",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Groupe La Dépêche du Midi",
"domains": [
"centrepresseaveyron.fr",
"ladepeche.fr",
"nrpyrenees.fr",
"petitbleu.fr"
],
"description": "La Dépêche du Midi is a historic regional daily based in Toulouse covering Occitanie and surrounding areas. The group operates several local titles and digital editions.",
"owner": "Groupe La Dépêche du Midi (Baylet family)",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Groupe La Montagne",
"domains": [
"centrepresseaveyron.fr",
"lamontagne.fr",
"larep.fr",
"leberry.fr",
"lechorepublicain.fr",
"lejdc.fr",
"lepays.fr",
"lepopulaire.fr",
"leveil.fr",
"lyonnne.fr"
],
"description": "La Montagne is a regional daily newspaper based in Clermont-Ferrand, covering the Auvergne region. It is part of the Groupe Centre France.",
"owner": "Groupe Centre France (family-owned)",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Groupe Le Monde",
"domains": [
"huffingtonpost.fr",
"lavie.fr",
"lemonde.fr",
"monde-diplomatique.fr",
"nouvelobs.com",
"telerama.fr"
],
"description": "Le Monde is a French daily afternoon newspaper founded after WWII, known for its center-left editorial stance and comprehensive coverage of international, national, economic, and cultural news.",
"owner": "Le Monde Group is held by: the holding company Le Monde Libre up to 75%, and by the Pôle d'Independance du Monde up to 25%. Le Monde Libre is owned by Le Nouveau Monde (Matthieu Pigasse and Daniel Kretinsky) (26.66%), NJJ Presse (Xavier Niel) (26.66%), Berlys Media (Madison Cox) (26.66%), Prisa (20%)",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Groupe Les Échos - Le Parisien",
"domains": [
"boursier.com",
"connaissancedesarts.com",
"historia.fr",
"investir.fr",
"leparisien.fr",
"lesechos.fr",
"lopinion.fr",
"mezzo.tv",
"radioclassique.fr"
],
"description": "The Groupe Les Échos-Le Parisien is a French media conglomerate owned by LVMH, specializing in newspapers, magazines, radio, and digital platforms. It includes notable publications like Les Échos, Le Parisien, and Connaissance des Arts, along with radio stations and online portals.",
"owner": "Bernard Arnaud",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Groupe Nice-Matin",
"domains": [
"monacomatin.mc",
"nicematin.com",
"varmatin.com"
],
"description": "Var-Matin is the local daily of the Var department, part of the Nice-Matin group alongside Nice-Matin and Monaco-Matin. The group operates strong regional digital platforms.",
"owner": "Groupe Nice-Matin (100% NJJ Holding – Xavier Niel)",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Groupe Sipa Ouest France",
"domains": [
"actu.fr",
"chasse-maree.com",
"courrierdelouest.fr",
"francelive.fr",
"maville.com",
"ouest-france.fr",
"publihebdos.com"
],
"description": "Ouest-France is generally considered a regional daily with a centrist editorial line, rooted in the principles of humanism, Christian democracy, and social liberalism.",
"owner": "The group Ouest-France is the property of the Association pour le soutien des principes de la démocratie humaniste (ASPDH), which underscores its commitment to these values.",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Groupe Sud Ouest",
"domains": [
"charentelibre.fr",
"dordognelibre.fr",
"larepubliquedespyrenees.fr",
"sudouest.fr"
],
"description": "The Sud Ouest Group (GSO) is a major regional press publisher based in Bordeaux, covering southwestern France with its flagship newspaper Sud Ouest.",
"owner": "Lemoîne family (80%), journalists and staff each own 10%.",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Groupe Telegramme",
"domains": [
"letelegramme.fr"
],
"description": "Launched in 1944, Le Télégramme is, in 2023-2024, the fourth largest French regional daily",
"owner": "Famille Coudurier",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Humanoid",
"domains": [
"frandroid.com",
"humanoid.fr",
"madmoizelle.com",
"numerama.com"
],
"description": "Humanoid Group edits several digital media brands including Numerama, Frandroid, and Madmoizelle, focusing on technology, culture, and lifestyle. It is known for its innovative approach to digital journalism.",
"owner": "Groupe EBRA (owned by Crédit Mutuel Alliance Fédérale)",
"typology": "Private Media"
},
{
"country": "France",
"organization": "L'Express",
"domains": [
"lexpress.fr"
],
"description": "L'Express is a well-established French newspaper with a centrist political leaning, known for its comprehensive coverage of European affairs, science, health, economics, and politics. It provides in-depth analysis and reliable information, earning a reputation for quality journalism among its influential readership.",
"owner": "Alain Weill",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Lagardère Live",
"domains": [
"elle.fr",
"europe1.fr",
"europe2.fr",
"lejdd.fr",
"lejdnews.fr",
"rfm.fr"
],
"description": "The Canal+ group is a French multinational company active in the media and telecommunications sector, founded in 1984 and controlled by the Bolloré group since 2012.",
"owner": "Vincent Bolloré via Vivendi 63%, Arnaud Lagardère 11%",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Le Canard enchaîné",
"domains": [
"lecanardenchaine.fr"
],
"description": "Le Canard enchaîné is a weekly satirical and investigative newspaper founded in 1915. It carries no advertising and is known for editorial independence.",
"owner": "Employee/shareholder-owned company",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Le Gorafi",
"domains": [
"legorafi.fr"
],
"description": "Le Gorafi is a French satirical 'news' website launched in 2012 that publishes parody articles. It mimics news formats to comment humorously on current events.",
"owner": "DC Company (media group)",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Le Média Positif",
"domains": [
"lemediapositif.com"
],
"description": "Le Média Positif is a 'good news' media brand highlighting positive initiatives, innovation and inspiring stories. It grew primarily through social platforms before developing its site.",
"owner": "Le Média Positif (independent publisher)",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Les Jours SAS",
"domains": [
"lesjours.fr"
],
"description": "Les Jours is an ad-free, subscription-based digital media outlet created by former journalists from Libération. It publishes long-form reporting organized into thematic ‘series’.",
"owner": "Les Jours SAS (founders, staff and reader-shareholders)",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Presse Antilles Guyane",
"domains": [
"franceantilles.fr",
"franceguyane.fr",
"guadeloupe.franceantilles.fr",
"martinique.franceantilles.fr"
],
"description": "France Antilels Guyane group operates newspaper and regional digital platforms in France overseas territories.",
"owner": "Groupe Presse Antilles Guyane (100% NJJ Holding – Xavier Niel)",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Prisma Media",
"domains": [
"caminteresse.fr",
"capital.fr",
"cesoirtv.com",
"cotemaison.fr",
"croq-kilos.com",
"cuisineactuelle.fr",
"cuisineaz.com",
"deco.fr",
"femmeactuelle.fr",
"flowmagazine.fr",
"fourchette-et-bikini.fr",
"geo.fr",
"harpersbazaar.fr",
"hbrfrance.fr",
"ideat.fr",
"meteocity.com",
"milkdecoration.com",
"nationalgeographic.fr",
"passeportsante.net",
"programme.tv",
"thegoodlife.fr",
"turbo.fr",
"voici.fr"
],
"description": "Prisma Media is a French media group specializing in popular press, covering diverse fields such as news, fashion, lifestyle, and leisure. It owns several iconic brands, including Femme Actuelle, Voici, Capital, and Nationalgeopgraphic France.",
"owner": "Vincent Bolloré via Vivendi",
"typology": "Private Media"
},
{
"country": "France",
"organization": "RMC Media",
"domains": [
"bfm.com",
"bfmtv.com"
],
"description": "RMC BFM, initially NextRadio, NextRadioTV, and then Altice Média, is a French media group, a subsidiary of the French shipping company CMA CGM through its subsidiary CMA Media.",
"owner": "CMA Media (CMA CGM)",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Rossel France",
"domains": [
"courrier-picard.fr",
"lavoixdunord.fr",
"lepharedunkerquois.fr",
"lindicateurdesflandres.fr",
"lunion.fr",
"nordlittoral.fr"
],
"description": "La Voix du Nord is a regional daily newspaper based in Lille, covering northern France. It is part of the Groupe Voix du Nord.",
"owner": "Groupe Rossel (Belgian media group) )",
"typology": "Private Media"
},
{
"country": "France",
"organization": "SARL Libération",
"domains": [
"libe.com",
"libe.fr",
"liberation.fr"
],
"description": "Libération is a French daily newspaper known for its progressive and left-leaning political stance. It often focuses on investigative journalism, social issues, and cultural topics, maintaining a critical perspective on traditional institutions and power structures.",
"owner": "Presse Independante SAS",
"typology": "Private Media"
},
{
"country": "France",
"organization": "Slate.fr SAS",
"domains": [
"slate.fr"
],
"description": "Slate.fr is the French edition of the Slate web magazine, with its own newsroom and editorial leadership. It covers politics, society, culture and ideas with analysis and commentary.",
"owner": "Slate.fr SAS (French investors; historically with a minority stake from The Slate Group, U.S.)",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "Augsburger Allgemeine",
"domains": [
"augsburger-allgemeine.de"
],
"description": "The Augsburger Allgemeine is a regional daily newspaper based in Augsburg, Bavaria, publishing since 1807. It provides comprehensive local and national news coverage for the Augsburg region and surrounding areas, with both print and digital formats.",
"owner": "Mediengruppe Pressedruck (Presse-Druck- und Verlags-GmbH)",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "Berliner Morgenpost",
"domains": [
"morgenpost.de"
],
"description": "Berliner Morgenpost is a daily newspaper founded in 1898 and based in Berlin. It is one of Berlin's most-read daily newspapers.",
"owner": "Funke Mediengruppe",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "CORRECTIV",
"domains": [
"correctiv.org"
],
"description": "CORRECTIV is a non-profit investigative newsroom, focusing on investigative journalism, fact-checking, and cross-border investigations.",
"owner": "Non-Profit GmbH (David Schraven and Jeannette Gusko as management)",
"typology": "Private Media"
},
{
"country": "Germany",
"organization": "Der Spiegel Online",
"domains": [