This repository has been archived by the owner on Jan 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkiwix.yml
982 lines (982 loc) · 37.7 KB
/
kiwix.yml
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
all:
wikipedia_mg_all:
name: Wikipedia
description: "Avy amin'i Wikipedia"
version: "2019-05-04"
language: "mlg"
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_mg_all_novid_2019-05.zim"
size: 204820140
sha256sum: "ef6b6366f2f4d9cde4bdb58302067746e8005c8fc5b614da5407986cdb6bab61"
type: zim
wikipedia_pl_all:
name: Wikipedia
description: "Z Wikipedii, wolnej encyklopedii"
version: "2018-07-01"
language: "pol"
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_pl_all_novid_2018-07.zim"
size: 15151621435
sha256sum: "cb8dfdfd7735bfb7d0528fa6ed9a2e7910384e6bb5278d9f0f8e442cb84c7a45"
type: zim
wiktionary_es:
name: Wikcionario
description: "De Wikcionario, el diccionario libre"
version: "2018-10-01"
language: "esp"
url: "http://download.kiwix.org/zim/wiktionary/wiktionary_es_all_novid_2018-10.zim"
size: 574453676
sha256sum: "58e9b0ed4fb3aa37be417d3973a23dde4a50d58ddaa9fea4986afc86747ae2a3"
type: zim
wiktionary_ti:
name: Wiktionary
description: "From Wiktionary"
version: "2019-04-01"
language: "tir"
url: "http://download.kiwix.org/zim/wiktionary/wiktionary_ti_all_novid_2019-04.zim"
size: 386679
sha256sum: "965a31a8c39dadc467de1d5462d7239adc59c3302e31c08848747679636e4b5c"
type: zim
wikipedia_ti_all:
name: Wikipedia
description: "From Wikipedia"
version: "2019-04-01"
language: "tir"
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_ti_all_novid_2019-04.zim"
size: 2346823
sha256sum: "bbbdb5b3c7e52598db7b56b6a2f71fd9b85e3c9e12f447cebc7dcacd41918ded"
type: zim
wikipedia_en_all:
version: "2018-09-26"
size: 82927821201
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_en_all_novid_2018-06.zim"
name: Wikipedia
language: "eng"
description: The free encyclopedia
sha256sum: "fe6943e6311177a0f4647435c0a3dd6e3c34c1d391dcdbc540bc335faa731cef"
type: zim
wikipedia_fr_all:
version: "2019-09-21"
size: 33856231383
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_fr_all_maxi_2019-09.zim"
name: Wikipédia
language: "fra"
description: L'encyclopédie libre.
sha256sum: "7ae184ff6cf31ccabd1c14056b4bebb6776e7a458681eed0a17be70bb3f63bd6"
type: zim
wikipedia_rn_all:
version: "2019-04-01"
size: 4394703
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_rn_all_novid_2019-04.zim"
name: Wikipedia
language: "run"
description: The free encyclopedia
sha256sum: "9bdaffd880ed42b22cb8b22f86b4efe112efddcd981620c1861322c44d283a3f"
type: zim
wiktionary.en:
version: "2018-06-01"
url: "http://download.kiwix.org/zim/wiktionary/wiktionary_en_all_novid_2018-06.zim"
name: Wiktionary
language: "eng"
description: The free dictionary
size: 4408344149
sha256sum: "647fd52be8e415068b5a344eb62c7873a4134cc0b6b72a74cf05dad0969365a7"
type: zim
wiktionary_fr:
version: "2018-07-11"
size: 2497389411
url: "http://download.kiwix.org/zim/wiktionary/wiktionary_fr_all_novid_2018-07.zim"
name: Wiktionnaire
language: "fra"
description: Définition, traduction, prononciation, anagramme et synonyme sur le dictionnaire libre Wiktionnaire.
sha256sum: "f366f4de49bd476499231894aca1a10e74753a9635bc38acfe93fd572dc76b61"
type: zim
wikiversity_en:
version: "2019-07-25"
size: 2121264110
url: "http://download.kiwix.org/zim/wikiversity/wikiversity_en_all_novid_2019-07.zim"
name: Wikiversity
language: "eng"
description: Tutorials and courses for the fostering of learning.
sha256sum: "93117eeb4bbe27b93e77b9985a31d7293d242a366f6999770403d59634b2c422"
type: zim
wikiversity_fr:
version: "2019-07-25"
size: 466776348
url: "http://download.kiwix.org/zim/wikiversity/wikiversity_fr_all_novid_2019-07.zim"
name: Wikiversité
language: "fra"
description: "Une page de Wikiversité."
sha256sum: "01c795727b1028f7f8ec71cd03f245006b9ed538de64f767e437590b404572fc"
type: zim
wikibooks_en:
version: "2019-05-01"
size: 1482194864
url: "http://download.kiwix.org/zim/wikibooks/wikibooks_en_all_novid_2019-05.zim"
name: Wikibooks
language: "eng"
description: Open books for an open world
sha256sum: "366a58c4de8d9824e859421546f243a4a9067c8c962f798c6ba8b8a4a9b4f4f8"
type: zim
wikibooks_fr:
version: "2019-03-01"
size: 878617865
url: "http://download.kiwix.org/zim/wikibooks/wikibooks_fr_all_novid_2019-03.zim"
name: Wikilivres
language: "fra"
description: Bibliothèque de livres pédagogiques libres.
sha256sum: "400fa8bd4325b767018bb72f1f435db7d012eeef47141fd62b9d3934c31a3ec3"
type: zim
wikibooks_es:
version: "2019-05-01"
size: 263373444
url: "http://download.kiwix.org/zim/wikibooks/wikibooks_es_all_novid_2019-05.zim"
name: Wikilibros
language: "esp"
description: De Wikilibros, la colección de libros de texto de contenido libre.
sha256sum: "57ce45708300124e4cccf2aa567076e0c831c14c3b39bcf7c7ffe45794c52fc7"
type: zim
wikisource_en:
version: "2018-09-17"
size: 15979435291
url: "http://download.kiwix.org/zim/wikisource/wikisource_en_all_novid_2018-10.zim"
name: Wikisource
language: "eng"
description: Digital library of free content textual sources.
sha256sum: "154f3bca72ba57c6b008b377e2bdf5b0416e1306e47436f812d727ff663b97a8"
type: zim
wikisource_fr:
version: "2018-10-01"
size: 11149172978
url: "http://download.kiwix.org/zim/wikisource/wikisource_fr_all_novid_2018-10.zim"
name: Wikisource
language: "fra"
description: "La bibliothèque libre."
sha256sum: "9e7128672737c5211fc036d7e266cd89e81f3422560fe0375f40150fdc07bca1"
type: zim
cest-pas-sorcier_fr_all:
version: "2018-06-01"
size: 43947240377
url: "http://download.kiwix.org/zim/other/cest-pas-sorcier_fr_all_2018-06.zim"
name: "C'est pas sorcier"
language: "fra"
description: "C'est pas sorcier videos"
sha256sum: "bf310a246d26dc2922d6b4580f00575045b2d8d426b6d592f94424d9e4e99de3"
type: zim
gutenberg_en_all:
version: "2019-01-08"
size: 56913027120
url: "http://download.kiwix.org/zim/gutenberg/gutenberg_en_all_2018-07.zim"
name: Project Gutenberg Library (english)
language: "eng"
description: "Project Gutenberg offers free ebook (epub and pdf)"
sha256sum: "a34bfda053ffc8db762795f6a1e7cabc8e4831665d7093f9bfb80a2b012ac57c"
type: zim
gutenberg_fr_all:
version: "2018-10-01"
size: 2922433683
url: "http://download.kiwix.org/zim/gutenberg/gutenberg_fr_all_2018-10.zim"
name: Project Gutenberg Library (french)
language: "fra"
description: "Le Projet Gutenberg offre des livres électroniques gratuits à télécharger sur votre PC"
sha256sum: "73fa886a1f6e85670dc4e815c4b06861278be34ea3231c28c889b27e9deb43da"
type: zim
ubuntudoc_fr_all:
version: "2015-12-16"
size: 490016695
url: "http://download.kiwix.org/zim/other/ubuntudoc_fr_all_2015-12.zim"
name: Documentation Ubuntu Française
language: "fra"
description: "Version hors ligne du wiki: doc.ubuntu-fr.org"
sha256sum: "700859c66e28bb248cf72f888a2b703689920a322bd50963c5d87a6feebfb67a"
type: zim
universcience-tv_fr_all:
version: "2015-03-21"
size: 14036496108
url: "http://download.kiwix.org/zim/other/universcience-tv_fr_all_2015-03.zim"
name: universcience tv
language: "fra"
description: "universcience tv videos"
sha256sum: "edc3bd4db658c40b98c0d9db4008a96a0b76d172948d61f87b65a1177b85fc18"
type: zim
tedxgeneva-2014_fr_all:
version: "2015-03-18"
size: 274721055
url: "http://download.kiwix.org/zim/ted/tedxgeneva-2014_fr_all_2015-03.zim"
name: TEDxGeneva 2014
language: "fra"
description: "TEDxGeneva 2014 videos"
sha256sum: "ecebf5ae507a93dc6289acdf1fa57bb51cc7428f5e7d9f0bcd440fc4f0ae4717"
type: zim
tedxlausanne2012.fr:
version: "2015-03-18"
size: 260936006
url: "http://download.kiwix.org/zim/ted/tedxlausanne-2012_fr_all_2015-03.zim"
name: TEDxLausanne 2012
language: "fra"
description: "TEDxLausanne 2012 videos"
sha256sum: "99d18c8202a67116c614cb92bad1525de8443e4cfa58db944e2e7437c3825182"
type: zim
tedxlausanne2013.fr:
version: "2015-03-19"
size: 372562819
url: "http://download.kiwix.org/zim/ted/tedxlausanne-2013_fr_all_2015-03.zim"
name: TEDxLausanne 2013
language: "fra"
description: "TEDxLausanne 2013 videos"
sha256sum: "dabcf32104ecc4d158fc5cf20fbd90a90590b4337bde5a029d3aef592bb7ed4a"
type: zim
tedxlausanne-2014_fr_all:
version: "2015-03-19"
size: 326564245
url: "http://download.kiwix.org/zim/ted/tedxlausanne-2014_fr_all_2015-03.zim"
name: TEDxLausanne 2014
language: "fra"
description: "TEDxLausanne 2014 videos"
sha256sum: "5bf3d7cedfbfca2163b590bb41c514e82a1e6771914f26ff7e5d65aab00684a1"
type: zim
tedxlausannechange-2013_fr_all:
version: "2015-03-19"
size: 81826026
url: "http://download.kiwix.org/zim/ted/tedxlausannechange-2013_fr_all_2015-03.zim"
name: TEDxLausanneChange 2013
language: "fra"
description: "TEDxLausanneChange 2013 videos"
sha256sum: "fa41273c9788eff16b779bd4551c0dc2737db20bbad52318fd4815a2e1c781a2"
type: zim
ted_business:
version: "2018-07-01"
size: 8855827638
url: "http://download.kiwix.org/zim/ted/ted_en_business_2018-07.zim"
name: TED talks - Business
language: "eng"
description: A collection of TED Talks (and more) on the topic of business.
sha256sum: "276bc6b84c92e0078ed502ba0dd61c7929280cdcdc65887860143329f508b544"
type: zim
ted_design:
version: "2018-07-01"
size: 9422760069
url: "http://download.kiwix.org/zim/ted/ted_en_design_2018-07.zim"
name: TED talks - Design
language: "eng"
description: A collection of TED Talks (and more) on the topic of design.
sha256sum: "5dd8135a66a641d9c8e493ca32d6e9dd14edf5b6a2fd204d9a30e5e8ed02aede"
type: zim
ted-entertainment:
version: "2018-07-01"
size: 7692549643
url: "http://download.kiwix.org/zim/ted/ted_en_entertainment_2018-07.zim"
name: TED Entertainment
language: "eng"
description: A collection of TED Talks (and more) on the topic of entertainment.
sha256sum: "79c0e0aa126f79b6a63536b7f0d811c7164fd546b37ca20331bff1be640bcd6d"
type: zim
ted_global_issues:
version: "2018-07-01"
size: 13152845922
url: "http://download.kiwix.org/zim/ted/ted_en_global_issues_2018-07.zim"
name: TED Global issues
language: "eng"
description: A collection of TED Talks (and more) on the topic of global issues.
sha256sum: "c8b1d5ce6c8fa246dd823bd675fe6cb05192e41a83c8c843115a3a3b632a2544"
type: zim
ted_science:
version: "2018-07-23"
size: 14423097016
url: "http://download.kiwix.org/zim/ted/ted_en_science_2018-07.zim"
name: TED talks - Science
language: "eng"
description: A collection of TED Talks (and more) on the topic of science.
sha256sum: "84a0849f0410f9d3047896d6e34f007ca84c3f8e04cea1e95ee2f4e7953acdd6"
type: zim
ted_technology:
version: "2018-07-23"
size: 17780841466
url: "http://download.kiwix.org/zim/ted/ted_en_technology_2018-07.zim"
name: TED Technology
language: "eng"
description: A collection of TED Talks (and more) on the topic of technology.
sha256sum: "7c184de62bd1e60044660ab0cc38091869f9be5f70f8deb1881b5538ad99a67b"
type: zim
wikivoyage_fr:
version: "2019-10-02"
size: 192713231
url: "http://download.kiwix.org/zim/wikivoyage/wikivoyage_fr_all_maxi_2019-10.zim"
name: Wikivoyage
language: "fra"
description: "De Wikivoyage"
sha256sum: "603519bb680da8153d02835b67bda38ad7c9631a167eb380dc49631524080194"
type: zim
wikipedia_wo_all:
version: "2019-03-18"
size: 21713986
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_wo_all_novid_2019-03.zim"
name: Wikipedia
language: "wol"
description: "Jóge Wikipedia"
sha256sum: "d80545091d74c910e62275351fa0500861f2404e896fdb0f7073b10fb2d2fedf"
type: zim
wikistage_fr_all:
version: "2018-06-24"
size: 8099213754
url: "http://download.kiwix.org/zim/other/wikistage_fr_all_2018-06.zim"
name: WikiStage
language: "fra"
description: "WikiStage videos"
sha256sum: "a048519337a7cfe8754f40c9dfa8cd4f191f69894d8c463cb361f6858578b50d"
type: zim
dirtybiology_fr_all:
version: "2018-06-23"
size: 2563543392
url: "http://download.kiwix.org/zim/other/dirtybiology_fr_all_2018-06.zim"
name: DirtyBiology
language: "fra"
description: "DirtyBiology videos"
sha256sum: "2e48574610253e9465f186fbc78d5f88a8d791ccebe77cd3604a35ce55d1ded9"
type: zim
wikipedia_pt_all:
version: "2019-06-11"
size: 12553802413
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_pt_all_novid_2019-06.zim"
name: Wikipédia
language: "por"
description: "Origem: Wikipédia, a enciclopédia livre."
sha256sum: "72d1fe3bfa546dfcf2441e149584411d0c0be7d6a05ff5539e614886f5882fb5"
type: zim
gutenberg_pt_all:
version: "2018-10-01"
size: 215070156
url: "http://download.kiwix.org/zim/gutenberg/gutenberg_pt_all_2018-10.zim"
name: Project Gutenberg Library (pt) with epub,pdf
language: "pt"
description: "The first producer of free ebooks"
sha256sum: "342e20bf6b2a666a865e3fc8e5792796a7066435dba2a683696529bd4f533b3e"
type: zim
wikipedia_fa_all:
version: "2018-07-14"
size: 7839199638
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_fa_all_novid_2018-07.zim"
name: ﻭیکی<200c>پﺩیﺍ
language: "fas"
description: "ﺍﺯ ﻭیکی<200c>پﺩیﺍ، ﺩﺎﻨﺸﻧﺎﻤﻫٔ ﺁﺯﺍﺩ"
sha256sum: "936afc3b8226860b85b5ae64a0611b41bd93c353969fbf1ac3107d858afee2b9"
type: zim
wikipedia_ar_all:
version: "2019-06-13"
size: 9822413939
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_ar_all_maxi_2019-06.zim"
name: "ويكيبيديا"
language: "ara"
description: "ويكبيديا,الموسوعه الحره"
sha256sum: "3ea14ff53e4c5822b33989413fe50b28e9f27e4b783aef88f8d812bb8180cab0"
type: zim
vikidia_fr:
version: "2018-10-07"
size: 724413995
url: "http://download.kiwix.org/zim/vikidia/vikidia_fr_all_2018-10.zim"
name: Vikidia
language: "fra"
description: "Vikidia"
sha256sum: "ff47b03d19ce7d3e8328a5677ef2b88c8e17286cacc63dd3fbb540b076ee4a5a"
type: zim
wikipedia_ku_all:
version: "2019-05-10"
size: 172585353
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_ku_all_novid_2019-05.zim"
name: Wîkîpediya
language: "kur"
description: "Ji Wîkîpediya, ensîklopediya azad."
sha256sum: "19cc9bdc18ffc547da534d04800faac06740eb44ed7470059d98f3f05c73e3a4"
type: zim
wiktionary_ku:
version: "2019-05-11"
size: 292710877
url: "http://download.kiwix.org/zim/wiktionary/wiktionary_ku_all_novid_2019-05.zim"
name: Wiktionary
language: "kur"
description: "Ji Wiktionary"
sha256sum: "b0d5a32ad655e1ba278793cbbcd7b9e9cfe886c622e0fe47c174bc97843e6fcd"
type: zim
les-fondamentaux_fr_all:
version: "2020-06-10"
size: 366460719
url: "http://download.kiwix.org/zim/other/les-fondamentaux_fr_all_2020-06.zim"
name: Les fondamentaux
language: "fra"
description: "Les fondamentaux videos"
sha256sum: "889b04978b05ba71473d4b2295219ae69f7247c8681a2f3ae749d610c7b9d4e1"
type: zim
bil-tunisia_ar_all:
version: "2018-06-24"
size: 4594170773
url: "http://download.kiwix.org/zim/other/bil-tunisia_ar_all_2018-06.zim"
name: "فيديو-بالتونسي"
language: "ara"
description: "مقاطع فيديو باللغه التونسيه"
sha256sum: "56890e9f27b9a7da3ae292d4e6cd3fc448fb03ca790b0b749893976ebd6c78d9"
type: zim
icd10_fr_all:
version: "2014-10-31"
size: 419638
url: "http://download.kiwix.org/zim/other/icd10_fr_all_2012-01.zim"
name: ICD-10
language: "fra"
description: "Classification statistique internationale des maladies et des problème de santé connexes"
sha256sum: "4eaea701458c3976191d5985e57265b1ad8fe7a69b8345f0451de7ad39ab8ea1"
type: zim
mullah-piaz-digest_fa_all:
version: "2012-12-19"
size: 50470643
url: "http://download.kiwix.org/zim/other/mullah-piaz-digest_fa_all_2012-12.zim"
name: Mullah Piaz
language: "per,eng"
description: "Digest"
sha256sum: "949f484ebfffafba77fd243d522bbee444e700b529c0f0e8f40ecb41bcfd2cfb"
type: zim
wiktionary_fa:
version: "2019-06-05"
size: 69113478
url: "http://download.kiwix.org/zim/wiktionary/wiktionary_fa_all_novid_2019-06.zim"
name: ویکی<U+200C>واژه
language: "fas"
description: "از ویکی<U+200C>واژه"
sha256sum: "58e8ca01258bed055bbab51ba82af798c48c482d82bcc38fb9fae0c84dd9b272"
type: zim
wiktionary_ar:
version: "2019-06-03"
size: 33018494
url: "http://download.kiwix.org/zim/wiktionary/wiktionary_ar_all_novid_2019-06.zim"
name: "ويكي القاموس"
language: "ara"
description: "من ويكي القاموس، القاموس الحر"
sha256sum: "fe918fd7417f3099a3fe8554644200ea632d2b4e12ca6ad4e3bf53804a5dbcb8"
type: zim
wikiversity_ar:
version: "2019-07-25"
size: 13483694
url: "http://download.kiwix.org/zim/wikiversity/wikiversity_ar_all_novid_2019-07.zim"
name: "ويكي الجامعة"
language: "ara"
description: "من ويكي الجامعة,مركز التعليم الحر"
sha256sum: "1249d5a3954467f68f62fe45bb122b791916c627ef4c3ed5d7b59a8a928aa95d"
type: zim
wikipedia_es_all:
version: "2020-08-09"
size: 26306769289
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_es_all_maxi_2020-08.zim"
name: Wikipedia
language: "spa"
description: "De Wikipedia, la enciclopedia libre"
sha256sum: "fa3dcefe6a1bdaa911d427fcf5231f6931356404c5438bc39935aa516258e668"
type: zim
gutenberg_es_all:
version: "2018-10-23"
size: 450885483
url: "http://download.kiwix.org/zim/gutenberg/gutenberg_es_all_2018-10.zim"
name: Project Gutenberg
language: "spa"
description: Libros electrónicos gratuitos a tu disposición.
sha256sum: "ac67006a856a80b4d6a4969ea338ac4645875787e7e413256f80c146d5580281"
type: zim
gutenberg_de_all:
version: "2018-10-01"
size: 1496206612
url: "http://download.kiwix.org/zim/gutenberg/gutenberg_de_all_2018-10.zim"
name: Project Gutenberg
language: "de"
description: "The first producer of free ebooks"
sha256sum: "50c60ff3902891b6b2460702464d7f7b5522e3aeab45e97db8c448157cd00848"
type: zim
wikipedia_de_all:
version: "2018-11-10"
size: 35463705320
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_de_all_novid_2018-11.zim"
name: Wikipedia
language: "deu"
description: "aus Wikipedia, der freien Enzyklopädie"
sha256sum: "e1723052dc1174aeb16547c030c8639f0225865db401c185a32ba62b7bc7d2f2"
type: zim
wikibooks_ar:
version: "2019-06-03"
size: 16765615
url: "http://download.kiwix.org/zim/wikibooks/wikibooks_ar_all_novid_2019-06.zim"
name: "ويكي المكتبة"
language: "ara"
description: "الموسوعة المكتبية الحرة"
sha256sum: "ac00553564389488f6eaace5945a1f2232102344f71e9306fc6dfb39ff4cd7c7"
type: zim
wikisource_ar:
version: "2019-03-01"
size: 564199445
url: "http://download.kiwix.org/zim/wikisource/wikisource_ar_all_novid_2019-03.zim"
name: "ويكي المصدر"
language: "ara"
description: "المكتبة الحرة التي يستطيع الجميع تحسينها"
sha256sum: "6089559f0f5e23a5d4834623786787c55b627b749208af38a9ff42ce981fc2ec"
type: zim
wikiquote_ar:
version: "2019-07-24"
size: 15642521
url: "http://download.kiwix.org/zim/wikiquote/wikiquote_ar_all_maxi_2019-07.zim"
name: "ويكي الاقتباس"
language: "ara"
description: "ويكي للاقتباسات المختارة"
sha256sum: "51fb8a64d4105e0d73d910ca285a34445998e141a324e971b3d9e85891a18ad9"
type: zim
wikipedia_el_all:
version: "2019-05-09"
size: 3062803911
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_el_all_novid_2019-05.zim"
name: Βικιπαίδεια
language: "ell"
description: "Από τη Βικιπαίδεια, την ελεύθερη εγκυκλοπαίδεια"
sha256sum: "a193b8253e981a9900c19d867492d8e8f086af18288831e67f73a41d86da264a"
type: zim
wikipedia_ps_all:
version: "2019-05-07"
size: 125742237
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_ps_all_novid_2019-05.zim"
name: ﻮﻳکﻱپېډﻱﺍ
language: "pus"
description: "ﺩ ﻮﻳکﻱپېډﻱﺍ، ﻭړیﺍ پﻮﻬﻨﻏﻮﻧډ ﻞﻫ ﺥﻭﺍ"
sha256sum: "3906099b82e3a4636101294aadbba452215070e88e190c0858436763749f7497"
type: zim
wiktionary_el:
version: "2019-06-05"
size: 328699804
url: "http://download.kiwix.org/zim/wiktionary/wiktionary_el_all_novid_2019-06.zim"
name: Βικιλεξικό
language: "ell"
description: "Από Βικιλεξικό"
sha256sum: "d6c084191e066d9090880add193f9482afa4b61570dbefa247ff751ec1492ea6"
type: zim
wiktionaryyps:
description: "ﺩ ﻮﻳکﻲﺴﻴﻧﺩ ﻞﺧﻭﺍ"
name: ﻮﻳکﻲﺴﻴﻧﺩ
version: "2019-04-29"
language: "pus"
url: "http://download.kiwix.org/zim/wiktionary/wiktionary_ps_all_novid_2019-04.zim"
size: 10872908
sha256sum: "7e340c2e2b0e34ac6f0ab7e499c358532eb5b6175cf9103c181a36a2f1c53202"
type: zim
wikiversity_el:
description: "Από Βικιεπιστήμιο"
name: Βικιεπιστήμιο
version: "2019-06-03"
language: "ell"
url: "http://download.kiwix.org/zim/wikiversity/wikiversity_el_all_novid_2019-06.zim"
size: 6030713
sha256sum: "7661f95d736ad25314cda89001e226b7b0007510062154369e2364736a7ac04f"
type: zim
wikibooks_fa:
description: "ﻭیکی<200e>کﺕﺎﺑ، کﺕﺎﺒﺧﺎﻨﻫٔ ﺁﺯﺍﺩ"
name: ﻭیکی<200c>کﺕﺎﺑ
version: "2019-06-03"
language: "fas"
url: "http://download.kiwix.org/zim/wikibooks/wikibooks_fa_all_novid_2019-06.zim"
size: 56504409
sha256sum: "7cec5b2aa7152d8e5118f8af4f6537116f01823c969b9f40dfb55941ccc2b9c1"
type: zim
wikibooks_el:
description: "Από Βικιβιβλία"
name: Βικιβιβλία
version: "2019-06-03"
language: "ell"
url: "http://download.kiwix.org/zim/wikibooks/wikibooks_el_all_novid_2019-06.zim"
size: 22884240
sha256sum: "fe39945c00372885dea735cc7741a4ec068e2a27146592d0072327b67471d528"
type: zim
wikisource_el:
description: "Από Βικιθήκη"
name: Βικιθήκη
version: "2019-05-07"
language: "ell"
url: "http://download.kiwix.org/zim/wikisource/wikisource_el_all_novid_2019-05.zim"
size: 174096783
sha256sum: "2963eaf4ee298802996763b4f0fa39b65bf139a0a28c6ea973660be51087b4dc"
type: zim
wikisource_fa:
description: "ﺍﺯ ﻭیکی<200c>ﻦﺒﺸﺘﻫ"
name: ﻭیکی<200c>ﻦﺒﺸﺘﻫ
version: "2019-06-05"
language: "fas"
url: "http://download.kiwix.org/zim/wikisource/wikisource_fa_all_novid_2019-06.zim"
size: 136885234
sha256sum: "0c8fcd28244033f5c53adeabab5b9416e5537d98a9b50e54251d0986e6d932a9"
type: zim
wikiquote_en:
description: The free quote compendium.
name: Wikiquote
version: "2019-07-24"
language: "eng"
url: "http://download.kiwix.org/zim/wikiquote/wikiquote_en_all_maxi_2019-07.zim"
size: 669331118
sha256sum: "644a2eb8e9a71f7c7d5388020ecfe1534d5fadae5be7405c1ce856b32f53da8a"
type: zim
wikiquote_el:
description: "Από Βικιφθέγματα"
name: Βικιφθέγματα
version: "2019-06-04"
language: "ell"
url: "http://download.kiwix.org/zim/wikiquote/wikiquote_el_all_novid_2019-06.zim"
size: 6358294
sha256sum: "01e8a3995f62e61ce523adca42b4ff6a83e7ca3d9f9e90c9d613928a25c0b4fd"
type: zim
biologie-tout-compris_fr_all:
description: "Uploads from Tania Louis videos"
name: Uploads from Tania Louis
version: "2018-06-23"
language: "fra"
url: "http://download.kiwix.org/zim/other/biologie-tout-compris_fr_all_2018-06.zim"
size: 2172640041
sha256sum: "3e2dc94c35081a17c615f1e0ddc3edc5f303d04764c625ef9c5597edfc140ff3"
type: zim
bouquineux_fr_all:
description: "Livres numériques gratuits et libres de droits"
name: Bouquineux
version: "2021-03-05"
language: "fra"
url: "http://download.kiwix.org/zim/zimit/bouquineux.com_fr_all_2021-03.zim"
size: 5966912625
sha256sum: "716e3ab8a49474f8052710454269f2c7e6f1666e1cd4f64b32dcc76dad4aa706"
type: zim
deus-ex-silicium_fr_all:
description: "Deus Ex Silicium videos"
name: "Deus Ex Silicium - Deus Ex Silicium videos"
version: "2018-06-01"
language: "fra"
url: "http://download.kiwix.org/zim/other/deus-ex-silicium_fr_all_2018-06.zim"
size: 1599396021
sha256sum: "869ad728aacd865fde66b115d23981f6659cf889124ea6180135acd4840accbe"
type: zim
e-penser_fr_all:
description: "Vidéos E-penser"
name: E-penser
version: "2018-06-24"
language: "fra"
url: "http://download.kiwix.org/zim/other/e-penser_fr_all_2018-06.zim"
size: 5521463659
sha256sum: "f8bcb15eb781dfd88153a7afa110a36248670056872ced40758809bc3d09be99"
type: zim
teded_en_all:
description: Education videos from TED
name: TED talks - Education
version: "2017-10-01"
language: "eng"
url: "http://download.kiwix.org/zim/ted/teded_en_all_2017-10.zim"
size: 21846639167
sha256sum: "0921826684025a6a982b37185b660fc998e69edea19f2b82c62229e564004d27"
type: zim
gutenberg.mul:
description: "The first producer of free ebooks"
name: Project Gutenberg
version: "2018-10-01"
language: "mul"
url: "http://download.kiwix.org/zim/gutenberg/gutenberg_mul_all_2018-10.zim"
size: 66325879001
sha256sum: "af84b925495de4cd22d0d4793159567ef9956ec53f3c7e25cac0a6261c62629e"
type: zim
wikipedia_sw_all:
description: "Kutoka Wikipedia, kamusi elezo huru"
name: Wikipedia
version: "2019-03-18"
language: "swa"
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_sw_all_novid_2019-03.zim"
size: 425285559
sha256sum: "a8486dae536d200d6bb81f56a632725f6c274cc91b4cf68c2c78171fc38f4040"
type: zim
vikidia_es:
description: "De Vikidia"
name: Vikidia
version: "2018-10-08"
language: "spa"
url: "http://download.kiwix.org/zim/vikidia/vikidia_es_all_2018-10.zim"
size: 49187709
sha256sum: "2b9f65fd16a7986c132154c81f01337f0e78daac83bfe9aedc39e2f63be6ad48"
type: zim
wiktionary_sw:
description: "Ufafanuzi kutoka Wiktionary, kamusi iliyo huru"
name: Wiktionary
version: "2019-04-05"
language: "swa"
url: "http://download.kiwix.org/zim/wiktionary/wiktionary_sw_all_novid_2019-04.zim"
size: 11462940
sha256sum: "220e33c22f41b07512c2dbc5fed610fa53bc8a0b94fc31bb49dcd77f4eb2dcc2"
type: zim
wikiquote_es:
description: "De Wikiquote, la colección libre de citas y frases célebres."
name: Wikiquote
version: "2019-06-05"
language: "spa"
url: "http://download.kiwix.org/zim/wikiquote/wikiquote_es_all_novid_2019-06.zim"
size: 84023810
sha256sum: "ba276c782e4ceec9f4af6e4bfb67a4ca2f1a6c7c80569f361a33c4d27fe8e590"
type: zim
wikisource_es:
description: "De Wikisource, la biblioteca libre."
name: Wikisource
version: "2018-06-11"
language: "spa"
url: "http://download.kiwix.org/zim/wikisource/wikisource_es_all_novid_2018-06.zim"
size: 679573493
sha256sum: "8e823c7fa488fa359a77100b3ded37bad304523dfd73a7d9868d94b7dc892c84"
type: zim
wikimooc:
description: "Uploads from WikiMOOC videos"
name: Uploads from WikiMOOC
version: "2018-06-22"
language: "fra"
url: "http://download.kiwix.org/zim/other/wikimooc_fr_all_2018-06.zim"
size: 642846044
sha256sum: "b6ae8b3523e36eb275eb7508ed5906318c9b223e02ffd59b15309562cb677fd8"
type: zim
tedmed_en_all:
description: TEDMED is the independently owned and operated health and medicine edition of the world-famous TED conference.
name: TEDMED
version: "2018-06-01"
language: "eng"
url: "http://download.kiwix.org/zim/ted/tedmed_en_all_2018-06.zim"
size: 17172752561
sha256sum: "b644490a040ffeb8e03fb8797bc22e8e33707f5db542cda03c67b9c577d6812c"
type: zim
crashcourse_en_all:
description: Educational videos about sciences, humanities…
name: CrashCourse
version: "2018-06-24"
language: "eng"
url: "http://download.kiwix.org/zim/other/crashcourse_en_all_2018-06.zim"
size: 19978762205
sha256sum: "ade8a2aeffa71cb9921c297c1865a9fb0aee51ec8216e0e6ae816e8598c81ac0"
type: zim
phet_mul_all:
name: PhET
description: Physics, chemistry, biology, earth science and math simulations
version: "2019-06-05"
language: "eng"
url: "http://download.kiwix.org/zim/phet/phet_en_2019-06.zim"
size: 43420380
sha256sum: "c612d5f8cde214c6aa72f8e1576e653b117b3bb0cb0a5e3f6db33b7d2c568f7b"
type: zim
vikidia_en:
description: The encyclopedia for 8 to 13-year-old children
name: Vikidia
version: "2018-10-08"
language: "eng"
url: "http://download.kiwix.org/zim/vikidia/vikidia_en_all_2018-10.zim"
size: 53835583
sha256sum: "fc04ed6ec60c26ababc5f7410edba68d506f16a8d373de1c39dfcadbdb90dc88"
type: zim
wikiquote_fr:
name: "Wikiquote"
description: "le recueil de citations libre"
version: "2019-07-24"
language: "fra"
url: "http://download.kiwix.org/zim/wikiquote/wikiquote_fr_all_maxi_2019-07.zim"
size: 60205830
sha256sum: "cc499a90df75dfb76e2613fb261254528200e35485dd77e72fab192a4d8497f3"
type: zim
wikipedia_ckb_all:
version: "2019-06-04"
size: 226585380
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_ckb_all_novid_2019-06.zim"
name: "ویکیپیدیا"
language: "ckb"
description: "لە ئینسایکڵۆپیدیای ئازادی ویکیپیدیاوە"
sha256sum: "464d69984ea361efb694e088dc39e54e5ccc9adb8880ac0efa917f0814639468"
type: zim
wikiquote.fa:
version: "2018-04-17"
size: 76334224
url: "http://download.kiwix.org/zim/wikiquote/wikiquote_fa_all_novid_2019-06.zim"
name: "ویکیگفتاورد"
language: "fas"
description: "از ویکیگفتاورد"
sha256sum: "7b47116e6fddf22ea6cb487b9eaf7e0206f52344d2a10154c924ef4835b5078d"
type: zim
wikipedia.cbkzam:
name: "Wikipedia"
description: "Desde Chavacano de Zamboanga Wikipedia - El Libre Enciclopedia"
version: "2019-06-05"
language: "cbk-zam"
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_cbk-zam_all_novid_2019-06.zim"
size: 47027926
sha256sum: "61d8a10862331b598e8ebe3d79af4ee6b2010f61169749b1783b4e8e878a1848"
type: zim
wikipedia_ru_all:
name: "Википедия"
description: "Материал из Википедии — свободной энциклопедии"
version: "2019-06-25"
language: "ru"
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_ru_all_novid_2019-06.zim"
size: 27467161570
sha256sum: "a0d3fddb41f1016e38b78b001b60213d02a5ea033c3daadca5b4c28763ee0c6b"
type: zim
wikipedia_sr_all:
name: "Википедија"
description: "Из Википедије, слободне енциклопедије"
version: "2018-10-10"
language: "sr"
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_sr_all_novid_2018-10.zim"
size: 9306576032
sha256sum: "d0c5881ddb0531f093718d39627350b02a62f39ba9cfeea7e7e3ca16355c04a1"
type: zim
wikipedia_sq_all:
name: "Wikipedia"
description: "Nga Wikipedia, enciklopedia e lirë"
version: "2019-03-20"
language: "sq"
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_sq_all_novid_2019-03.zim"
size: 915057530
sha256sum: "fcce8fe877a92cc0da7929d59fe47b2a59cd8d16665aa1f5fd9cc7c5fce14ffb"
type: zim
wikinews_fr:
name: "Wikinews"
description: "Une nouvelle de Wikinews, la source d'informations que vous pouvez écrire."
version: "2019-06-07"
language: "fr"
url: "http://download.kiwix.org/zim/wikinews/wikinews_fr_all_novid_2019-06.zim"
size: 168784131
sha256sum: "2021621a6540cda436992dc68b43afe32d8a7de88bd6ae315494ee19a70971de"
type: zim
wikipedia_it_all:
name: "Wikipedia"
description: "L'enciclopedia libera e collaborativa"
version: "2018-06-06"
language: "it"
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_it_all_novid_2018-06.zim"
size: 18847049533
sha256sum: "bb4ff27b2462001ead3133e209c71943f67ad4f71c75d1dd33165d0051311fbc"
type: zim
wikipedia_ln_all:
name: "Wikipedia"
description: "Útá Wikipedia."
version: "2019-05-11"
language: "lin"
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_ln_all_novid_2019-05.zim"
size: 13638037
sha256sum: "1a3807406869fcf89bd3dfa6091a7aa9e5b529b54768d353e9daf3923e5ea4eb"
type: zim
wiktionary_ln:
name: "Wiktionary"
description: "Útá Wiktionary."
version: "2019-05-11"
language: "lin"
url: "http://download.kiwix.org/zim/wiktionary/wiktionary_ln_all_novid_2019-05.zim"
size: 349913
sha256sum: "49b6892be0348d07ecca6fba8e56841c3c8c5ed1f4a75ded5c9e6937d8d6746f"
type: zim
ekopedia:
name: "Ekopedia"
description: "Un article de Ékopédia, l'encyclopédie pratique."
version: "2018-10-11"
language: "fra"
url: "http://download.kiwix.org/zim/other/ekopedia_fr_all_2018-10.zim"
size: 17956063
sha256sum: "95e123960e54df5bc6f003e1c40b350535a109ae5e9b04a24083ea27487c8b18"
type: zim
wikipedia_bn_all:
name: "প্রধান পাতা"
description: "Wikipedia in Bengali"
version: "2019-05-02"
language: "ben"
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_bn_all_novid_2019-05.zim"
size: 1182986436
sha256sum: "8889e98b160b25f2ce48fbc1317dfc44888f54e46c55934a806f2d503311ddd4"
type: zim
wikipedia-medicine.en:
name: "Medical Wikipedia"
description: "Medical Wikipedia"
version: "2019-10-27"
language: "eng"
url: "http://download.kiwix.org/zim/wikipedia/wikipedia_en_medicine_2019-10.zim"
size: 3772362169
sha256sum: "1053419b3585ae509f4ee13ab9828cebfdb3ec192fdaed3f5eea4ec41e21e4d7"
type: zim
micmaths:
name: "Mic Maths"
description: "Vidéos autour des mathématiques : cours, jeux de logique, chroniques"
version: "2020-03-19"
language: "fra"
url: "http://download.kiwix.org/zim/other/micmaths_fr_all_2020-03.zim"
size: 3666998790
sha256sum: "7536cf827bce270065871c6faa2169bce707836c394d4e7d2311550d121b1d28"
type: zim
nota_bene:
name: "Nota Bene"
description: "Comprendre l'Histoire avec un grand H"
version: "2020-04-08"
language: "fra"
url: "http://download.kiwix.org/zim/other/nota-bene_fr_all_2020-04.zim"
size: 15882731570
sha256sum: "2c33282c6911c9aa6b1f6dceccaf95f3580dfaf3cfdda8309f0fcb716dda9d93"
type: zim
mondial_tissus:
name: "Mondial Tissus"
description: "Vidéos astuces pour la couture"
version: "2020-03-20"
language: "fra"
url: "http://download.kiwix.org/zim/other/mondial-tissus_fr_all_2020-03.zim"
size: 1269603648
sha256sum: "c8f04206107a2ebb7cb9135e8a4ec449f47b8b617f5676dbb4725c02023d9af0"
type: zim
la_chaine_de_maths_et_tiques:
name: "Maths et tiques"
description: "Maths et tiques"
version: "2020-09-03"
language: "fra"
url: "http://download.kiwix.org/zim/videos/la_chaine_de_maths_et_tiques_fr_all_2020-09.zim"
size: 42117820426
sha256sum: "967be943c613e5e73a5fecf9c667f0c5dc8b9e7310c475395c72ccd1913e86bf"
type: zim
ubongo_fr:
name: "Ubongo Français"
description: "Les aventures animées des P'tits Ubongo"
version: "2020-03-15"
language: "fra"
url: "http://download.kiwix.org/zim/other/ubongo_fr_all_2020-03.zim"
size: 1905664417
sha256sum: "3f7754bf189f865c5440ce36e1e1f5cdf6e40ee2b9b913643c242756e530b3af"
type: zim
astrolabe_fr_all:
name: "Astrolabe"
description: "Science et high-tech en vidéos"
version: "2020-05-10"
language: "fra"
url: "http://download.kiwix.org/zim/other/astrolabe_fr_all_2020-05.zim"
size: 2647700822
sha256sum: "ccbbdaab5524c94310b647e9c34bf12a2adc36decd80b31db0591492cb7e79e9"
type: zim
litterature-audiobooks-poetry_fr:
name: "Littérature - Livres Audio AudioBooks"
description: "Sélection de livres audio (philo, littérature, poésie, théatre)"
version: "2021-02-02"
language: "fra"
url: "http://download.kiwix.org/zim/other/litterature-audiobooks-poetry_fr_2021-01.zim"
size: 964926351
sha256sum: "d985173760a7c8a12a1891903f63e847a39ba0c7e474883c4fa433122de5ab21"
type: zim
lesbelleshistoires:
name: "Les Belles Histoires"
description: "10 belles histoires à lire et/ou à écouter (Bayard)"
version: "2020-05-07"
language: "fra"
url: "http://download.kiwix.org/zim/other/lesbelleshistoires_fr_2020-05.zim"
size: 202929454
sha256sum: "322f7a49199e138107e04f3856f52177e3aabcd2906233065409f6f37e0590db"
type: zim
lesptitsphilosophes:
name: "Les p'tits philos"
description: "Les aventures des « p’tits philos » qui accompagnent les enfants de maternelle dans leurs toutes premières interrogations existentielles et philosophiques. (Bayard)"
version: "2020-05-07"
language: "fra"
url: "http://download.kiwix.org/zim/other/lesptitsphilosophes_fr_2020-05.zim"
size: 157097568
sha256sum: "957b0c8fde195c67f04efe5d95c5ee13a3fb25cd22fcc40f70a33f62053f1ae0"
type: zim
jaimelire:
name: "J'aime lire + Planète J'aime lire (Bayard)"
description: "12 histoires à lire et/ou écouter depuis les collections J'aime lire et Planète J'aime lire."
version: "2020-05-07"
language: "fra"
url: "http://download.kiwix.org/zim/other/jaimelire_fr_2020-05.zim"
size: 73914507
sha256sum: "4f9a451ab7a917cbd5de57eaa46b5b4c330134fffbfcd146f0b7f1f814acbe9b"
type: zim