-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.json
More file actions
6266 lines (6266 loc) · 334 KB
/
index.json
File metadata and controls
6266 lines (6266 loc) · 334 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
[
{
"id": 16967,
"title": "English-Esperanto Dictionary",
"authors": [
{
"name": "O'Connor, J. C. (John Charles)",
"birth_year": 1853,
"death_year": 1928
},
{
"name": "Hayes, C. F. (Charles Frederic)",
"birth_year": 1857,
"death_year": 1942
}
],
"summaries": [
"\"English-Esperanto Dictionary\" by J. C. O'Connor and C. F. Hayes is a language reference work written in the early 20th century. The book serves as a comprehensive bilingual dictionary that translates English words into their Esperanto equivalents, catering particularly to students and enthusiasts of the Esperanto language. It aims to facilitate communication and understanding for English speakers learning Esperanto and vice versa. The opening portion of the dictionary introduces the work's purpose, acknowledging the high demand for such a resource as it is the first of its kind. The authors explain the various linguistic features of Esperanto, including the importance of roots, prefixes, and suffixes, which help in forming new words. They include a preface that highlights the challenges faced while compiling the dictionary and express gratitude for the support received from prominent figures in the Esperanto community, setting the stage for a user-friendly reference tool for language learners. (This is an automatically generated summary.)"
],
"editors": [],
"translators": [],
"subjects": [
"English language -- Dictionaries -- Esperanto",
"Esperanto -- Dictionaries -- English"
],
"bookshelves": [
"Category: Encyclopedias/Dictionaries/Reference",
"Category: Language & Communication",
"Esperanto"
],
"languages": [
"en",
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/16967.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/16967.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/16967.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/16967.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/16967.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/16967/pg16967.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/files/16967/16967-0.zip"
},
"download_count": 1976
},
{
"id": 7787,
"title": "A Complete Grammar of Esperanto",
"authors": [
{
"name": "Reed, Ivy Kellerman",
"birth_year": 1877,
"death_year": 1968
}
],
"summaries": [
"\"A Complete Grammar of Esperanto\" by Ivy Kellerman Reed is an instructional textbook written in the early 20th century. The book serves as a thorough guide to the international language Esperanto, aiming to provide a comprehensive understanding of its grammar, structure, and usage, complete with graded exercises for reading and translation. The opening of the text begins with a transcriber's note about the unique aspects of the Esperanto alphabet, detailing the characters used and the diacritical marks that distinguish them. Reed explains the foundational elements of the language, such as its phonetics, the use of diacritical letters, and various transliteration methods adopted to accommodate different formats or systems, like ASCII. This initial section sets the stage for the subsequent lessons that delve into more complex grammatical concepts, grounding readers in the structure required to master Esperanto. (This is an automatically generated summary.)"
],
"editors": [],
"translators": [],
"subjects": [
"Esperanto -- Grammar"
],
"bookshelves": [
"Category: How To ...",
"Category: Language & Communication",
"Esperanto",
"Language Education"
],
"languages": [
"en",
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/7787.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/7787.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/7787.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/7787.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/7787.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/7787/pg7787.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/files/7787/7787-0.zip"
},
"download_count": 1269
},
{
"id": 38240,
"title": "The Esperantist, Complete",
"authors": [],
"summaries": [
"\"The Esperantist, Complete\" by H. Bolingbroke Mudie is a publication aimed at promoting the International Language of Esperanto, likely written in the early 20th century. This work is formatted as a periodical or journal that disseminates various articles and correspondences related to the Esperanto movement. The initial issue sets the tone for an optimistic and hopeful exploration of the advantages and necessity of adopting Esperanto as a means to foster international communication and understanding. The opening of the publication introduces the reader to the fundamental ideals of Esperanto, emphasizing hope as the driving force behind its adoption and spread. It highlights the language's potential to serve as a unifying tool in a world increasingly influenced by international relations and mutual understanding. Through articles and editorials, the text presents a plea for individuals to learn and utilize Esperanto, positing it as a second language that can facilitate easy communication between speakers of different mother tongues. Additionally, there are notices and information about local Esperanto groups, practical advice for learning the language, and encouragement for collaborative efforts to promote Esperanto across borders. (This is an automatically generated summary.)"
],
"editors": [
{
"name": "Mudie, H. Bolingbroke (Harold Bolingbroke)",
"birth_year": 1880,
"death_year": 1916
}
],
"translators": [],
"subjects": [
"Esperanto -- Periodicals"
],
"bookshelves": [
"Category: Journals",
"Category: Language & Communication",
"Esperanto",
"The Esperantist"
],
"languages": [
"en",
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/38240.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/38240.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/38240.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/38240.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/38240.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/38240/pg38240.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/cache/epub/38240/pg38240-h.zip"
},
"download_count": 1052
},
{
"id": 8177,
"title": "The Esperanto Teacher: A Simple Course for Non-Grammarians",
"authors": [
{
"name": "Fryer, Helen",
"birth_year": null,
"death_year": null
}
],
"summaries": [
"\"The Esperanto Teacher: A Simple Course for Non-Grammarians\" by Helen Fryer is a language instruction manual written in the early 20th century. The book serves as a straightforward guide for beginners who wish to learn Esperanto, a constructed international language designed to foster communication among speakers of different native languages. The opening of the book presents an overview of its purpose and structure, introducing readers to Esperanto and its foundational principles. It highlights the significance of learning this language for individuals who are not well-versed in grammar, aiming to provide them with the tools to communicate with others worldwide. The author explains the origins of Esperanto, developed by Dr. Ludovic Zamenhof, and outlines how the book is organized into lessons that cover vocabulary, grammar rules, pronunciation, and exercises. The introductory sections emphasize a methodical approach to language learning, encouraging students to think directly in Esperanto and practice actively as they progress through the course material. (This is an automatically generated summary.)"
],
"editors": [
{
"name": "Millidge, Edward A.",
"birth_year": null,
"death_year": null
}
],
"translators": [],
"subjects": [
"Esperanto -- Textbooks"
],
"bookshelves": [
"Category: How To ...",
"Category: Language & Communication",
"Esperanto",
"Language Education"
],
"languages": [
"en",
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/8177.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/8177.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/8177.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/8177.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/8177.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/8177/pg8177.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/files/8177/8177-h.zip"
},
"download_count": 807
},
{
"id": 8224,
"title": "Fundamenta Krestomatio",
"authors": [
{
"name": "Zamenhof, L. L. (Ludwik Lejzer)",
"birth_year": 1859,
"death_year": 1917
}
],
"summaries": [
"\"Fundamenta Krestomatio\" by L. L. Zamenhof is a collection published in 1903. This foundational anthology gathers diverse writings from Esperanto's early period, showcasing varied literary styles in both original works and translations. The collection includes grammar exercises, fables like \"The Little Mermaid,\" anecdotes, short stories, scientific articles, and numerous poems, including \"La Espero,\" which became Esperanto's anthem. It features translations from classical works such as \"Hamlet\" and the \"Iliad,\" offering readers a comprehensive introduction to the language's expressive possibilities. (This is an automatically generated summary.)"
],
"editors": [],
"translators": [],
"subjects": [
"Esperanto -- Readers"
],
"bookshelves": [
"Category: Language & Communication",
"Category: Mythology, Legends & Folklore",
"Esperanto"
],
"languages": [
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/8224.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/8224.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/8224.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/8224.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/8224.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/8224/pg8224.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/files/8224/8224-0.zip"
},
"download_count": 603
},
{
"id": 57184,
"title": "Dokumentoj de Esperanto: Informilo pri la historio kaj organizo de la Esperanta movado",
"authors": [],
"summaries": [
"\"Dokumentoj de Esperanto\" by A. Möbusz is an informative publication concerning the history and organization of the Esperanto movement, written in the early 20th century. The work serves as a comprehensive introduction to the principles and contexts of the Esperanto language and its community. It aims to prepare readers for deeper engagement with the language and its literature, Highlighting the importance of understanding its history and the foundational figures involved. The opening of this text sets the stage for an educational journey, addressing readers who are already familiar with the basics of Esperanto. A. Möbusz conveys the expectations of becoming a proficient speaker and emphasizes the necessity of grasping not only the linguistic aspects but also the historical and organizational intricacies of the Esperanto movement. The piece outlines the value of studying documents and speeches from key figures in the movement, providing a foundation for those who wish to contribute to Esperanto's propagation and apply it confidently in various contexts. (This is an automatically generated summary.)"
],
"editors": [],
"translators": [],
"subjects": [
"Esperanto -- History",
"Esperanto -- Texts"
],
"bookshelves": [
"Category: History - Other",
"Category: Language & Communication",
"Esperanto"
],
"languages": [
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/57184.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/57184.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/57184.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/57184.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/57184.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/57184/pg57184.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/files/57184/57184-0.zip"
},
"download_count": 471
},
{
"id": 37978,
"title": "The Esperantist, Vol. 1, No. 14",
"authors": [],
"summaries": [
"\"The Esperantist, Vol. 1, No. 14\" by H. Bolingbroke Mudie is a periodical publication dedicated to promoting the international language of Esperanto, written in the early 20th century. The content includes a variety of articles ranging from editorials and cultural sketches to stories and philosophical discussions, aimed at spreading the ideals and practical uses of Esperanto among its readers. The opening portion introduces the magazine's format, showcasing its contents which cover an array of topics relevant to the Esperanto community, including editor’s notes, original stories, and letters from members. It sets a tone of community building and knowledge sharing among Esperantists, with pieces that reflect both literary contributions and practical advice for learning the language. Contributions from various authors highlight personal and cultural anecdotes, philosophical inquiries, and festive recipes, illustrating the diverse interests and backgrounds of its readership while emphasizing the importance of the Esperanto movement at the time. (This is an automatically generated summary.)"
],
"editors": [
{
"name": "Mudie, H. Bolingbroke (Harold Bolingbroke)",
"birth_year": 1880,
"death_year": 1916
}
],
"translators": [],
"subjects": [
"Esperanto -- Periodicals"
],
"bookshelves": [
"Category: Journals",
"Category: Language & Communication",
"The Esperantist"
],
"languages": [
"en",
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/37978.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/37978.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/37978.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/37978.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/37978.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/37978/pg37978.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/files/37978/37978-0.zip"
},
"download_count": 441
},
{
"id": 55302,
"title": "Princo Serebrjanij",
"authors": [
{
"name": "Tolstoy, Aleksey Konstantinovich, graf",
"birth_year": 1817,
"death_year": 1875
}
],
"summaries": [
"\"Princo Serebrjanij\" by graf Aleksey Konstantinovich Tolstoy is a historical novel written in the late 19th century. The story is set in the 16th century during the reign of Tsar Ivan IV, focusing on the life of a young boyar, Prince Nikito Romanovich Serebrjanij, who is navigating the perils of diplomacy and warfare in a tumultuous Russia. Central themes include loyalty, honor, and the growing menace of the oprichnina, a secret police established by Ivan IV, underlining the harsh realities of power in the period. At the start of the narrative, Serebrjanij returns from Lithuania after a diplomatic mission that goes awry due to his straightforward nature. As he travels back, he encounters celebrations in a village that are abruptly interrupted by news of oprichniks—dangerous agents of the tsar's will—who are terrorizing the locals. This inciting event showcases the contrast between the prince's noble intentions and the severe oppression faced by the common people. His boldness and sense of justice emerge when he decides to protect the villagers and confronts the oprichniks, foreshadowing a conflict that reflects themes of bravery and moral integrity amidst volatility in the Empire. (This is an automatically generated summary.)"
],
"editors": [],
"translators": [
{
"name": "Ŝidlovskaja, Maria",
"birth_year": null,
"death_year": null
}
],
"subjects": [
"Russia -- History -- Ivan IV, 1533-1584 -- Fiction"
],
"bookshelves": [
"Category: Historical Novels",
"Category: Novels",
"Category: Russian Literature",
"Esperanto"
],
"languages": [
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/55302.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/55302.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/55302.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/55302.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/55302.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/55302/pg55302.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/cache/epub/55302/pg55302-h.zip"
},
"download_count": 399
},
{
"id": 20006,
"title": "Dua Libro de l' Lingvo Internacia",
"authors": [
{
"name": "Zamenhof, L. L. (Ludwik Lejzer)",
"birth_year": 1859,
"death_year": 1917
}
],
"summaries": [
"\"Dua Libro de l' Lingvo Internacia\" by L. L. Zamenhof is a language textbook published in 1888. It is the second book about the constructed language Esperanto and the first written entirely in the language itself. The work provides translations and reading material for early learners while solidifying Esperanto's final grammatical form. It includes texts, model sentences, fairy tales, sayings, and poems to demonstrate the new international language in practice. (This is an automatically generated summary.)"
],
"editors": [],
"translators": [],
"subjects": [
"Esperanto",
"Esperanto -- Readers"
],
"bookshelves": [
"Category: Language & Communication",
"Esperanto"
],
"languages": [
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/20006.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/20006.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/20006.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/20006.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/20006.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/20006/pg20006.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/files/20006/20006-0.zip"
},
"download_count": 394
},
{
"id": 61103,
"title": "Kiel plaĉas al vi: komedio en kvin aktoj",
"authors": [
{
"name": "Shakespeare, William",
"birth_year": 1564,
"death_year": 1616
}
],
"summaries": [
"\"Kiel plaĉas al vi: komedio en kvin aktoj\" by William Shakespeare is a pastoral comedy written in 1599. When Rosalind flees her uncle's court seeking safety, she ventures into the Forest of Arden with her cousin Celia. There, they encounter memorable characters including the melancholy Jaques, who delivers Shakespeare's famous \"All the world's a stage\" speech. In this forest refuge, Rosalind discovers not only sanctuary but also the possibility of love, while Jaques provides sharp observations that contrast with the other characters' perspectives on life. (This is an automatically generated summary.)"
],
"editors": [],
"translators": [
{
"name": "Reed, Ivy Kellerman",
"birth_year": 1877,
"death_year": 1968
}
],
"subjects": [
"Comedy plays",
"Exiles -- Drama",
"Fathers and daughters -- Drama",
"Pastoral drama"
],
"bookshelves": [
"Category: British Literature",
"Category: Classics of Literature",
"Category: Plays/Films/Dramas",
"Esperanto"
],
"languages": [
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/61103.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/61103.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/61103.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/61103.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/61103.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/61103/pg61103.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/cache/epub/61103/pg61103-h.zip"
},
"download_count": 349
},
{
"id": 34043,
"title": "The Esperantist, Vol. 1, No. 9",
"authors": [],
"summaries": [
"\"The Esperantist, Vol. 1, No. 9\" by H. Bolingbroke Mudie is a periodical publication focusing on the promotion and dissemination of the Esperanto language, likely written in the early 20th century. The content covers various topics related to Esperanto, including translations, articles on the language's growth in different regions, original poetry, and insights from Esperanto enthusiasts. This issue serves as a community platform for those interested in international communication through this constructed language. At the start of this volume, readers are introduced to an array of articles that set the tone for the publication’s aim: expanding the reach of Esperanto. It includes an editor's note addressing subscribers, delightful anecdotes about group outings and local clubs, and various pieces ranging from translations of classic works to original writings. The discussions reflect a community that values cultural exchange and the historical significance of the language, showcasing personal experiences and hope for increased adoption in educational systems. The vibrant participation of members in community events underscores the enthusiasm behind the movement to unite people through this universal tongue. (This is an automatically generated summary.)"
],
"editors": [
{
"name": "Mudie, H. Bolingbroke (Harold Bolingbroke)",
"birth_year": 1880,
"death_year": 1916
}
],
"translators": [],
"subjects": [
"Esperanto -- Periodicals"
],
"bookshelves": [
"Category: Journals",
"Category: Language & Communication",
"The Esperantist"
],
"languages": [
"en",
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/34043.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/34043.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/34043.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/34043.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/34043.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/34043/pg34043.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/files/34043/34043-0.zip"
},
"download_count": 345
},
{
"id": 47913,
"title": "Makbeto",
"authors": [
{
"name": "Shakespeare, William",
"birth_year": 1564,
"death_year": 1616
}
],
"summaries": [
"\"Makbeto\" by William Shakespeare is a tragedy written in the late 16th century. The play centers on the ambitious nobleman Macbeth, who, driven by prophecy and manipulation from his wife and supernatural forces, murders King Duncan to seize the throne of Scotland. The narrative explores themes of ambition, power, guilt, and the supernatural, encapsulating the moral dilemmas faced by Macbeth and the ensuing chaos from his actions. At the start of the play, the atmosphere is dark and foreboding, setting the stage for a tale of betrayal and ambition. Three witches appear, foretelling Macbeth’s rise to power, which sparks his ambition. Following a successful battle, Macbeth is honored by King Duncan, leading to a whirlwind of conflicting emotions in his mind regarding the prophecies. Meanwhile, Lady Macbeth is introduced as a powerful influence over her husband, pushing him toward darker ambitions. The opening sets the tone for the impending tragedy and the moral complexities that will unfold as Macbeth's ambition spirals into murder and madness. (This is an automatically generated summary.)"
],
"editors": [],
"translators": [
{
"name": "Lambert, D. H. (Daniel Henry)",
"birth_year": 1852,
"death_year": 1930
}
],
"subjects": [
"Macbeth, King of Scotland, active 11th century -- Drama",
"Regicides -- Drama",
"Scotland -- Kings and rulers -- Drama",
"Tragedies (Drama)"
],
"bookshelves": [
"Category: British Literature",
"Category: Classics of Literature",
"Category: Plays/Films/Dramas",
"Esperanto"
],
"languages": [
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/47913.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/47913.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/47913.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/47913.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/47913.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/47913/pg47913.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/cache/epub/47913/pg47913-h.zip"
},
"download_count": 343
},
{
"id": 37279,
"title": "Hamleto, Reĝido de Danujo",
"authors": [
{
"name": "Shakespeare, William",
"birth_year": 1564,
"death_year": 1616
}
],
"summaries": [
"\"Hamleto, Reĝido de Danujo\" by William Shakespeare is a tragic play, likely written in the late 16th century. The story centers around Prince Hamlet of Denmark, who is consumed by grief and anger following the death of his father, the former king, and his mother's hasty remarriage to his uncle Claudius. As Hamlet grapples with the ghost of his father urging him to seek vengeance, the play explores themes of madness, betrayal, and the complexity of human emotion. The opening of the play sets the stage in the royal palace of Elsinore, beginning with a haunting encounter between guards who witness the appearance of a ghost resembling the deceased king. As they discuss the unrest in the kingdom following the king's death and the rise of Claudius, the audience is introduced to the tension that will engulf Hamlet. Subsequently, the royal court assembles, where Hamlet's sorrow and disdain for his uncle's ascension to the throne are palpable. The introduction of key characters, such as Ophelia and Polonius, hints at the intricate relationships and conflicts that will unfold as Hamlet confronts his inner demons and the external forces at play in the Danish court. (This is an automatically generated summary.)"
],
"editors": [],
"translators": [
{
"name": "Zamenhof, L. L. (Ludwik Lejzer)",
"birth_year": 1859,
"death_year": 1917
}
],
"subjects": [
"Denmark -- Drama",
"Fathers -- Death -- Drama",
"Hamlet (Legendary character) -- Drama",
"Kings and rulers -- Succession -- Drama",
"Murder victims' families -- Drama",
"Princes -- Drama",
"Revenge -- Drama",
"Tragedies (Drama)"
],
"bookshelves": [
"Best Books Ever Listings",
"Category: Classics of Literature",
"Category: Plays/Films/Dramas",
"Esperanto"
],
"languages": [
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/37279.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/37279.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/37279.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/37279.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/37279.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/37279/pg37279.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/files/37279/37279-0.zip"
},
"download_count": 328
},
{
"id": 26359,
"title": "Vivo de Zamenhof",
"authors": [
{
"name": "Privat, Edmond",
"birth_year": 1889,
"death_year": 1962
}
],
"summaries": [
"\"Vivo de Zamenhof\" by Edmond Privat is a biography written in Esperanto, first published in 1920. This intimate portrait chronicles the life of L. L. Zamenhof, creator of the international language Esperanto. Through twelve chapters, Privat traces Zamenhof's journey from childhood in Lithuania through his student years, the birth of Esperanto, and his evolution as a linguistic innovator and ethical thinker. Written by a faithful disciple, the work captures what contemporaries called \"the most humane spirit\" of the era. (This is an automatically generated summary.)"
],
"editors": [],
"translators": [],
"subjects": [
"Biography",
"Esperanto",
"Zamenhof, L. L. (Ludwik Lazar), 1859-1917"
],
"bookshelves": [
"Category: Biographies",
"Esperanto"
],
"languages": [
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/26359.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/26359.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/26359.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/26359.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/26359.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/26359/pg26359.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/files/26359/26359-0.zip"
},
"download_count": 325
},
{
"id": 17482,
"title": "La Aventuroj de Alicio en Mirlando",
"authors": [
{
"name": "Carroll, Lewis",
"birth_year": 1832,
"death_year": 1898
}
],
"summaries": [
"\"La Aventuroj de Alicio en Mirlando\" by Lewis Carroll is a children's novel published in 1865. When a curious girl named Alice follows a White Rabbit down a rabbit hole, she tumbles into a fantastical world populated by strange, anthropomorphic creatures. As she navigates this bizarre realm of logic-defying puzzles and peculiar encounters, Alice experiences startling transformations that challenge her understanding of reality. This groundbreaking work of literary nonsense broke from traditional didactic children's literature, creating an enduring tale that delights both children and adults with its playful approach to logic and imagination. (This is an automatically generated summary.)"
],
"editors": [],
"translators": [
{
"name": "Kearney, Elfric Leofwin",
"birth_year": 1856,
"death_year": 1913
}
],
"subjects": [
"Alice (Fictitious character from Carroll) -- Juvenile fiction",
"Children's stories",
"Fantasy fiction",
"Imaginary places -- Juvenile fiction"
],
"bookshelves": [
"Category: British Literature",
"Category: Children & Young Adult Reading",
"Category: Classics of Literature",
"Category: Novels",
"Category: Science-Fiction & Fantasy",
"Children's Literature",
"Esperanto"
],
"languages": [
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/17482.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/17482.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/17482.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/17482.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/17482.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/17482/pg17482.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/files/17482/17482-0.zip"
},
"download_count": 321
},
{
"id": 61579,
"title": "Al mia fratineto: Letero pri la seksvivo",
"authors": [
{
"name": "Ortt, Felix",
"birth_year": 1866,
"death_year": 1959
}
],
"summaries": [
"\"Al mia fratineto: Letero pri la seksvivo\" by Felix Ortt is a letter-style book written in the early 20th century. This work serves as a guide aimed primarily at young women, addressing the complexities and moral considerations surrounding love, relationships, and sexuality. Through a conversational tone, the author seeks to elevate the understanding of these topics, moving beyond mere romantic narratives found in popular literature of the time. In the book, Felix Ortt writes an extensive and thoughtful letter to his young sister, exploring the true essence of love in contrast to fleeting infatuation or physical attraction. He articulates that genuine love is rooted in a sense of unity and deep connection between individuals, rather than superficial qualities or desires. Ortt emphasizes the importance of emotional compatibility and moral integrity in relationships, particularly by cautioning against getting swept away by the allure of romantic fiction. He outlines the natural aspects of sexuality and urges his sister to approach these subjects with understanding and dignity, warning against the potential pitfalls of promiscuity and the societal pressures that can lead to unhappy unions. Through this discourse, Ortt aims to guide his sister toward a mature and morally responsible perspective on love and relationships, ultimately advocating for a thoughtful approach to intimacy. (This is an automatically generated summary.)"
],
"editors": [],
"translators": [
{
"name": "Muller, A.",
"birth_year": null,
"death_year": null
}
],
"subjects": [
"Sexual ethics",
"Women -- Health and hygiene"
],
"bookshelves": [
"Category: Essays, Letters & Speeches",
"Category: Gender & Sexuality Studies",
"Category: Sexuality & Erotica",
"Esperanto"
],
"languages": [
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/61579.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/61579.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/61579.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/61579.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/61579.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/61579/pg61579.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/cache/epub/61579/pg61579-h.zip"
},
"download_count": 314
},
{
"id": 44131,
"title": "The Esperantist, Vol. 2, No. 5",
"authors": [],
"summaries": [
"\"The Esperantist, Vol. 2, No. 5\" by H. Bolingbroke Mudie is a periodical publication focused on the promotion of the international language Esperanto, written in the early 20th century. The issue features a variety of articles, poems, and translations, exploring not only the intricacies of the Esperanto language but also cultural dialogues and philosophical reflections on humanity and communication. At the start of this edition, a letter titled \"Voice from the Himalayas\" by Anando discusses the role of language in revealing the inner self of individuals and fostering a deeper connection among people. Anando emphasizes the importance of an international language like Esperanto in achieving universal brotherhood and humanity, ultimately aiming to enhance understanding across different cultures. The opening also includes a collection of creative pieces ranging from legends to poems, illustrating various aspects of life and thought in contexts both familiar and exotic. These diverse contributions set the tone for a rich exploration of linguistic and cultural intersectionality. (This is an automatically generated summary.)"
],
"editors": [
{
"name": "Mudie, H. Bolingbroke (Harold Bolingbroke)",
"birth_year": 1880,
"death_year": 1916
}
],
"translators": [],
"subjects": [
"Esperanto -- Periodicals"
],
"bookshelves": [
"Category: Journals",
"Category: Language & Communication",
"The Esperantist"
],
"languages": [
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/44131.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/44131.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/44131.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/44131.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/44131.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/44131/pg44131.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/cache/epub/44131/pg44131-h.zip"
},
"download_count": 313
},
{
"id": 39840,
"title": "The Esperantist, Vol. 2, No. 1",
"authors": [],
"summaries": [
"\"The Esperantist, Vol. 2, No. 1\" by H. Bolingbroke Mudie is a periodical publication focused on the Esperanto movement, likely written in the early 20th century. This edition showcases various articles ranging from poetry and short stories to essays and practical guides on the use of Esperanto and its cultural impact. The publication serves as a platform for fostering communication and cooperation among those interested in the international language Esperanto. At the start of this volume, the content includes a festive poem about Christmas by Clarence Bicknell, alongside a reflective piece by Edward Metcalfe that emphasizes the importance of community and the questions surrounding language. The opening also hints at various upcoming articles, each contributing to the broader goal of promoting the Esperanto language. Additionally, the introduction sets a hopeful tone for the new year, expressing optimism about the growth and reach of Esperanto as an international means of communication, hinting at a variety of cultural and practical discussions that will unfold in future sections. (This is an automatically generated summary.)"
],
"editors": [
{
"name": "Mudie, H. Bolingbroke (Harold Bolingbroke)",
"birth_year": 1880,
"death_year": 1916
}
],
"translators": [],
"subjects": [
"Esperanto -- Periodicals"
],
"bookshelves": [
"Category: Journals",
"Category: Language & Communication",
"Category: Poetry",
"Category: Short Stories",
"The Esperantist"
],
"languages": [
"en",
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/39840.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/39840.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/39840.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/39840.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/39840.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/39840/pg39840.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/files/39840/39840-0.zip"
},
"download_count": 308
},
{
"id": 30991,
"title": "The Esperantist, Vol. 1, No. 4",
"authors": [],
"summaries": [
"\"The Esperantist, Vol. 1, No. 4\" by H. Bolingbroke Mudie is a periodical publication focused on promoting the international language Esperanto, written in the early 20th century. This edition includes a range of articles, speeches, poetry, and notes aimed at fostering the growth and understanding of Esperanto. The content likely addresses the challenges and successes of the Esperantist movement during the time, along with practical suggestions for its spread. The opening portion of the publication features the editorial notes and introductory information about the February 1904 edition. It begins with announcements regarding the London Esperanto Club's annual meeting, emphasizing the confidence and dedication of its members. The President, Felix Moscheles, delivers an inspiring speech highlighting the importance of continuing efforts to oppose prejudices against Esperanto while celebrating the club's achievements. This segment sets the stage for discussions about updates on activities promoting Esperanto, including contributions from various members and a special message from Dr. Zamenhof, the creator of Esperanto, underscoring the language's significance for international communication. (This is an automatically generated summary.)"
],
"editors": [
{
"name": "Mudie, H. Bolingbroke (Harold Bolingbroke)",
"birth_year": 1880,
"death_year": 1916
}
],
"translators": [],
"subjects": [
"Esperanto -- Periodicals"
],
"bookshelves": [
"Category: Journals",
"Category: Language & Communication",
"The Esperantist"
],
"languages": [
"en",
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/30991.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/30991.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/30991.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/30991.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/30991.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/30991/pg30991.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/files/30991/30991-0.zip"
},
"download_count": 297
},
{
"id": 42028,
"title": "En Rusujo per Esperanto",
"authors": [
{
"name": "Rivier, A.",
"birth_year": null,
"death_year": null
}
],
"summaries": [
"\"En Rusujo per Esperanto\" by A. Rivier is a travel narrative written in the early 20th century. The book recounts the author’s journey to Russia and his experiences interacting with its culture and people, all facilitated by the use of the Esperanto language. The narrative is centered on Rivier's personal adventure through Russia, where he shares his observations on the societal conditions and his interactions with local residents. At the start of the book, the author discusses his motivation for visiting Russia, initiated by a friendly correspondence with a Russian correspondent. Despite his lack of knowledge of the Russian language, Rivier decides to embark on this considerable journey from Algiers to Russia, highlighting the challenges he anticipates. He details his preparations and the sense of isolation he feels due to the language barrier, but he remains optimistic about the potential for connection through Esperanto. The opening sets the stage for his unfolding experiences and cultural encounters during his stay in Russia, evoking a sense of wonder and curiosity about this vast and diverse land. (This is an automatically generated summary.)"
],
"editors": [],
"translators": [],
"subjects": [
"Esperanto",
"Russia -- Description and travel"
],
"bookshelves": [
"Category: Travel Writing",
"Esperanto"
],
"languages": [
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/42028.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/42028.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/42028.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/42028.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/42028.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/42028/pg42028.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/cache/epub/42028/pg42028-h.zip"
},
"download_count": 288
},
{
"id": 22592,
"title": "Ifigenio en Taŭrido",
"authors": [
{
"name": "Goethe, Johann Wolfgang von",
"birth_year": 1749,
"death_year": 1832
}
],
"summaries": [
"\"Ifigenio en Taŭrido\" by Johann Wolfgang von Goethe is a verse drama written between 1779-1786, reworking Euripides' ancient Greek tragedy. Saved from sacrifice by the goddess Diana, Iphigenia now serves as her priestess in Tauris, longing desperately for her Greek homeland. When King Thoas proposes marriage, she refuses—but her rejection threatens to restore the barbaric custom of human sacrifice. Meanwhile, her brother Orestes arrives with his friend Pylades on a divine mission, unaware that the priestess holds the key to lifting their family's deadly curse. (This is an automatically generated summary.)"
],
"editors": [],
"translators": [
{
"name": "Zamenhof, L. L. (Ludwik Lejzer)",
"birth_year": 1859,
"death_year": 1917
}
],
"subjects": [
"Iphigenia (Mythological character) -- Drama"
],
"bookshelves": [
"Category: German Literature",
"Category: Plays/Films/Dramas",
"Esperanto"
],
"languages": [
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/22592.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/22592.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/22592.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/22592.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/22592.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/22592/pg22592.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/cache/epub/22592/pg22592-h.zip"
},
"download_count": 287
},
{
"id": 19803,
"title": "Popolmalamiko : $b Dramo en kvin aktoj",
"authors": [
{
"name": "Ibsen, Henrik",
"birth_year": 1828,
"death_year": 1906
}
],
"summaries": [
"\"Popolmalamiko: Dramo en kvin aktoj\" by Henrik Ibsen is a play written in the late 19th century. The work revolves around Dr. Tomas Stockmann, who discovers that the water from the town's bathing facility is contaminated, posing a severe health risk to the community. As he grapples with the implications of his findings, tensions arise between personal convictions and societal pressures. At the start of the play, Dr. Stockmann shares a lively dinner with his family and friends, reflecting the optimism of the town and its new bathing establishment. However, this atmosphere shifts when Stockmann receives news that confirms his suspicions about the dangers of the water. The opening sets the stage for the central conflict: Dr. Stockmann must choose between the well-being of the townspeople and the financial interests that the bathing facility represents, leading to clashes with his brother, the local magistrate, and others who benefit from the status quo. This establishes the thematic exploration of truth, integrity, and the struggle against societal conformity that defines Ibsen's work. (This is an automatically generated summary.)"
],
"editors": [],
"translators": [
{
"name": "Tangerud, Odd",
"birth_year": 1919,
"death_year": 2010
}
],
"subjects": [
"Norwegian drama -- Translations into Esperanto",
"Physicians -- Drama"
],
"bookshelves": [
"Category: Plays/Films/Dramas",
"Esperanto"
],
"languages": [
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/19803.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/19803.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/19803.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/19803.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/19803.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/19803/pg19803.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/files/19803/19803-0.zip"
},
"download_count": 284
},
{
"id": 37643,
"title": "The Esperantist, Vol. 1, No. 11",
"authors": [],
"summaries": [
"\"The Esperantist, Vol. 1, No. 11\" by H. Bolingbroke Mudie is a periodical publication dedicated to the promotion of the international language Esperanto, written in the early 20th century. This specific issue, from September 1904, features a variety of content including articles, poetry, and reports from Esperanto groups around the world, reflecting the growing community and its cultural aspects. The magazine serves as a platform for the exchange of ideas among Esperantists, showcasing their activities, experiences, and the language's significance. At the start of this edition, the editor discusses the development of the magazine and its intent to foster community among Esperantists globally. The opening highlights letters from readers expressing admiration for the magazine's content and encourages subscription renewal to support its growth. Among the articles is a humorous tale involving a misadventure with ostriches that includes themes of culture and commerce, along with reports on events in Havre and Brussels. The publication emphasizes the camaraderie and shared experiences of Esperantists in various locales, setting a tone of unity and celebration for the international language movement. (This is an automatically generated summary.)"
],
"editors": [
{
"name": "Mudie, H. Bolingbroke (Harold Bolingbroke)",
"birth_year": 1880,
"death_year": 1916
}
],
"translators": [],
"subjects": [
"Esperanto -- Periodicals"
],
"bookshelves": [
"Category: Humour",
"Category: Journals",
"Category: Language & Communication",
"Category: Poetry",
"The Esperantist"
],
"languages": [
"en",
"eo"
],
"copyright": false,
"media_type": "Text",
"formats": {
"text/html": "https://www.gutenberg.org/ebooks/37643.html.images",
"application/epub+zip": "https://www.gutenberg.org/ebooks/37643.epub3.images",
"application/x-mobipocket-ebook": "https://www.gutenberg.org/ebooks/37643.kf8.images",
"text/plain; charset=us-ascii": "https://www.gutenberg.org/ebooks/37643.txt.utf-8",
"application/rdf+xml": "https://www.gutenberg.org/ebooks/37643.rdf",
"image/jpeg": "https://www.gutenberg.org/cache/epub/37643/pg37643.cover.medium.jpg",
"application/octet-stream": "https://www.gutenberg.org/files/37643/37643-0.zip"
},
"download_count": 284
},
{
"id": 37977,
"title": "The Esperantist, Vol. 1, No. 13",
"authors": [],