You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 2, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: dev/generated/anilist/tags.json
+32-2Lines changed: 32 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,16 @@
45
45
"description": "Manga that were initially published in full color.",
46
46
"is_adult": false
47
47
},
48
+
{
49
+
"name": "Gekiga",
50
+
"description": "An alternative comics movement of mature manga with stylized and cinematic visuals predominantly from the late 1950s through 1970s.",
51
+
"is_adult": false
52
+
},
53
+
{
54
+
"name": "Graduation Project",
55
+
"description": "A work made by students in place of an exam, typically at higher levels of education, either as a work for the entire course or as a work for a specific year of a course.",
56
+
"is_adult": false
57
+
},
48
58
{
49
59
"name": "Long Strip",
50
60
"description": "Manga originally published in a vertical, long-strip format, designed for viewing on smartphones. Also known as webtoons.",
@@ -80,6 +90,11 @@
80
90
"description": "Animation technique that animators use to trace over motion picture footage, frame by frame, to produce realistic action.",
81
91
"is_adult": false
82
92
},
93
+
{
94
+
"name": "Single-Page Chapter",
95
+
"description": "Manga which consists of the chapters only being one page long.",
96
+
"is_adult": false
97
+
},
83
98
{
84
99
"name": "Stop Motion",
85
100
"description": "Animation style characterized by physical objects being moved incrementally between frames to create the illusion of movement.",
@@ -398,6 +413,11 @@
398
413
"description": "Features themes of self-esteem concerning perceived defects or flaws in appearance, such as body weight or disfigurement, and may discuss topics such as eating disorders, fatphobia, and body dysmorphia.",
399
414
"is_adult": false
400
415
},
416
+
{
417
+
"name": "Brainwashing",
418
+
"description": "Centers on one or more characters who are mentally manipulated by others to behave abnormally or act against their own will.",
419
+
"is_adult": false
420
+
},
401
421
{
402
422
"name": "Cannibalism",
403
423
"description": "Prominently features the act of consuming another member of the same species as food.",
@@ -488,6 +508,11 @@
488
508
"description": "Prominently features graphic bloodshed and violence.",
489
509
"is_adult": false
490
510
},
511
+
{
512
+
"name": "Human Experimentation",
513
+
"description": "Features experiments that use human and humanoid beings as test subjects.",
514
+
"is_adult": false
515
+
},
491
516
{
492
517
"name": "Indigenous Cultures",
493
518
"description": "Prominently features real-life indigenous cultures.",
@@ -702,6 +727,11 @@
702
727
"description": "Prominently features a romance between a man and a woman, not inherently sexual.",
703
728
"is_adult": false
704
729
},
730
+
{
731
+
"name": "Interspecies",
732
+
"description": "Romance between characters of different species.",
733
+
"is_adult": false
734
+
},
705
735
{
706
736
"name": "Love Triangle",
707
737
"description": "Centered around romantic feelings between more than two people. Includes all love polygons.",
@@ -1522,7 +1552,7 @@
1522
1552
},
1523
1553
{
1524
1554
"name": "Isekai",
1525
-
"description": "Features characters being transported into an alternate world setting and having to adapt to their new surroundings.",
1555
+
"description": "Features a character from a modern-day setting being transported into an alternate world and has to adapt to their new surroundings.",
1526
1556
"is_adult": false
1527
1557
},
1528
1558
{
@@ -1547,7 +1577,7 @@
1547
1577
},
1548
1578
{
1549
1579
"name": "Reverse Isekai",
1550
-
"description": "Features a character from a fantasy world who is transported into a modernday setting.",
1580
+
"description": "Features a character from a fantasy world who is transported into a modern-day setting.",
Copy file name to clipboardExpand all lines: viu_media/libs/media_api/_media_tags.py
+20-2Lines changed: 20 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,12 @@ class MediaTag(Enum):
39
39
# Manga that were initially published in full color. (is_adult: False)
40
40
FULL_COLOR="Full Color"
41
41
42
+
# An alternative comics movement of mature manga with stylized and cinematic visuals predominantly from the late 1950s through 1970s. (is_adult: False)
43
+
GEKIGA="Gekiga"
44
+
45
+
# A work made by students in place of an exam, typically at higher levels of education, either as a work for the entire course or as a work for a specific year of a course. (is_adult: False)
46
+
GRADUATION_PROJECT="Graduation Project"
47
+
42
48
# Manga originally published in a vertical, long-strip format, designed for viewing on smartphones. Also known as webtoons. (is_adult: False)
43
49
LONG_STRIP="Long Strip"
44
50
@@ -60,6 +66,9 @@ class MediaTag(Enum):
60
66
# Animation technique that animators use to trace over motion picture footage, frame by frame, to produce realistic action. (is_adult: False)
61
67
ROTOSCOPING="Rotoscoping"
62
68
69
+
# Manga which consists of the chapters only being one page long. (is_adult: False)
70
+
SINGLE_PAGE_CHAPTER="Single-Page Chapter"
71
+
63
72
# Animation style characterized by physical objects being moved incrementally between frames to create the illusion of movement. (is_adult: False)
64
73
STOP_MOTION="Stop Motion"
65
74
@@ -262,6 +271,9 @@ class MediaTag(Enum):
262
271
# Features themes of self-esteem concerning perceived defects or flaws in appearance, such as body weight or disfigurement, and may discuss topics such as eating disorders, fatphobia, and body dysmorphia. (is_adult: False)
263
272
BODY_IMAGE="Body Image"
264
273
274
+
# Centers on one or more characters who are mentally manipulated by others to behave abnormally or act against their own will. (is_adult: False)
275
+
BRAINWASHING="Brainwashing"
276
+
265
277
# Prominently features the act of consuming another member of the same species as food. (is_adult: False)
266
278
CANNIBALISM="Cannibalism"
267
279
@@ -316,6 +328,9 @@ class MediaTag(Enum):
316
328
# Prominently features graphic bloodshed and violence. (is_adult: False)
317
329
GORE="Gore"
318
330
331
+
# Features experiments that use human and humanoid beings as test subjects. (is_adult: False)
332
+
HUMAN_EXPERIMENTATION="Human Experimentation"
333
+
319
334
# Prominently features real-life indigenous cultures. (is_adult: False)
320
335
INDIGENOUS_CULTURES="Indigenous Cultures"
321
336
@@ -450,6 +465,9 @@ class MediaTag(Enum):
450
465
# Prominently features a romance between a man and a woman, not inherently sexual. (is_adult: False)
451
466
HETEROSEXUAL="Heterosexual"
452
467
468
+
# Romance between characters of different species. (is_adult: False)
469
+
INTERSPECIES="Interspecies"
470
+
453
471
# Centered around romantic feelings between more than two people. Includes all love polygons. (is_adult: False)
454
472
LOVE_TRIANGLE="Love Triangle"
455
473
@@ -952,7 +970,7 @@ class MediaTag(Enum):
952
970
# Prominently features character or costume transformations which often grant special abilities. (is_adult: False)
953
971
HENSHIN="Henshin"
954
972
955
-
# Features characters being transported into an alternate world setting and having to adapt to their new surroundings. (is_adult: False)
973
+
# Features a character from a modern-day setting being transported into an alternate world and has to adapt to their new surroundings. (is_adult: False)
956
974
ISEKAI="Isekai"
957
975
958
976
# Prominently features giant monsters. (is_adult: False)
@@ -967,7 +985,7 @@ class MediaTag(Enum):
967
985
# When the dead are summoned as spirits, skeletons, or the undead, usually for the purpose of gaining information or to be used as a weapon. (is_adult: False)
968
986
NECROMANCY="Necromancy"
969
987
970
-
# Features a character from a fantasy world who is transported into a modernday setting. (is_adult: False)
988
+
# Features a character from a fantasy world who is transported into a modern-day setting. (is_adult: False)
971
989
REVERSE_ISEKAI="Reverse Isekai"
972
990
973
991
# Features character(s) who changes one's appearance or form. (is_adult: False)
0 commit comments