feat(provider) add anime tosho

This commit is contained in:
Anderson Oki 2024-03-30 00:42:06 +09:00
parent ad16acb88f
commit e0ac9ba0a0
9 changed files with 2155 additions and 1 deletions

View File

@ -234,6 +234,11 @@ validators = [
Validator('addic7ed.user_agent', must_exist=True, default='', is_type_of=str),
Validator('addic7ed.vip', must_exist=True, default=False, is_type_of=bool),
# animetosho section
Validator('animetosho.search_threshold', must_exist=True, default=6, is_type_of=int, gte=1, lte=15),
Validator('animetosho.anidb_api_client', must_exist=True, default='', is_type_of=str, cast=str),
Validator('animetosho.anidb_api_client_ver', must_exist=True, default=1, is_type_of=int, gte=1, lte=9),
# avistaz section
Validator('avistaz.cookies', must_exist=True, default='', is_type_of=str),
Validator('avistaz.user_agent', must_exist=True, default='', is_type_of=str),

View File

@ -324,6 +324,12 @@ def get_providers_auth():
'timeout': settings.whisperai.timeout,
'ffmpeg_path': _FFMPEG_BINARY,
'loglevel': settings.whisperai.loglevel,
},
"animetosho": {
'anidb_api_client': settings.animetosho.anidb_api_client,
'anidb_api_client_ver': settings.animetosho.anidb_api_client_ver,
'search_threshold': settings.animetosho.search_threshold,
'cache_dir': os.path.join(args.config_dir, "cache"),
}
}

View File

@ -0,0 +1,274 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import
import datetime
import logging
import lzma
import os
import tempfile
from dogpile.cache import make_region
from guessit import guessit
from requests import Session
from subzero.language import Language
from subliminal.exceptions import ConfigurationError, ProviderError
from subliminal_patch.providers import Provider
from subliminal_patch.providers.mixins import ProviderSubtitleArchiveMixin
from subliminal_patch.subtitle import Subtitle, guess_matches
from subliminal.video import Episode
try:
from lxml import etree
except ImportError:
try:
import xml.etree.cElementTree as etree
except ImportError:
import xml.etree.ElementTree as etree
logger = logging.getLogger(__name__)
# TODO: Test and Support Other Languages
supported_languages = [
"eng", # English
"ita", # Italian
]
class AnimeToshoSubtitle(Subtitle):
"""AnimeTosho.org Subtitle."""
provider_name = 'animetosho'
def __init__(self, language, download_link, meta):
super(AnimeToshoSubtitle, self).__init__(language, page_link=download_link)
self.meta = meta
self.download_link = download_link
@property
def id(self):
return self.download_link
def get_matches(self, video):
matches = set()
matches |= guess_matches(video, guessit(self.meta['filename']))
# Add these data are explicit extracted from the API and they always have to match otherwise they wouldn't
# arrive at this point and would stop on list_subtitles.
matches.update(['title', 'series', 'tvdb_id', 'season', 'episode'])
return matches
class AnimeToshoProvider(Provider, ProviderSubtitleArchiveMixin):
"""AnimeTosho.org Provider."""
subtitle_class = AnimeToshoSubtitle
languages = {Language('por', 'BR')} | {Language(sl) for sl in supported_languages}
video_types = Episode
def __init__(self, search_threshold=None, anidb_api_client=None, anidb_api_client_ver=None, cache_dir=None):
self.session = None
if not all([search_threshold, anidb_api_client, anidb_api_client_ver]):
raise ConfigurationError("Search threshold, Api Client and Version must be specified!")
cache_dir = os.path.join(
cache_dir or tempfile.gettempdir(), self.__class__.__name__.lower()
)
self.search_threshold = search_threshold
self.anidb_api_client = anidb_api_client
self.anidb_api_client_ver = anidb_api_client_ver
self.cache = make_region().configure(
'dogpile.cache.dbm', expiration_time=datetime.timedelta(days=1).total_seconds(), arguments={
"filename": os.path.join(cache_dir)
}
)
def initialize(self):
self.session = Session()
def terminate(self):
self.session.close()
def list_subtitles(self, video, languages):
anidb_episode_id = self._get_episode_id(video)
if not anidb_episode_id:
raise ProviderError('Unable to retrieve anidb episode id')
return [s for s in self._get_series(anidb_episode_id) if s.language in languages]
def download_subtitle(self, subtitle):
logger.info('Downloading subtitle %r', subtitle)
r = self.session.get(subtitle.page_link, timeout=10)
r.raise_for_status()
# Check if the bytes content starts with the xz magic number of the xz archives
if not self._is_xz_file(r.content):
raise ProviderError('Unidentified archive type')
subtitle.content = lzma.decompress(r.content)
return subtitle
@staticmethod
def _is_xz_file(content):
return content.startswith(b'\xFD\x37\x7A\x58\x5A\x00')
def _get_episode_id(self, video):
api_url = 'http://api.anidb.net:9001/httpapi'
series_id = self._get_series_id(video)
if not series_id:
return None
cache_key = 'animetosho_series:{}.episodes'.format(series_id)
cached_episodes = self.cache.get(cache_key)
if cached_episodes:
logger.debug('Using cached episodes for series %r', series_id)
episode_elements = etree.fromstring(cached_episodes)
cached_episode = int(episode_elements.find(f".//episode[epno='{video.episode}']").attrib.get('id'))
if cached_episode:
return cached_episode
logger.debug('Cached episodes not found. Retrieving from API %r', series_id)
r = self.session.get(
api_url,
params={
'request': 'anime',
'client': self.anidb_api_client,
'clientver': self.anidb_api_client_ver,
'protover': 1,
'aid': series_id
},
timeout=10)
r.raise_for_status()
xml_root = etree.fromstring(r.content)
if xml_root.attrib.get('code') == '500':
raise ProviderError('AniDb API Abuse detected. Banned status.')
episode_elements = xml_root.find('episodes')
# Cache the episodes
self.cache.set(cache_key, etree.tostring(episode_elements, encoding='utf-8', method='xml'))
logger.debug('Cache written for series %r', series_id)
return int(episode_elements.find(f".//episode[epno='{video.episode}']").attrib.get('id'))
def _get_series_id(self, video):
cache_key_anidb_id = 'animetosho_tvdbid:{}.anidb_id'.format(video.series_tvdb_id)
cache_key_id_mappings = 'animetosho_id_mappings'
cached_series_id = self.cache.get(cache_key_anidb_id)
if cached_series_id:
logger.debug('Using cached value for series tvdb id %r', video.series_tvdb_id)
return cached_series_id
id_mappings = self.cache.get(cache_key_id_mappings)
if not id_mappings:
logger.debug('Id mappings not cached, retrieving fresh mappings')
r = self.session.get(
'https://raw.githubusercontent.com/Anime-Lists/anime-lists/master/anime-list.xml',
timeout=10
)
r.raise_for_status()
id_mappings = r.content
self.cache.set(cache_key_id_mappings, id_mappings)
xml_root = etree.fromstring(id_mappings)
season = video.season if video.season else 0
anime = xml_root.find(f".//anime[@tvdbid='{video.series_tvdb_id}'][@defaulttvdbseason='{season}']")
if not anime:
return None
anidb_id = int(anime.attrib.get('anidbid'))
self.cache.set(cache_key_anidb_id, anidb_id)
logger.debug('Cache written for anidb %r', anidb_id)
return anidb_id
def _get_series(self, episode_id):
storage_download_url = 'https://animetosho.org/storage/attach/'
feed_api_url = 'https://feed.animetosho.org/json'
subtitles = []
entries = self._get_series_entries(episode_id)
for entry in entries:
r = self.session.get(
feed_api_url,
params={
'show': 'torrent',
'id': entry['id'],
},
timeout=10
)
r.raise_for_status()
for file in r.json()['files']:
if 'attachments' not in file:
continue
subtitle_files = list(filter(lambda f: f['type'] == 'subtitle', file['attachments']))
for subtitle_file in subtitle_files:
hex_id = format(subtitle_file['id'], '08x')
subtitle = self.subtitle_class(
Language.fromalpha3b(subtitle_file['info']['lang']),
storage_download_url + '{}/{}.xz'.format(hex_id, subtitle_file['id']),
meta=file,
)
logger.debug('Found subtitle %r', subtitle)
subtitles.append(subtitle)
return subtitles
def _get_series_entries(self, episode_id):
api_url = 'https://feed.animetosho.org/json'
r = self.session.get(
api_url,
params={
'eid': episode_id,
},
timeout=10
)
r.raise_for_status()
j = r.json()
# Ignore records that are not yet ready or has been abandoned by AnimeTosho.
entries = list(filter(lambda t: t['status'] == 'complete', j))[:self.search_threshold]
# Return the latest entries that have been added as it is used to cutoff via the user configuration threshold
entries.sort(key=lambda t: t['timestamp'], reverse=True)
return entries

View File

@ -64,6 +64,30 @@ export const ProviderList: Readonly<ProviderInfo[]> = [
},
],
},
{
key: "animetosho",
name: "Anime Tosho",
description: "Anime Tosho is a free, completely automated service which mirrors most torrents posted on TokyoTosho's anime category, Nyaa.si's English translated anime category and AniDex's anime category.",
inputs: [
{
type: "text",
key: "search_threshold",
defaultValue: 6,
name: "Search Threshold. Increase if you often cannot find subtitles for your Anime. Note that increasing the value will decrease the performance of the search for each Episode.",
},
{
type: "text",
key: "anidb_api_client",
name: "AniDb Api Client Name. Created and Configured under AniDb Api Project."
},
{
type: "text",
key: "anidb_api_client_ver",
defaultValue: 1,
name: "AniDb Api Client Version. Created and Configured under AniDb Api Project."
}
],
},
{
key: "argenteam_dump",
name: "Argenteam Dump",

View File

@ -7,7 +7,7 @@ import pkg_resources
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "../libs/"))
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "../bazarr/"))
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "../custom_libs/"))
def pytest_report_header(config):
conflicting_packages = _get_conflicting("libs")

View File

@ -0,0 +1,779 @@
<?xml version="1.0" encoding="UTF-8"?>
<anime id="17495" restricted="false">
<type>TV Series</type>
<episodecount>12</episodecount>
<startdate>2024-01-07</startdate>
<enddate>2024-03-31</enddate>
<titles>
<title xml:lang="x-jat" type="main">Ore dake Level Up na Ken</title>
<title xml:lang="en" type="synonym">Only I Level Up</title>
<title xml:lang="bg" type="synonym">Соло играч</title>
<title xml:lang="ja" type="official">俺だけレベルアップな件</title>
<title xml:lang="en" type="official">Solo Leveling</title>
<title xml:lang="ko" type="official">나 혼자만 레벨업</title>
<title xml:lang="vi" type="official">Thăng Cấp Một Mình</title>
<title xml:lang="zh-Hant" type="official">我獨自升級</title>
<title xml:lang="zh-Hans" type="official">我独自升级</title>
<title xml:lang="x-kot" type="official">Na Honjaman Rebereop</title>
</titles>
<relatedanime>
<anime id="18576" type="Sequel">Ore dake Level Up na Ken Season 2: Arise from the Shadow</anime>
</relatedanime>
<recommendations total="6">
<recommendation type="For Fans" uid="652565">Surface entertainment only, don`t expect anything deeper than that from solo leveling!</recommendation>
<recommendation type="Recommended" uid="114339">I like it. Finally a decent "hero levels up and becomes really strong" without it turning into a harem ecchi silly face humor type by Episode 2 or 3. Story is solid. There`s character development and some darker elements. They still could have gone abit more into his early struggles with his training.</recommendation>
<recommendation type="Recommended" uid="848084">Levelled up</recommendation>
<recommendation type="Recommended" uid="590939">The only real reason that people don`t rate this as highly as they could is because the main protag is portrayed as the "Mr. perfect" at times too much, ruining the overall experience a lot. Which makes at least some parts of the anime dumbed down.
If you can tolerate that, then it`s a great action watch.
I would say try watching the first 3 episodes and decide. But it gets better as anime progresses, IMO. So it`s worth a shot.</recommendation>
<recommendation type="Must See" uid="173070">Easily top 10 for 2024. Let that sink in.
Someone who starts at the bottom and continues to rise despite adversity and malice. That is what this series embodies. I do not think there is a single person who would not enjoy this series. The MC is humble, yet slightly insane, bordering on incredible. He goes from a weak person to an absolute badass of his own making, not of some random set of occurrences.
I am EAGERLY awaiting season 2. Watch this, you will not be disappointed.</recommendation>
</recommendations>
<url>https://sololeveling-anime.net/</url>
<creators>
<name id="32997" type="Direction">Nakashige Shunsuke</name>
<name id="6722" type="Music">Sawano Hiroyuki</name>
<name id="1303" type="Animation Work">A-1 Pictures</name>
<name id="13185" type="Character Design">Sudou Tomoko</name>
<name id="1541" type="Series Composition">Kimura Noboru</name>
<name id="67798" type="Original Work">Chugong</name>
<name id="67800" type="Original Work">Dubu</name>
<name id="67799" type="Original Work">H-goon</name>
<name id="19363" type="Chief Animation Direction">Tokuda Hirotaka</name>
<name id="13185" type="Chief Animation Direction">Sudou Tomoko</name>
<name id="15745" type="Chief Animation Direction">Furuzumi Chiaki</name>
</creators>
<description>Known as the the Weakest Hunter of All Mankind, E-rank hunter Jinwoo Sung`s contribution to raids amounts to trying not to get killed. Unfortunately, between his mother`s hospital bills, his sister`s tuition, and his own lack of job prospects, he has no choice but to continue to put his life on the line. So when an opportunity arises for a bigger payout, he takes it...only to come face-to-face with a being whose power outranks anything he`s ever seen! With the party leader missing an arm and the only healer a quivering mess, can Jinwoo some­how find them a way out?
Source: Yen Press
Note: The first two episodes received an early screening at a special event on December 10, 2023 at United Cinemas Toyosu in Tokyo. The regular TV broadcast started on January 7, 2024.</description>
<ratings>
<permanent count="480">7.21</permanent>
<temporary count="487">7.46</temporary>
<review count="1">4.00</review>
</ratings>
<picture>294410.jpg</picture>
<resources>
<resource type="1">
<externalentity>
<identifier>26000</identifier>
</externalentity>
</resource>
<resource type="2">
<externalentity>
<identifier>52299</identifier>
</externalentity>
<externalentity>
<identifier>58224</identifier>
</externalentity>
</resource>
<resource type="4">
<externalentity>
<url>https://sololeveling-anime.net/</url>
</externalentity>
</resource>
<resource type="6">
<externalentity>
<identifier>Solo_Leveling</identifier>
</externalentity>
</resource>
<resource type="7">
<externalentity>
<identifier>俺だけレベルアップな件</identifier>
</externalentity>
</resource>
<resource type="8">
<externalentity>
<identifier>6931</identifier>
</externalentity>
</resource>
<resource type="9">
<externalentity>
<identifier>383712</identifier>
</externalentity>
</resource>
<resource type="10">
<externalentity>
<identifier>25263</identifier>
</externalentity>
</resource>
<resource type="19">
<externalentity>
<identifier>나_혼자만_레벨업</identifier>
</externalentity>
</resource>
<resource type="23">
<externalentity>
<identifier>sololeveling_pr</identifier>
</externalentity>
<externalentity>
<identifier>sololeveling_en</identifier>
</externalentity>
</resource>
<resource type="28">
<externalentity>
<identifier>GDKHZEJ0K</identifier>
</externalentity>
</resource>
<resource type="43">
<externalentity>
<identifier>tt21209876</identifier>
</externalentity>
</resource>
<resource type="44">
<externalentity>
<identifier>127532</identifier>
<identifier>tv</identifier>
</externalentity>
</resource>
</resources>
<tags>
<tag id="2604" weight="0" localspoiler="false" globalspoiler="false" verified="true" update="2018-11-08">
<name>content indicators</name>
<description>The content indicators branch is intended to be a less geographically specific tool than the `age rating` used by convention, for warning about things that might cause offence. Obviously there is still a degree of subjectivity involved, but hopefully it will prove useful for parents with delicate children, or children with delicate parents.
Note: Refer to further guidance on http://wiki.anidb.net/w/Categories:Content_Indicators [the Wiki page] for how to apply tag weights for content indicators.</description>
</tag>
<tag id="2607" weight="0" localspoiler="false" globalspoiler="false" verified="true" update="2009-04-29">
<name>themes</name>
<description>Themes describe the very central elements important to the anime stories. They set the backdrop against which the protagonists must face their challenges. Be it School Life, present Daily Life, Military action, Cyberpunk, Law and Order detective work, Sports, or the Underworld. These are only but a few of the more typical backgrounds for anime plots. Add to that a Conspiracy setting with a possible tragic outcome, the Themes span most of the imaginable subject matter relevant to anime.</description>
</tag>
<tag id="2609" weight="0" localspoiler="false" globalspoiler="false" verified="true" update="2018-09-01">
<name>original work</name>
<description>What the anime is based on! This is given as the original work credit in the OP. Mostly of academic interest, but a useful bit of info, hinting at the possible depth of story.</description>
</tag>
<tag id="2610" weight="0" localspoiler="false" globalspoiler="false" verified="true" update="2009-04-22">
<name>setting</name>
<description>The setting describes in what time and place an anime takes place. To a certain extent it describes what you can expect from the world in the anime.</description>
</tag>
<tag id="2611" weight="0" localspoiler="false" globalspoiler="false" verified="true" update="2014-09-08">
<name>elements</name>
<description>Next to Themes setting the backdrop for the protagonists in anime, there are the more detailed plot Elements that centre on character interactions: "What do characters do to each other or what is done to them?". Is it violent Action, an awe-inspiring Adventure in a foreign place, the gripping life of a Detective, a slapstick Comedy, an Ecchi Harem anime, a SciFi epic, or some Fantasy travelling adventure?</description>
</tag>
<tag id="2613" parentid="2610" weight="0" localspoiler="false" globalspoiler="false" verified="true" update="2016-09-04">
<name>place</name>
<description>The places the anime can take place in. Includes more specific places such as a country on Earth, as well as more general places such as a dystopia or a mirror world.</description>
</tag>
<tag id="2628" parentid="2613" weight="400" localspoiler="false" globalspoiler="false" verified="true" update="2018-08-31">
<name>fictional location</name>
<description>A fictional location is a place or world which is run by different set of rules than our common and ordinary world. This may include completely fictional worlds with no semblance of Earth, computer-generated worlds, fantasy worlds, magical worlds, parallel worlds accessible through portals, and so on. Or it may be fictional places like floating islands, dungeons or planets, which can co-exist with ordinary Earth, but are otherwise separate from it.
A world that generally shares the characteristics of, and/or is generally indistinguishable from the real world (bar research on a "more than cursory" level), would NOT be considered a fictional world. A good example is http://anidb.net/a4521 [Code Geass]. It contains several real world nationalities, such as http://anidb.net/a4521 [China], http://anidb.net/t2672 [Japan] (now Area 11), http://anidb.net/t5091 [India], etc, along with fictional nationalities such as http://anidb.net/t2361 [Britannia]. China, Japan, and India are easily identified with a cursory look. The location is unmistakably the planet Earth, even though national borders have been redrawn.
The fictional world should only be tagged if it plays a materially important role in the plot and setting; generally, an episodic occurrence of a fictional world should not be tagged.
A fantasy world is a type of fictional world, part of a fictional universe. Typical worlds involve, but are not limited to: magic or magical abilities, and/or a medieval theme. Some examples include: a parallel world tenuously connected to Earth via magical portals or items; a fictional Earth-like planet in the remote past or future; or an entirely independent world set in another universe. Many fantasy worlds draw heavily on real world history, geography, and sociology, and also on folklore.</description>
</tag>
<tag id="2630" parentid="2613" weight="400" localspoiler="false" globalspoiler="false" verified="true" update="2012-10-13">
<name>Earth</name>
<description>The Earth is the third planet from the Sun, and the densest and fifth-largest of the eight planets in the Solar System. It is in effect a ball of hot mud, but on the surface it`s cold enough, so most of us live on it (or are supposed to). It is circa 4.5 billion years old, and, unless we humans succeed in destroying it over the next couple of centuries, it is expected to last for quite another while, though the changes in the Sun`s emissions due to its aging will likely cause the extinction of everything; the species of earthlings are guaranteed to die, even if we fail to kill them -- unless, of course, we find ourselves another planet and figure out a way to take everything there. Our little planet on a corner of this galaxy may mean nothing in the grand scheme of things, but to its inhabitants it is their home, so, as a species, we cherish it dearly, to the point many cultures even to this day deify it. Being the home to the human civilizations, the Earth is the main setting of most fiction, be it anime or otherwise, but not only are many titles set in other places, such as unrelated fantasy worlds, in a considerable number of fictional titles the Earth is actually destroyed by aggressive alien invaders.</description>
<picurl>126792.jpg</picurl>
</tag>
<tag id="2750" parentid="2604" infobox="true" weight="400" localspoiler="false" globalspoiler="false" verified="true" update="2018-11-08">
<name>violence</name>
<description>Violence is the use of physical force against oneself or another entity, compelling action against one`s will on pain of being hurt.
Note: Refer to further guidance on http://wiki.anidb.net/w/Categories:Content_Indicators [the Wiki page] for how to apply tag weights for content indicators.</description>
</tag>
<tag id="2799" parentid="2609" infobox="true" weight="0" localspoiler="false" globalspoiler="false" verified="true" update="2019-08-13">
<name>novel</name>
<description>A novel is a relatively long work of narrative fiction, normally written in prose form, and which is typically published as a book. Manga, comics, or visual novels do not fit this description and are not considered novels; including a small number of illustrations, however, is still permissible, which means that light novels are considered novels.</description>
</tag>
<tag id="2838" parentid="2628" infobox="true" weight="400" localspoiler="false" globalspoiler="false" verified="true" update="2018-08-31">
<name>parallel world</name>
<description>A parallel world, parallel universe, or alternative reality is a self-contained separate reality coexisting with our own. Because "alternative reality" sometimes implies that the reality is a variant of our own, like for example a mirror world, we use the term "parallel world/universe" which is more general, without any connotations implying a relationship (or lack thereof) with our own world/universe (meaning a fictional world can just as well have an alternative reality, it doesn`t need to be our reality). To put it more simply, this category is to show if more than 1 world/universe/reality is present in the anime.
Multiple timelines of the same world/universe/reality are NOT considered parallel worlds. For example, in http://anidb.net/a7729 [Steins;Gate] the cast travels through multiple "World Lines", which are defined as parallel timelines of the same universe had various events occurred with differing outcomes.</description>
</tag>
<tag id="2841" parentid="2611" weight="200" localspoiler="false" globalspoiler="false" verified="true" update="2017-12-26">
<name>action</name>
<description>Action anime usually involve a fairly straightforward story of good guys versus bad guys, where most disputes are resolved by using physical force. It often contains a lot of shooting, explosions and fighting.</description>
<picurl>211261.jpg</picurl>
</tag>
<tag id="2849" parentid="7050" weight="200" localspoiler="false" globalspoiler="false" verified="true" update="2005-05-07">
<name>fantasy</name>
<description>Fantasy is a genre of fiction that uses magic and other supernatural phenomena as a primary element of plot, theme, or setting. Many works within the genre take place in fictional worlds where magic is common. Fantasy is generally distinguished from science fiction and horror by the expectation that it steers clear of (pseudo-)scientific and macabre themes, respectively, though there is a great deal of overlap between the three (which are subgenres of speculative fiction).
In popular culture, the genre of fantasy is dominated by its medievalist form, especially since the worldwide success of The Lord of the Rings books by J. R. R. Tolkien. In its broadest sense however, fantasy comprises works by many writers, artists, filmmakers, and musicians, from ancient myths and legends to many recent works embraced by a wide audience today.
Fantasy is a vibrant area of academic study in a number of disciplines (English, cultural studies, comparative literature, history, medieval studies). Work in this area ranges widely, from the structuralist theory of Tzvetan Todorov, which emphasizes the fantastic as a liminal space, to work on the connections (political, historical, literary) between medievalism and popular culture
Source: Wiki</description>
<picurl>68768.jpg</picurl>
</tag>
<tag id="2850" parentid="2611" weight="200" localspoiler="false" globalspoiler="false" verified="true" update="2015-10-25">
<name>adventure</name>
<description>Adventures are exciting stories, with new experiences or exotic locales. Adventures are designed to provide an action-filled, energetic experience for the viewer. Rather than the predominant emphasis on violence and fighting that is found in pure action anime, however, the viewer of adventures can live vicariously through the travels, conquests, explorations, creation of empires, struggles and situations that confront the main characters, actual historical figures or protagonists. Under the category of adventures, we can include traditional swashbucklers, serialized films, and historical spectacles, searches or expeditions for lost continents, "jungle" and "desert" epics, treasure hunts and quests, disaster films, and heroic journeys or searches for the unknown. Adventure films are often, but not always, set in an historical period, and may include adapted stories of historical or literary adventure heroes, kings, battles, rebellion, or piracy.</description>
<picurl>178879.jpg</picurl>
</tag>
<tag id="3411" parentid="2841" weight="0" localspoiler="false" globalspoiler="false" verified="true" update="2017-12-26">
<name>fighting</name>
<description>For some reason or other one faction has to take it out on some opponent via fight or battle. Typical examples of this are all the anime with "endless pointless fighting" tag.</description>
<picurl>211266.jpg</picurl>
</tag>
<tag id="3831" parentid="2607" weight="300" localspoiler="false" globalspoiler="false" verified="true" update="2015-05-13">
<name>training</name>
<description>Training is extensive, serious practising a person undergoes in order to develop skills and abilities, such as handling weapons, playing instruments, playing sports, and so on.</description>
</tag>
<tag id="4096" parentid="2750" weight="0" localspoiler="false" globalspoiler="false" verified="true" update="2014-03-23">
<name>gore</name>
<description>A Splatter film or Gore film is a sub-genre of horror film that deliberately focuses on graphic portrayals of gore and graphic violence. These films, through the use of special effects and excessive blood and guts, tend to display an overt interest in the vulnerability of the human body and the theatricality of its mutilation. Due to their willingness to portray images society might consider shocking, splatter films share some ideological grounds with the transgressive art movement. The term "splatter cinema" was coined by George A. Romero to describe his film Dawn of the Dead, though Dawn of the Dead is generally considered by critics to have higher aspirations, such as social commentary, than to be simply exploitative for its own sake.
[Source: wiki]</description>
<picurl>32491.jpg</picurl>
</tag>
<tag id="4128" parentid="6233" weight="0" localspoiler="false" globalspoiler="false" verified="true" update="2008-07-29">
<name>zero to hero</name>
<description>With his first appearance, this character is getting his ass kicked by nearly everyone, but as the plot continues, through training (mental or physical) or instant power-up, he changes into a killing/fighting/winning machine.
The best example: Makunouchi Ippo from Hajime no Ippo series.</description>
</tag>
<tag id="5769" parentid="6151" weight="0" localspoiler="false" globalspoiler="false" verified="true" update="2017-12-02">
<name>panels that require pausing</name>
<description>Panels that require pausing are image or text panels that interrupt regular animation and flash by so quickly that the viewer cannot recognize the image or read the text fast enough while playing at regular speed; they require pausing the video, or at least viewing it at a lower speed. Given the short screen time these panels are given, they are usually not relevant to the plot.</description>
</tag>
<tag id="6151" weight="0" localspoiler="false" globalspoiler="false" verified="true" update="2014-09-10">
<name>technical aspects</name>
<description>It may sometimes be useful to know about technical aspects of a show, such as information about its broadcasting or censorship. Such information can be found here.</description>
</tag>
<tag id="6173" weight="0" localspoiler="false" globalspoiler="false" verified="true" update="2014-09-24">
<name>origin</name>
</tag>
<tag id="6233" parentid="2611" weight="0" localspoiler="false" globalspoiler="false" verified="true" update="2015-08-11">
<name>tropes</name>
<description>A trope is a commonly recurring literary and rhetorical devices, motifs or clichés in creative works. This use is a broader redefining of a literary trope, the use of figurative language, via word, phrase, or even an image, for artistic effect, such as using a figure of speech.
Source: Wikipedia</description>
</tag>
<tag id="7050" parentid="2611" weight="0" localspoiler="false" globalspoiler="false" verified="true" update="2019-04-18">
<name>speculative fiction</name>
<description>Speculative fiction is an umbrella genre encompassing fiction with certain elements that do not exist in the real world, often in the context of supernatural, futuristic or other imaginative themes. This includes, but is not limited to, science fiction, fantasy, superhero fiction, horror, utopian and dystopian fiction, fairytale fantasy, supernatural fiction, as well as combinations thereof.
Source: Wikipedia</description>
</tag>
<tag id="7141" parentid="2849" weight="200" localspoiler="false" globalspoiler="false" verified="true" update="2018-10-16">
<name>goblin</name>
<description>A goblin is a monstrous creature from European folklore, first attested in stories from the Middle Ages. They are ascribed various and conflicting abilities, temperaments and appearances depending on the story and country of origin. They are almost always small and grotesque, mischievous or outright malicious, and greedy, especially for gold and jewelry. They often have magical abilities similar to a http://anidb.net/t780 [fairy] or http://anidb.net/t2646 [demon].
Source: Wikipedia</description>
<picurl>220782.jpg</picurl>
</tag>
<tag id="7640" parentid="2628" weight="400" localspoiler="false" globalspoiler="false" verified="true" update="2020-05-25">
<name>demon world</name>
</tag>
<tag id="7885" parentid="6173" weight="0" localspoiler="false" globalspoiler="false" verified="true" update="2021-11-07">
<name>Japanese production</name>
</tag>
</tags>
<characters>
<character id="133574" type="main character in" update="2024-01-06">
<rating votes="2">2.09</rating>
<name>Mizushino Shun</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>298121.jpg</picture>
<seiyuu id="54194" picture="242881.jpg">Ban Taito</seiyuu>
</character>
<character id="133575" type="secondary cast in" update="2024-02-04">
<name>Morobishi Kenta</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>298122.jpg</picture>
<seiyuu id="56192" picture="223829.jpg">Nakamura Genta</seiyuu>
</character>
<character id="133576" type="secondary cast in" update="2024-01-06">
<name>Shirakawa Taiga</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>298126.jpg</picture>
<seiyuu id="451" picture="266875.jpg">Touchi Hiroki</seiyuu>
</character>
<character id="133577" type="secondary cast in" update="2024-01-06">
<name>Mogami Shin</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>298125.jpg</picture>
<seiyuu id="99" picture="11084.jpeg">Hirakawa Daisuke</seiyuu>
</character>
<character id="133578" type="secondary cast in" update="2024-01-06">
<rating votes="2">5.58</rating>
<name>Kousaka Shizuku</name>
<gender>female</gender>
<charactertype id="1">Character</charactertype>
<picture>298124.jpg</picture>
<seiyuu id="34984" picture="222849.jpg">Ueda Reina</seiyuu>
</character>
<character id="133584" type="secondary cast in" update="2024-01-06">
<name>Inukai Akira</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>298128.jpg</picture>
<seiyuu id="34070" picture="11215.jpeg">Furukawa Makoto</seiyuu>
</character>
<character id="133585" type="secondary cast in" update="2024-01-06">
<name>Gotou Kiyoomi</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>298127.jpg</picture>
<seiyuu id="2782" picture="263455.jpg">Ginga Banjou</seiyuu>
</character>
<character id="135141" type="secondary cast in" update="2024-01-06">
<rating votes="1">5.46</rating>
<name>Mizushino Aoi</name>
<gender>female</gender>
<charactertype id="1">Character</charactertype>
<picture>298123.jpg</picture>
<seiyuu id="65930" picture="268452.jpg">Mikawa Haruna</seiyuu>
</character>
<character id="137407" type="secondary cast in" update="2024-01-21">
<rating votes="1">5.46</rating>
<name>Mizuki Eri</name>
<gender>female</gender>
<charactertype id="1">Character</charactertype>
<picture>298735.jpg</picture>
<seiyuu id="38921" picture="11409.jpeg">Hon`izumi Rina</seiyuu>
</character>
<character id="137408" type="secondary cast in" update="2024-01-21">
<name>Michikado Taisei</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>298736.jpg</picture>
<seiyuu id="2588" picture="264505.jpg">Uchiyama Kouki</seiyuu>
</character>
<character id="137409" type="secondary cast in" update="2024-01-21">
<name>Mabuchi Isamu</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>298737.jpg</picture>
<seiyuu id="277" picture="223606.jpg">Hanawa Eiji</seiyuu>
</character>
<character id="137921" type="secondary cast in" update="2024-02-03">
<name>Mashima Nobuharu</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>299525.jpg</picture>
<seiyuu id="40716" picture="159989.jpg">Yamamoto Manta</seiyuu>
</character>
<character id="137922" type="secondary cast in" update="2024-02-18">
<name>Ukyou Hayato</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>299526.jpg</picture>
<seiyuu id="6919" picture="223669.jpg">Mamiya Yasuhiro</seiyuu>
</character>
<character id="137938" type="main character in" update="2024-02-04">
<rating votes="2">1.98</rating>
<name>Mizushino Shun</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>299558.jpg</picture>
<seiyuu id="54194" picture="242881.jpg">Ban Taito</seiyuu>
</character>
<character id="138808" type="appears in" update="2024-03-16">
<name>Ukyou Masato</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>301298.jpg</picture>
<seiyuu id="200" picture="17015.jpg">Suwabe Jun`ichi</seiyuu>
</character>
<character id="138809" type="appears in" update="2024-03-03">
<name>Hamura</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>300651.jpg</picture>
<seiyuu id="61105" picture="249561.jpg">Higa Ryousuke</seiyuu>
</character>
<character id="139307" type="appears in" update="2024-03-16">
<name>Shishido Koushirou</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>301273.jpg</picture>
<seiyuu id="19477" picture="50701.jpg">Kondou Hironori</seiyuu>
</character>
<character id="139308" type="appears in" update="2024-03-16">
<name>Asahina Rin</name>
<gender>female</gender>
<charactertype id="1">Character</charactertype>
<picture>301274.jpg</picture>
<seiyuu id="43492" picture="232251.jpg">Tomita Miyu</seiyuu>
</character>
<character id="139309" type="appears in" update="2024-03-16">
<name>Yoshida Kyouhei</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>301275.jpg</picture>
<seiyuu id="58011" picture="289290.jpg">Morinaga Ayato</seiyuu>
</character>
<character id="139310" type="appears in" update="2024-03-30">
<name>Minobe Gou</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>302016.jpg</picture>
<seiyuu id="33512" picture="11412.jpeg">Enoki Jun`ya</seiyuu>
</character>
<character id="139311" type="appears in" update="2024-03-16">
<name>Mizushino Satoko</name>
<gender>female</gender>
<charactertype id="1">Character</charactertype>
<picture>301297.jpg</picture>
</character>
<character id="139314" type="appears in" update="2024-03-16">
<name>Inamiya Satsuki</name>
<gender>female</gender>
<charactertype id="1">Character</charactertype>
<picture>301281.jpg</picture>
<seiyuu id="34427" picture="295986.jpg">Aoki Ruriko</seiyuu>
</character>
<character id="139315" type="appears in" update="2024-03-16">
<name>Rina</name>
<gender>female</gender>
<charactertype id="1">Character</charactertype>
<picture>301282.jpg</picture>
<seiyuu id="53080" picture="211728.jpg">Aihara Kotomi</seiyuu>
</character>
<character id="139316" type="appears in" update="2024-03-16">
<name>Fujisaki Yukari</name>
<gender>female</gender>
<charactertype id="1">Character</charactertype>
<picture>301283.jpg</picture>
</character>
<character id="139318" type="appears in" update="2024-03-16">
<name>Jun</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>301285.jpg</picture>
<seiyuu id="38716" picture="228931.jpg">Kobatake Masafumi</seiyuu>
</character>
<character id="139319" type="appears in" update="2024-03-16">
<name>Sawada Kouji</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>301286.jpg</picture>
<seiyuu id="75113" picture="298294.jpg">Hatano Kakeru</seiyuu>
</character>
<character id="139320" type="appears in" update="2024-03-16">
<name>Wataru</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>301287.jpg</picture>
<seiyuu id="54148" picture="216456.jpg">Hayama Shouta</seiyuu>
</character>
<character id="139321" type="appears in" update="2024-03-16">
<name>Mikihisa</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>301288.jpg</picture>
</character>
<character id="139322" type="appears in" update="2024-03-16">
<name>Jin</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>301289.jpg</picture>
<seiyuu id="42137" picture="167369.jpg">Hose Yuuichi</seiyuu>
</character>
<character id="139324" type="appears in" update="2024-03-16">
<name>Uehara Yuuma</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>301291.jpg</picture>
<seiyuu id="36910" picture="214237.jpg">Kobayashi Chikahiro</seiyuu>
</character>
<character id="139326" type="appears in" update="2024-03-16">
<name>Matsuura Ryouhei</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>301293.jpg</picture>
<seiyuu id="61025" picture="249458.jpg">Hirose Takehisa</seiyuu>
</character>
<character id="139327" type="appears in" update="2024-03-16">
<name>Morobishi Meisei</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>301294.jpg</picture>
<seiyuu id="144" picture="11542.jpeg">Sakuya Shunsuke</seiyuu>
</character>
<character id="139328" type="appears in" update="2024-03-16">
<name>Mashima Yuuka</name>
<gender>female</gender>
<charactertype id="1">Character</charactertype>
<picture>301295.jpg</picture>
<seiyuu id="61328" picture="249993.jpg">Mitani Ayako</seiyuu>
</character>
<character id="139330" type="appears in" update="2024-03-16">
<name>Laura</name>
<gender>female</gender>
<charactertype id="1">Character</charactertype>
<picture>301299.jpg</picture>
<seiyuu id="33578" picture="225440.jpg">Shiraishi Haruka</seiyuu>
</character>
<character id="139629" type="appears in" update="2024-03-23">
<name>Morobishi Shingo</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>301651.jpg</picture>
<seiyuu id="48513" picture="232219.jpg">Okino Kouji</seiyuu>
</character>
<character id="139864" type="appears in" update="2024-03-30">
<name>Kuga Arata</name>
<gender>male</gender>
<charactertype id="1">Character</charactertype>
<picture>302014.jpg</picture>
<seiyuu id="40456" picture="181638.jpg">Hayashi Daichi</seiyuu>
</character>
</characters>
<episodes>
<episode id="274076" update="2024-01-06">
<epno type="1">1</epno>
<length>25</length>
<airdate>2024-01-07</airdate>
<rating votes="10">3.73</rating>
<title xml:lang="ja">I`m Used to It</title>
<title xml:lang="en">I`m Used to It</title>
<title xml:lang="x-jat">I`m Used to It</title>
<summary>Around ten years ago, gates that connected our world to another dimension began to appear, leading to the rise of hunters who would traverse these gates to fight the magic beasts within. Sung Jinwoo, E-Rank hunter, is the weakest of them all.
Source: crunchyroll</summary>
<resources>
<resource type="28">
<externalentity>
<identifier>G14U415QM</identifier>
</externalentity>
</resource>
</resources>
</episode>
<episode id="274077" update="2024-01-06">
<epno type="1">2</epno>
<length>25</length>
<airdate>2024-01-14</airdate>
<rating votes="8">4.16</rating>
<title xml:lang="ja">If I Had One More Chance</title>
<title xml:lang="en">If I Had One More Chance</title>
<title xml:lang="x-jat">If I Had One More Chance</title>
<resources>
<resource type="28">
<externalentity>
<identifier>GJWU20KNE</identifier>
</externalentity>
</resource>
</resources>
</episode>
<episode id="274078" update="2023-12-19">
<epno type="1">3</epno>
<length>25</length>
<airdate>2024-01-21</airdate>
<rating votes="9">3.06</rating>
<title xml:lang="ja">It`s Like a Game</title>
<title xml:lang="en">It`s Like a Game</title>
<title xml:lang="x-jat">It`s Like a Game</title>
<resources>
<resource type="28">
<externalentity>
<identifier>GN7UD10X2</identifier>
</externalentity>
</resource>
</resources>
</episode>
<episode id="274079" update="2023-12-19">
<epno type="1">4</epno>
<length>25</length>
<airdate>2024-01-28</airdate>
<rating votes="10">3.85</rating>
<title xml:lang="ja">I`ve Gotta Get Stronger</title>
<title xml:lang="en">I`ve Gotta Get Stronger</title>
<title xml:lang="x-jat">I`ve Gotta Get Stronger</title>
<resources>
<resource type="28">
<externalentity>
<identifier>GK9U3KWVK</identifier>
</externalentity>
</resource>
</resources>
</episode>
<episode id="275169" update="2024-01-04">
<epno type="4">T1</epno>
<length>0</length>
<title xml:lang="en">Trailer 1</title>
<resources>
<resource type="28">
<externalentity>
<identifier>G50UZVM9M</identifier>
</externalentity>
</resource>
</resources>
</episode>
<episode id="275170" update="2024-01-04">
<epno type="4">T2</epno>
<length>0</length>
<title xml:lang="en">Trailer 2</title>
<resources>
<resource type="28">
<externalentity>
<identifier>GD9UV3EJG</identifier>
</externalentity>
</resource>
</resources>
</episode>
<episode id="275171" update="2024-01-04">
<epno type="4">T3</epno>
<length>0</length>
<title xml:lang="en">Trailer 3</title>
<resources>
<resource type="28">
<externalentity>
<identifier>G8WUN1783</identifier>
</externalentity>
</resource>
</resources>
</episode>
<episode id="276604" update="2024-02-03">
<epno type="1">5</epno>
<length>25</length>
<airdate>2024-02-04</airdate>
<rating votes="8">3.98</rating>
<title xml:lang="ja">A Pretty Good Deal</title>
<title xml:lang="en">A Pretty Good Deal</title>
<title xml:lang="x-jat">A Pretty Good Deal</title>
<summary>Jinwoo joins a party led by Hwang Dongsuk to meet the headcount necessary for a C-Rank dungeon. Joined by another temporary hire, Yoo Jinho, the party defeats beasts without much trouble, but Jinwoo has suspicions about the group`s lack of a healer.
Source: crunchyroll</summary>
<resources>
<resource type="28">
<externalentity>
<identifier>GMKUXP091</identifier>
</externalentity>
</resource>
</resources>
</episode>
<episode id="276605" update="2024-02-10">
<epno type="1">6</epno>
<length>25</length>
<airdate>2024-02-11</airdate>
<rating votes="8">7.29</rating>
<title xml:lang="ja">The Real Hunt Begins</title>
<title xml:lang="en">The Real Hunt Begins</title>
<title xml:lang="x-jat">The Real Hunt Begins</title>
<summary>While the C-Rank dungeon raid by Jinwoo and the others seems to be progressing well, the moment they step into an area covered in mana stones with a sleeping dungeon boss, things take a wrong turn.
Source: crunchyroll</summary>
<resources>
<resource type="28">
<externalentity>
<identifier>GVWU071XN</identifier>
</externalentity>
</resource>
</resources>
</episode>
<episode id="276606" update="2024-02-17">
<epno type="1">7</epno>
<length>25</length>
<airdate>2024-02-18</airdate>
<rating votes="8">5.40</rating>
<title xml:lang="ja">Let`s See How Far I Can Go</title>
<title xml:lang="en">Let`s See How Far I Can Go</title>
<title xml:lang="x-jat">Let`s See How Far I Can Go</title>
<summary>As Jinwoo continues his training, he completes a daily quest one day by doing more than the quest requires, and a key that leads to a certain item appears in front of him.
Source: crunchyroll</summary>
<resources>
<resource type="28">
<externalentity>
<identifier>G31UX48EE</identifier>
</externalentity>
</resource>
</resources>
</episode>
<episode id="276607" update="2024-03-02">
<epno type="1">8</epno>
<length>25</length>
<airdate>2024-03-03</airdate>
<rating votes="6">2.67</rating>
<title xml:lang="ja">This Is Frustrating</title>
<title xml:lang="en">This Is Frustrating</title>
<title xml:lang="x-jat">This Is Frustrating</title>
<summary>Jinwoo answers a Hunter`s Association request to take part in the raid of a D-Rank dungeon, where he encounters a few familiar faces.
Source: crunchyroll</summary>
<resources>
<resource type="28">
<externalentity>
<identifier>G2XU0G910</identifier>
</externalentity>
</resource>
</resources>
</episode>
<episode id="277515" update="2024-03-09">
<epno type="1">9</epno>
<length>25</length>
<airdate>2024-03-10</airdate>
<rating votes="5">5.86</rating>
<title xml:lang="ja">You`ve Been Hiding Your Skills</title>
<title xml:lang="en">You`ve Been Hiding Your Skills</title>
<title xml:lang="x-jat">You`ve Been Hiding Your Skills</title>
<summary>At the D-Rank raid, Jinwoo is reunited with four of the Cartenon Temple survivors. Together, they explore the dungeon with Kang Taeshik and his men. After splitting up, they hear a scream, and then...
Source: crunchyroll</summary>
<resources>
<resource type="28">
<externalentity>
<identifier>G8WUN15V7</identifier>
</externalentity>
</resource>
</resources>
</episode>
<episode id="277516" update="2024-03-16">
<epno type="1">10</epno>
<length>25</length>
<airdate>2024-03-17</airdate>
<rating votes="6">4.23</rating>
<title xml:lang="ja">What Is This, a Picnic?</title>
<title xml:lang="en">What Is This, a Picnic?</title>
<title xml:lang="x-jat">What Is This, a Picnic?</title>
<summary>Jinwoo survives tragedy once again, but Woo Jinchul warns him that Hwang Dongsoo, an S-Rank hunter, may be after his life. Determined to grow stronger, Jinwoo teams up with Jinho to raid a succession of C-Rank dungeons, but they attract attention...
Source: crunchyroll</summary>
<resources>
<resource type="28">
<externalentity>
<identifier>GZ7UVE939</identifier>
</externalentity>
</resource>
</resources>
</episode>
<episode id="277517" update="2024-03-23">
<epno type="1">11</epno>
<length>25</length>
<airdate>2024-03-24</airdate>
<rating votes="6">5.40</rating>
<title xml:lang="ja">A Knight Who Defends an Empty Throne</title>
<title xml:lang="en">A Knight Who Defends an Empty Throne</title>
<title xml:lang="x-jat">A Knight Who Defends an Empty Throne</title>
<summary>Out of the blue, a "job-change quest" pops up in Jinwoo`s window. Feeling that it may help him get stronger, he enters the gate. Inside, he fights wave after wave of enemies, culminating in a knight who brings back memories of the Cartenon Temple.
Source: crunchyroll</summary>
<resources>
<resource type="28">
<externalentity>
<identifier>GD9UV37Z0</identifier>
</externalentity>
</resource>
</resources>
</episode>
<episode id="277518" update="2024-03-30">
<epno type="1">12</epno>
<length>25</length>
<airdate>2024-03-31</airdate>
<rating votes="4">3.83</rating>
<title xml:lang="ja">Arise</title>
<title xml:lang="en">Arise</title>
<title xml:lang="x-jat">Arise</title>
<summary>Drained from endless battle, Jinwoo sees a phantom of his past self. To overcome his own past as the Weakest Hunter of All Mankind, he struggles to find a way to clear the job-change quest.
Source: crunchyroll</summary>
<resources>
<resource type="28">
<externalentity>
<identifier>GQJUG3W0X</identifier>
</externalentity>
</resource>
</resources>
</episode>
<episode id="277796" recap="true" update="2024-02-24">
<epno type="2">S1</epno>
<length>25</length>
<airdate>2024-02-25</airdate>
<title xml:lang="ja">How to Get Stronger</title>
<title xml:lang="en">How to Get Stronger</title>
<title xml:lang="x-jat">How to Get Stronger</title>
<summary>Jinwoo recaps the events of the story so far, from his humble beginnings as the Weakest Hunter of All Mankind to his newfound power and renewed purpose.
Source: crunchyroll</summary>
<resources>
<resource type="28">
<externalentity>
<identifier>GPWUKVMJX</identifier>
</externalentity>
</resource>
</resources>
</episode>
</episodes>
</anime>

View File

@ -0,0 +1,756 @@
[
{
"id": 608526,
"title": "[EMBER] Ore dake Level Up na Ken S01E12 [1080p] [HEVC WEBRip] (Solo Leveling)",
"link": "https://animetosho.org/view/ember-ore-dake-level-up-na-ken-s01e12.n1796835",
"timestamp": 1711853493,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796835,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/f9670720a5142ec31aa8e3715745f1392e3ffd5b/%5BEMBER%5D%20Solo%20Leveling%20-%2012.torrent",
"torrent_name": "[EMBER] Solo Leveling - 12.mkv",
"info_hash": "f9670720a5142ec31aa8e3715745f1392e3ffd5b",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:7FTQOIFFCQXMGGVI4NYVORPRHEXD77K3&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&dn=%5BEMBER%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20S01E12%20%5B1080p%5D%20%5BHEVC%20WEBRip%5D%20%28Solo%20Leveling%29",
"seeders": 316,
"leechers": 24,
"torrent_downloaded_count": 1164,
"tracker_updated": 1711872554,
"nzb_url": "https://animetosho.org/storage/nzbs/0009490e/%5BEMBER%5D%20Solo%20Leveling%20-%2012.nzb",
"total_size": 369572311,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": null,
"article_url": null,
"article_title": null,
"website_url": null
},
{
"id": 608516,
"title": "[Anime Time] Solo Leveling - 12 [1080p][HEVC 10bit x265][AAC][Multi Sub] [Weekly] Ore dake Level Up na Ken",
"link": "https://animetosho.org/view/anime-time-solo-leveling-12-1080p-hevc-10bit.n1796824",
"timestamp": 1711851382,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796824,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/db16234b7aba70d2d901bde30fb0aa899589da47/%5BAnime%20Time%5D%20Solo%20Leveling%20-%2012%20%5B1080p%5D%5BHEVC%2010bit%20x265%5D%5BAAC%5D%5BMulti%20Sub%5D.torrent",
"torrent_name": "[Anime Time] Solo Leveling - 12 [1080p][HEVC 10bit x265][AAC][Multi Sub].mkv",
"info_hash": "db16234b7aba70d2d901bde30fb0aa899589da47",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:3MLCGS32XJYNFWIBXXRQ7MFKRGKYTWSH&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=http%3A%2F%2Fanidex.moe%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&dn=%5BAnime%20Time%5D%20Solo%20Leveling%20-%2012%20%5B1080p%5D%5BHEVC%2010bit%20x265%5D%5BAAC%5D%5BMulti%20Sub%5D%20%5BWeekly%5D%20Ore%20dake%20Level%20Up%20na%20Ken",
"seeders": 85,
"leechers": 11,
"torrent_downloaded_count": 436,
"tracker_updated": 1711892085,
"nzb_url": "https://animetosho.org/storage/nzbs/00094904/%5BAnime%20Time%5D%20Solo%20Leveling%20-%2012%20%5B1080p%5D%5BHEVC%2010bit%20x265%5D%5BAAC%5D%5BMulti%20Sub%5D.nzb",
"total_size": 588022366,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": null,
"article_url": null,
"article_title": null,
"website_url": "http://animetime.cc/"
},
{
"id": 608491,
"title": "Solo Leveling - 12 (WEB 4K | 2160p AV1 AAC).mkv",
"link": "https://animetosho.org/view/solo-leveling-12-web-4k-2160p-av1-aac-mkv.d595164",
"timestamp": 1711845852,
"status": "complete",
"tosho_id": null,
"nyaa_id": null,
"nyaa_subdom": null,
"anidex_id": 595164,
"torrent_url": "https://animetosho.org/storage/torrent/cfc631026a1837ef70ff6993aa9c1b1304e0d75b/Solo%20Leveling%20-%2012%20%28WEB%204K%20AV1%20AAC%29.torrent",
"torrent_name": "Solo Leveling - 12 (WEB 4K AV1 AAC).mkv",
"info_hash": "cfc631026a1837ef70ff6993aa9c1b1304e0d75b",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:Z7DDCATKDA3664H7NGJ2VHA3CMCOBV23&tr=http%3A%2F%2Fanidex.moe%3A6969%2Fannounce&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=http%3A%2F%2Ftracker.anirena.com%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker-udp.anirena.com%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&dn=Solo%20Leveling%20-%2012%20%28WEB%204K%20%7C%202160p%20AV1%20AAC%29.mkv",
"seeders": 11,
"leechers": 0,
"torrent_downloaded_count": 118,
"tracker_updated": 1712027991,
"nzb_url": "https://animetosho.org/storage/nzbs/000948eb/Solo%20Leveling%20-%2012%20%28WEB%204K%20AV1%20AAC%29.nzb",
"total_size": 586875995,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": null,
"article_url": null,
"article_title": null,
"website_url": null
},
{
"id": 608439,
"title": "[SanKyuu] Ore dake Level Up na Ken (Solo Leveling) - 12 [WEB 1080p][AV1][AAC E-AC3][Multi-Sub]",
"link": "https://animetosho.org/view/sankyuu-ore-dake-level-up-na-ken-solo.n1796722",
"timestamp": 1711836670,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796722,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/fb8193f9da38b06a444e2a50966c3fbefdb7dcde/%5BSanKyuu%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20%28Solo%20Leveling%29%20-%2012%20%5BWEB%201080p%20AV1%20AAC%20E-AC3%5D%20%5B325A372A%5D.torrent",
"torrent_name": "[SanKyuu] Ore dake Level Up na Ken (Solo Leveling) - 12 [WEB 1080p AV1 AAC E-AC3] [325A372A].mkv",
"info_hash": "fb8193f9da38b06a444e2a50966c3fbefdb7dcde",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:7OAZH6O2HCYGURCOFJIJM3B7X363PXG6&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=http%3A%2F%2Fanidex.moe%3A6969%2Fannounce&tr=http%3A%2F%2Ftracker.anirena.com%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker-udp.anirena.com%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&dn=%5BSanKyuu%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20%28Solo%20Leveling%29%20-%2012%20%5BWEB%201080p%5D%5BAV1%5D%5BAAC%20E-AC3%5D%5BMulti-Sub%5D",
"seeders": 51,
"leechers": 2,
"torrent_downloaded_count": 522,
"tracker_updated": 1711939563,
"nzb_url": "https://animetosho.org/storage/nzbs/000948b7/%5BSanKyuu%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20%28Solo%20Leveling%29%20-%2012%20%5BWEB%201080p%20AV1%20AAC%20E-AC3%5D%20%5B325A372A%5D.nzb",
"total_size": 477160034,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": null,
"article_url": null,
"article_title": null,
"website_url": null
},
{
"id": 608407,
"title": "[NeoLX] Solo Leveling - S01E12 [END][1080p x264 10bits AAC][Multiple Subtitles].mkv",
"link": "https://animetosho.org/view/neolx-solo-leveling-s01e12-end-1080p-x264-10bits.1859288",
"timestamp": 1711831500,
"status": "complete",
"tosho_id": 1859288,
"nyaa_id": null,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/4a053ad27c1ca38db68b77f1a81860948bec93cb/%5BNeoLX%5D%20Solo%20Leveling%20-%20S01E12%20%5BEND%5D%5B1080p%20x264%2010bits%20AAC%5D%5BMultiple%20Subtitles%5D.torrent",
"torrent_name": "[NeoLX] Solo Leveling - S01E12 [END][1080p x264 10bits AAC][Multiple Subtitles].mkv",
"info_hash": "4a053ad27c1ca38db68b77f1a81860948bec93cb",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:JICTVUT4DSRY3NULO7Y2QGDASSF6ZE6L&tr=http%3A%2F%2Fanidex.moe%3A6969%2Fannounce&tr=http%3A%2F%2Ftracker.anirena.com%3A80%2Fannounce&tr=http%3A%2F%2Ftracker.acgnx.se%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.tiny-vps.com%3A6969%2Fannounce&dn=%5BNeoLX%5D%20Solo%20Leveling%20-%20S01E12%20%5BEND%5D%5B1080p%20x264%2010bits%20AAC%5D%5BMultiple%20Subtitles%5D.mkv",
"seeders": 22,
"leechers": 0,
"torrent_downloaded_count": 444,
"tracker_updated": 1712027991,
"nzb_url": "https://animetosho.org/storage/nzbs/00094897/%5BNeoLX%5D%20Solo%20Leveling%20-%20S01E12%20%5BEND%5D%5B1080p%20x264%2010bits%20AAC%5D%5BMultiple%20Subtitles%5D.nzb",
"total_size": 1775949490,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": null,
"article_url": null,
"article_title": null,
"website_url": null
},
{
"id": 608385,
"title": "[CameEsp] Solo Leveling - 12 [1080p][ESP-ENG][mkv].mkv",
"link": "https://animetosho.org/view/cameesp-solo-leveling-12-1080p-esp-eng-mkv-mkv.1859281",
"timestamp": 1711829220,
"status": "skipped",
"tosho_id": 1859281,
"nyaa_id": 1796635,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/7e683310c0a03a8d94ad4a1aaac0b7f97d98e70e/%5BCameEsp%5D%20Solo%20Leveling%20-%2012%20%5B1080p%5D%5BESP-ENG%5D%5Bmkv%5D.torrent",
"torrent_name": "",
"info_hash": "7e683310c0a03a8d94ad4a1aaac0b7f97d98e70e",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:PZUDGEGAUA5I3FFNJINKVQFX7F6ZRZYO&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=http%3A%2F%2Fanidex.moe%3A6969%2Fannounce&tr=http%3A%2F%2Ftracker.anirena.com%3A80%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&dn=%5BCameEsp%5D%20Solo%20Leveling%20-%2012%20%5B1080p%5D%5BESP-ENG%5D%5Bmkv%5D.mkv",
"seeders": 178,
"leechers": 21,
"torrent_downloaded_count": 541,
"tracker_updated": null,
"nzb_url": null,
"total_size": 1448914325,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": null,
"article_url": null,
"article_title": null,
"website_url": "https://linkr.bio/CAME_CameEsp"
},
{
"id": 608386,
"title": "[CameEsp] Solo Leveling - 12 [720p][ESP-ENG][mkv].mkv",
"link": "https://animetosho.org/view/cameesp-solo-leveling-12-720p-esp-eng-mkv-mkv.1859282",
"timestamp": 1711829220,
"status": "skipped",
"tosho_id": 1859282,
"nyaa_id": 1796636,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/3b35bdf9880489b38f7a318cca8fe02ff31e430c/%5BCameEsp%5D%20Solo%20Leveling%20-%2012%20%5B720p%5D%5BESP-ENG%5D%5Bmkv%5D.torrent",
"torrent_name": "",
"info_hash": "3b35bdf9880489b38f7a318cca8fe02ff31e430c",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:HM2336MIASE3HD32GGGMVD7AF7ZR4QYM&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=http%3A%2F%2Fanidex.moe%3A6969%2Fannounce&tr=http%3A%2F%2Ftracker.anirena.com%3A80%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&dn=%5BCameEsp%5D%20Solo%20Leveling%20-%2012%20%5B720p%5D%5BESP-ENG%5D%5Bmkv%5D.mkv",
"seeders": 35,
"leechers": 10,
"torrent_downloaded_count": 160,
"tracker_updated": null,
"nzb_url": null,
"total_size": 737663624,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": null,
"article_url": null,
"article_title": null,
"website_url": "https://linkr.bio/CAME_CameEsp"
},
{
"id": 608370,
"title": "[Valenciano] Ore dake Level Up na Ken - 12 [1080p][AV1 10bit][AAC][Multi-Sub] (Weekly).mkv",
"link": "https://animetosho.org/view/valenciano-ore-dake-level-up-na-ken-12.n1796530",
"timestamp": 1711826614,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796530,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/f89a9ffa23f5fc3321f3e2c476dbccbf0435fc98/%5BValenciano%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20-%2012%20%5B1080p%5D%5BAV1%2010bit%5D%5BAAC%5D%5BMulti-Sub%5D%20%28Weekly%29.torrent",
"torrent_name": "[Valenciano] Ore dake Level Up na Ken - 12 [1080p][AV1 10bit][AAC][Multi-Sub] (Weekly).mkv",
"info_hash": "f89a9ffa23f5fc3321f3e2c476dbccbf0435fc98",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:7CNJ76RD6X6DGIPT4LCHNW6MX4CDL7EY&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&dn=%5BValenciano%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20-%2012%20%5B1080p%5D%5BAV1%2010bit%5D%5BAAC%5D%5BMulti-Sub%5D%20%28Weekly%29.mkv",
"seeders": 22,
"leechers": 2,
"torrent_downloaded_count": 240,
"tracker_updated": 1711940503,
"nzb_url": "https://animetosho.org/storage/nzbs/00094872/%5BValenciano%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20-%2012%20%5B1080p%5D%5BAV1%2010bit%5D%5BAAC%5D%5BMulti-Sub%5D%20%28Weekly%29.nzb",
"total_size": 427930434,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": null,
"article_url": null,
"article_title": null,
"website_url": "https://discord.gg/83dRFDFDp7"
},
{
"id": 608368,
"title": "[Erai-raws] Ore dake Level Up na Ken - 12 [1080p][HEVC][Multiple Subtitle] [ENG][POR-BR][SPA-LA][SPA][ARA][FRE][GER][ITA][RUS]",
"link": "https://animetosho.org/view/erai-raws-ore-dake-level-up-na-ken.n1796524",
"timestamp": 1711825169,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796524,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/8009ee0e9b20732f44df9bf5eaef926df0814d68/%5BErai-raws%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20-%2012%20%5B1080p%5D%5BHEVC%5D%5BMultiple%20Subtitle%5D%5BB46F650F%5D.torrent",
"torrent_name": "[Erai-raws] Ore dake Level Up na Ken - 12 [1080p][HEVC][Multiple Subtitle][B46F650F].mkv",
"info_hash": "8009ee0e9b20732f44df9bf5eaef926df0814d68",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:QAE64DU3EBZS6RG7TP26V34SNXYICTLI&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=http%3A%2F%2Fopen.acgnxtracker.com%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&dn=%5BErai-raws%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20-%2012%20%5B1080p%5D%5BHEVC%5D%5BMultiple%20Subtitle%5D%20%5BENG%5D%5BPOR-BR%5D%5BSPA-LA%5D%5BSPA%5D%5BARA%5D%5BFRE%5D%5BGER%5D%5BITA%5D%5BRUS%5D",
"seeders": 298,
"leechers": 12,
"torrent_downloaded_count": 2398,
"tracker_updated": 1711933623,
"nzb_url": "https://animetosho.org/storage/nzbs/00094870/%5BErai-raws%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20-%2012%20%5B1080p%5D%5BHEVC%5D%5BMultiple%20Subtitle%5D%5BB46F650F%5D.nzb",
"total_size": 1073028408,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": 3399105,
"article_url": null,
"article_title": null,
"website_url": "https://www.erai-raws.info/anime-list/ore-dake-level-up-na-ken/"
},
{
"id": 608349,
"title": "[DKB] Solo Leveling - S01E12 [1080p][END][HEVC x265 10bit][Multi-Subs][weekly]",
"link": "https://animetosho.org/view/dkb-solo-leveling-s01e12-1080p-end-hevc-x265.n1796502",
"timestamp": 1711823055,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796502,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/d89e1a3b415c0b569481b06dbbe58d936f2e6f0a/%5BDKB%5D%20Solo%20Leveling%20-%20S01E12%20%5B1080p%5D%5BEND%5D%5BHEVC%20x265%2010bit%5D%5BMulti-Subs%5D.torrent",
"torrent_name": "[DKB] Solo Leveling - S01E12 [1080p][END][HEVC x265 10bit][Multi-Subs].mkv",
"info_hash": "d89e1a3b415c0b569481b06dbbe58d936f2e6f0a",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:3CPBUO2BLQFVNFEBWBW3XZMNSNXS43YK&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=http%3A%2F%2Fanidex.moe%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.internetwarriors.net%3A1337%2Fannounce&dn=%5BDKB%5D%20Solo%20Leveling%20-%20S01E12%20%5B1080p%5D%5BEND%5D%5BHEVC%20x265%2010bit%5D%5BMulti-Subs%5D%5Bweekly%5D",
"seeders": 153,
"leechers": 9,
"torrent_downloaded_count": 1010,
"tracker_updated": 1711922054,
"nzb_url": "https://animetosho.org/storage/nzbs/0009485d/%5BDKB%5D%20Solo%20Leveling%20-%20S01E12%20%5B1080p%5D%5BEND%5D%5BHEVC%20x265%2010bit%5D%5BMulti-Subs%5D.nzb",
"total_size": 665460303,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": 3399329,
"article_url": null,
"article_title": null,
"website_url": "https://discord.gg/ZBQCQ7u"
},
{
"id": 608347,
"title": "[ASW] Solo Leveling - 12 [1080p HEVC x265 10Bit][AAC]",
"link": "https://animetosho.org/view/asw-solo-leveling-12-1080p-hevc-x265-10bit-aac.n1796496",
"timestamp": 1711822239,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796496,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/78d41db42271123d520f971b71a67d970cfdb64c/%5BASW%5D%20Solo%20Leveling%20-%2012%20%5B1080p%20HEVC%5D%5BE1A01A3E%5D.torrent",
"torrent_name": "[ASW] Solo Leveling - 12 [1080p HEVC][E1A01A3E].mkv",
"info_hash": "78d41db42271123d520f971b71a67d970cfdb64c",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:PDKB3NBCOEJD2UQPS4NXDJT5S4GP3NSM&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&dn=%5BASW%5D%20Solo%20Leveling%20-%2012%20%5B1080p%20HEVC%20x265%2010Bit%5D%5BAAC%5D",
"seeders": 689,
"leechers": 212,
"torrent_downloaded_count": 1960,
"tracker_updated": null,
"nzb_url": "https://animetosho.org/storage/nzbs/0009485b/%5BASW%5D%20Solo%20Leveling%20-%2012%20%5B1080p%20HEVC%5D%5BE1A01A3E%5D.nzb",
"total_size": 455351405,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": 3399037,
"article_url": null,
"article_title": null,
"website_url": "https://discord.gg/6XnYdWP"
},
{
"id": 608346,
"title": "[Tenrai-Sensei] Solo Leveling - S01E12 - Arise [Web][1080p][HEVC 10bit x265] Ore dake Level Up na Ken",
"link": "https://animetosho.org/view/tenrai-sensei-solo-leveling-s01e12-arise-web-1080p.n1796495",
"timestamp": 1711822029,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796495,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/8b22acf6c18e9ac56f0af00a6061918712d8d992/Solo%20Leveling%20-%20S01E12%20-%20Arise.torrent",
"torrent_name": "Solo Leveling - S01E12 - Arise.mkv",
"info_hash": "8b22acf6c18e9ac56f0af00a6061918712d8d992",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:RMRKZ5WBR2NMK3YK6AFGAYMRQ4JNRWMS&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&tr=udp%3A%2F%2Fopentracker.i2p.rocks%3A6969%2Fannounce&dn=%5BTenrai-Sensei%5D%20Solo%20Leveling%20-%20S01E12%20-%20Arise%20%5BWeb%5D%5B1080p%5D%5BHEVC%2010bit%20x265%5D%20Ore%20dake%20Level%20Up%20na%20Ken",
"seeders": 1000000000,
"leechers": 1000000000,
"torrent_downloaded_count": 3028,
"tracker_updated": null,
"nzb_url": "https://animetosho.org/storage/nzbs/0009485a/Solo%20Leveling%20-%20S01E12%20-%20Arise.nzb",
"total_size": 574082022,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": 3399753,
"article_url": null,
"article_title": null,
"website_url": "https://discord.gg/WucPeE5ume"
},
{
"id": 608339,
"title": "[Judas] Ore dake Level Up na Ken (Solo Leveling) - S01E12 [1080p][HEVC x265 10bit][Multi-Subs] (Weekly)",
"link": "https://animetosho.org/view/judas-ore-dake-level-up-na-ken-solo.n1796483",
"timestamp": 1711821551,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796483,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/aa0f1690f5bff99891883dbbde61e4c59920aa5e/%5BJudas%5D%20Solo%20Leveling%20-%20S01E12.torrent",
"torrent_name": "[Judas] Solo Leveling - S01E12.mkv",
"info_hash": "aa0f1690f5bff99891883dbbde61e4c59920aa5e",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:VIHRNEHVX74ZREMIHW554YPEYWMSBKS6&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&dn=%5BJudas%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20%28Solo%20Leveling%29%20-%20S01E12%20%5B1080p%5D%5BHEVC%20x265%2010bit%5D%5BMulti-Subs%5D%20%28Weekly%29",
"seeders": 422,
"leechers": 20,
"torrent_downloaded_count": 3434,
"tracker_updated": 1711874024,
"nzb_url": "https://animetosho.org/storage/nzbs/00094853/%5BJudas%5D%20Solo%20Leveling%20-%20S01E12.nzb",
"total_size": 485334036,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": 3399248,
"article_url": null,
"article_title": null,
"website_url": "https://discord.gg/vbJ7RTn"
},
{
"id": 608338,
"title": "[Raze] Solo Leveling (Ore dake Level Up na Ken) - 12 x265 10bit 1080p 143.8561fps.mkv",
"link": "https://animetosho.org/view/raze-solo-leveling-ore-dake-level-up-na.n1796482",
"timestamp": 1711821474,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796482,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/bcebcb468c1a2557404afa18f4948cb4fded5c17/%5BRaze%5D%20Solo%20Leveling%20%28Ore%20dake%20Level%20Up%20na%20Ken%29%20-%2012%20x265%2010bit%201080p%20143.8561fps.torrent",
"torrent_name": "[Raze] Solo Leveling (Ore dake Level Up na Ken) - 12 x265 10bit 1080p 143.8561fps.mkv",
"info_hash": "bcebcb468c1a2557404afa18f4948cb4fded5c17",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:XTV4WRUMDISVOQCK7IMPJFEMWT662XAX&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&dn=%5BRaze%5D%20Solo%20Leveling%20%28Ore%20dake%20Level%20Up%20na%20Ken%29%20-%2012%20x265%2010bit%201080p%20143.8561fps.mkv",
"seeders": 15,
"leechers": 1,
"torrent_downloaded_count": 216,
"tracker_updated": 1711932770,
"nzb_url": "https://animetosho.org/storage/nzbs/00094852/%5BRaze%5D%20Solo%20Leveling%20%28Ore%20dake%20Level%20Up%20na%20Ken%29%20-%2012%20x265%2010bit%201080p%20143.8561fps.nzb",
"total_size": 987255128,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": null,
"article_url": null,
"article_title": null,
"website_url": "https://discord.gg/72ZKssY"
},
{
"id": 608324,
"title": "Ore dake Level Up na Ken - S01E12 - 720p WEB x264 -NanDesuKa (CR).mkv",
"link": "https://animetosho.org/view/ore-dake-level-up-na-ken-s01e12-720p.n1796469",
"timestamp": 1711817371,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796469,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/514d25bbb699f0cd50ba82663f4d9972e42aec7e/Ore%20dake%20Level%20Up%20na%20Ken%20-%20S01E12%20-%20720p%20WEB%20x264%20-NanDesuKa%20%28CR%29.torrent",
"torrent_name": "Ore dake Level Up na Ken - S01E12 - 720p WEB x264 -NanDesuKa (CR).mkv",
"info_hash": "514d25bbb699f0cd50ba82663f4d9972e42aec7e",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:KFGSLO5WTHYM2UF2QJTD6TMZOLSCV3D6&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.internetwarriors.net%3A1337%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&dn=Ore%20dake%20Level%20Up%20na%20Ken%20-%20S01E12%20-%20720p%20WEB%20x264%20-NanDesuKa%20%28CR%29.mkv",
"seeders": 24,
"leechers": 1,
"torrent_downloaded_count": 147,
"tracker_updated": 1711941873,
"nzb_url": "https://animetosho.org/storage/nzbs/00094844/Ore%20dake%20Level%20Up%20na%20Ken%20-%20S01E12%20-%20720p%20WEB%20x264%20-NanDesuKa%20%28CR%29.nzb",
"total_size": 733563952,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": null,
"article_url": null,
"article_title": null,
"website_url": null
},
{
"id": 608323,
"title": "Ore dake Level Up na Ken - S01E12 - 1080p WEB x264 -NanDesuKa (CR).mkv",
"link": "https://animetosho.org/view/ore-dake-level-up-na-ken-s01e12-1080p.n1796468",
"timestamp": 1711817278,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796468,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/2368c8599cb9dfcd15c4133c195a026c0c061452/Ore%20dake%20Level%20Up%20na%20Ken%20-%20S01E12%20-%201080p%20WEB%20x264%20-NanDesuKa%20%28CR%29.torrent",
"torrent_name": "Ore dake Level Up na Ken - S01E12 - 1080p WEB x264 -NanDesuKa (CR).mkv",
"info_hash": "2368c8599cb9dfcd15c4133c195a026c0c061452",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:ENUMQWM4XHP42FOECM6BSWQCNQGAMFCS&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.internetwarriors.net%3A1337%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&dn=Ore%20dake%20Level%20Up%20na%20Ken%20-%20S01E12%20-%201080p%20WEB%20x264%20-NanDesuKa%20%28CR%29.mkv",
"seeders": 43,
"leechers": 1,
"torrent_downloaded_count": 325,
"tracker_updated": 1711950739,
"nzb_url": "https://animetosho.org/storage/nzbs/00094843/Ore%20dake%20Level%20Up%20na%20Ken%20-%20S01E12%20-%201080p%20WEB%20x264%20-NanDesuKa%20%28CR%29.nzb",
"total_size": 1444814636,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": null,
"article_url": null,
"article_title": null,
"website_url": null
},
{
"id": 608322,
"title": "Ore dake Level Up na Ken - S01E12 - 480p WEB x264 -NanDesuKa (CR).mkv",
"link": "https://animetosho.org/view/ore-dake-level-up-na-ken-s01e12-480p.n1796467",
"timestamp": 1711817275,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796467,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/65c34046223f78409badf5138035708875dae046/Ore%20dake%20Level%20Up%20na%20Ken%20-%20S01E12%20-%20480p%20WEB%20x264%20-NanDesuKa%20%28CR%29.torrent",
"torrent_name": "Ore dake Level Up na Ken - S01E12 - 480p WEB x264 -NanDesuKa (CR).mkv",
"info_hash": "65c34046223f78409badf5138035708875dae046",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:MXBUARRCH54EBG5N6UJYANLQRB25VYCG&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.internetwarriors.net%3A1337%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&dn=Ore%20dake%20Level%20Up%20na%20Ken%20-%20S01E12%20-%20480p%20WEB%20x264%20-NanDesuKa%20%28CR%29.mkv",
"seeders": 2,
"leechers": 1,
"torrent_downloaded_count": 47,
"tracker_updated": 1711939543,
"nzb_url": "https://animetosho.org/storage/nzbs/00094842/Ore%20dake%20Level%20Up%20na%20Ken%20-%20S01E12%20-%20480p%20WEB%20x264%20-NanDesuKa%20%28CR%29.nzb",
"total_size": 379888841,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": null,
"article_url": null,
"article_title": null,
"website_url": null
},
{
"id": 608321,
"title": "[ToonsHub] Solo Leveling E12 Arise 2160p B-Global WEB-DL x264 (Multi-Subs)",
"link": "https://animetosho.org/view/toonshub-solo-leveling-e12-arise-2160p-b-global.n1796464",
"timestamp": 1711816495,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796464,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/953e7663ac91c946ee46efd1f00c544a81ac5210/Solo%20Leveling%20E12%20Arise%202160p%20B-Global%20WEB-DL%20x264%20%5BJapanese%5D%20%28AAC%202.0%29%20MSubs_ToonsHub_.torrent",
"torrent_name": "Solo Leveling E12 Arise 2160p B-Global WEB-DL x264 [Japanese] (AAC 2.0) MSubs_ToonsHub_.mkv",
"info_hash": "953e7663ac91c946ee46efd1f00c544a81ac5210",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:SU7HMY5MSHEUN3SG57I7ADCUJKA2YUQQ&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=http%3A%2F%2Fanidex.moe%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&dn=%5BToonsHub%5D%20Solo%20Leveling%20E12%20Arise%202160p%20B-Global%20WEB-DL%20x264%20%28Multi-Subs%29",
"seeders": 283,
"leechers": 6,
"torrent_downloaded_count": 2103,
"tracker_updated": 1711940653,
"nzb_url": "https://animetosho.org/storage/nzbs/00094841/Solo%20Leveling%20E12%20Arise%202160p%20B-Global%20WEB-DL%20x264%20%5BJapanese%5D%20%28AAC%202.0%29%20MSubs_ToonsHub_.nzb",
"total_size": 1725930387,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": null,
"article_url": null,
"article_title": null,
"website_url": "https://discord.gg/2mPFKykW4j"
},
{
"id": 608320,
"title": "Solo Leveling S01E12 Arise 1080p CR WEB-DL AAC2.0 H 264-VARYG (Ore dake Level Up na Ken, Multi-Subs)",
"link": "https://animetosho.org/view/solo-leveling-s01e12-arise-1080p-cr-web-dl.n1796463",
"timestamp": 1711816461,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796463,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/e8c25942e297bfd38515d785ca82e0dac7a09688/Solo.Leveling.S01E12.Arise.1080p.CR.WEB-DL.AAC2.0.H.264-VARYG.torrent",
"torrent_name": "Solo.Leveling.S01E12.Arise.1080p.CR.WEB-DL.AAC2.0.H.264-VARYG.mkv",
"info_hash": "e8c25942e297bfd38515d785ca82e0dac7a09688",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:5DBFSQXCS675HBIV26C4VAXA3LD2BFUI&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&dn=Solo%20Leveling%20S01E12%20Arise%201080p%20CR%20WEB-DL%20AAC2.0%20H%20264-VARYG%20%28Ore%20dake%20Level%20Up%20na%20Ken%2C%20Multi-Subs%29",
"seeders": 476,
"leechers": 78,
"torrent_downloaded_count": 2233,
"tracker_updated": 1711948863,
"nzb_url": "https://animetosho.org/storage/nzbs/00094840/Solo.Leveling.S01E12.Arise.1080p.CR.WEB-DL.AAC2.0.H.264-VARYG.nzb",
"total_size": 1447070929,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": null,
"article_url": null,
"article_title": null,
"website_url": "https://myanimelist.net/anime/52299/"
},
{
"id": 608319,
"title": "[ToonsHub] Solo Leveling E12 Arise 1080p B-Global WEB-DL x264 (Multi-Subs)",
"link": "https://animetosho.org/view/toonshub-solo-leveling-e12-arise-1080p-b-global.n1796462",
"timestamp": 1711816458,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796462,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/adf123922973e4c0f7979ab6d3874d2e2e0e5207/Solo%20Leveling%20E12%20Arise%201080p%20B-Global%20WEB-DL%20x264%20%5BJapanese%5D%20%28AAC%202.0%29%20MSubs_ToonsHub_.torrent",
"torrent_name": "Solo Leveling E12 Arise 1080p B-Global WEB-DL x264 [Japanese] (AAC 2.0) MSubs_ToonsHub_.mkv",
"info_hash": "adf123922973e4c0f7979ab6d3874d2e2e0e5207",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:VXYSHERJOPSMB54XTK3NHB2NFYXA4UQH&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=http%3A%2F%2Fanidex.moe%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&dn=%5BToonsHub%5D%20Solo%20Leveling%20E12%20Arise%201080p%20B-Global%20WEB-DL%20x264%20%28Multi-Subs%29",
"seeders": 112,
"leechers": 2,
"torrent_downloaded_count": 955,
"tracker_updated": 1711941514,
"nzb_url": "https://animetosho.org/storage/nzbs/0009483f/Solo%20Leveling%20E12%20Arise%201080p%20B-Global%20WEB-DL%20x264%20%5BJapanese%5D%20%28AAC%202.0%29%20MSubs_ToonsHub_.nzb",
"total_size": 424813220,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": null,
"article_url": null,
"article_title": null,
"website_url": "https://discord.gg/2mPFKykW4j"
},
{
"id": 608318,
"title": "[Erai-raws] Ore dake Level Up na Ken - 12 [480p][Multiple Subtitle] [ENG][POR-BR][SPA-LA][SPA][ARA][FRE][GER][ITA][RUS]",
"link": "https://animetosho.org/view/erai-raws-ore-dake-level-up-na-ken.n1796461",
"timestamp": 1711816354,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796461,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/5b4a6ec6c71d1033f336bdf027fc3f56dbb6544b/%5BErai-raws%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20-%2012%20%5B480p%5D%5BMultiple%20Subtitle%5D%5B348538A9%5D.torrent",
"torrent_name": "[Erai-raws] Ore dake Level Up na Ken - 12 [480p][Multiple Subtitle][348538A9].mkv",
"info_hash": "5b4a6ec6c71d1033f336bdf027fc3f56dbb6544b",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:LNFG5RWHDUIDH4ZWXXYCP7B7K3N3MVCL&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=http%3A%2F%2Fopen.acgnxtracker.com%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&dn=%5BErai-raws%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20-%2012%20%5B480p%5D%5BMultiple%20Subtitle%5D%20%5BENG%5D%5BPOR-BR%5D%5BSPA-LA%5D%5BSPA%5D%5BARA%5D%5BFRE%5D%5BGER%5D%5BITA%5D%5BRUS%5D",
"seeders": 57,
"leechers": 1,
"torrent_downloaded_count": 593,
"tracker_updated": 1711935570,
"nzb_url": "https://animetosho.org/storage/nzbs/0009483e/%5BErai-raws%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20-%2012%20%5B480p%5D%5BMultiple%20Subtitle%5D%5B348538A9%5D.nzb",
"total_size": 390242548,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": 3399156,
"article_url": null,
"article_title": null,
"website_url": "https://www.erai-raws.info/anime-list/ore-dake-level-up-na-ken/"
},
{
"id": 608317,
"title": "[Erai-raws] Ore dake Level Up na Ken - 12 [720p][Multiple Subtitle] [ENG][POR-BR][SPA-LA][SPA][ARA][FRE][GER][ITA][RUS]",
"link": "https://animetosho.org/view/erai-raws-ore-dake-level-up-na-ken.n1796459",
"timestamp": 1711816335,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796459,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/371911c245694044bb84dfa1cb162c5922e46090/%5BErai-raws%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20-%2012%20%5B720p%5D%5BMultiple%20Subtitle%5D%5BFF79133E%5D.torrent",
"torrent_name": "[Erai-raws] Ore dake Level Up na Ken - 12 [720p][Multiple Subtitle][FF79133E].mkv",
"info_hash": "371911c245694044bb84dfa1cb162c5922e46090",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:G4MRDQSFNFAEJO4E36Q4WFRMLEROIYEQ&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=http%3A%2F%2Fopen.acgnxtracker.com%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&dn=%5BErai-raws%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20-%2012%20%5B720p%5D%5BMultiple%20Subtitle%5D%20%5BENG%5D%5BPOR-BR%5D%5BSPA-LA%5D%5BSPA%5D%5BARA%5D%5BFRE%5D%5BGER%5D%5BITA%5D%5BRUS%5D",
"seeders": 244,
"leechers": 8,
"torrent_downloaded_count": 1819,
"tracker_updated": 1711891219,
"nzb_url": "https://animetosho.org/storage/nzbs/0009483d/%5BErai-raws%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20-%2012%20%5B720p%5D%5BMultiple%20Subtitle%5D%5BFF79133E%5D.nzb",
"total_size": 743917601,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": 3399115,
"article_url": null,
"article_title": null,
"website_url": "https://www.erai-raws.info/anime-list/ore-dake-level-up-na-ken/"
},
{
"id": 608316,
"title": "[Erai-raws] Ore dake Level Up na Ken - 12 [1080p][Multiple Subtitle] [ENG][POR-BR][SPA-LA][SPA][ARA][FRE][GER][ITA][RUS]",
"link": "https://animetosho.org/view/erai-raws-ore-dake-level-up-na-ken.n1796456",
"timestamp": 1711816309,
"status": "complete",
"tosho_id": null,
"nyaa_id": 1796456,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/927f32f78956475287b80b7a3b8069d775b3bb74/%5BErai-raws%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20-%2012%20%5B1080p%5D%5BMultiple%20Subtitle%5D%5BC8116259%5D.torrent",
"torrent_name": "[Erai-raws] Ore dake Level Up na Ken - 12 [1080p][Multiple Subtitle][C8116259].mkv",
"info_hash": "927f32f78956475287b80b7a3b8069d775b3bb74",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:SJ7TF54JKZDVFB5YBN5DXADJ2523HO3U&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=http%3A%2F%2Fopen.acgnxtracker.com%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&dn=%5BErai-raws%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20-%2012%20%5B1080p%5D%5BMultiple%20Subtitle%5D%20%5BENG%5D%5BPOR-BR%5D%5BSPA-LA%5D%5BSPA%5D%5BARA%5D%5BFRE%5D%5BGER%5D%5BITA%5D%5BRUS%5D",
"seeders": 1054,
"leechers": 30,
"torrent_downloaded_count": 7259,
"tracker_updated": 1711904421,
"nzb_url": "https://animetosho.org/storage/nzbs/0009483c/%5BErai-raws%5D%20Ore%20dake%20Level%20Up%20na%20Ken%20-%2012%20%5B1080p%5D%5BMultiple%20Subtitle%5D%5BC8116259%5D.nzb",
"total_size": 1455168235,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": 3399072,
"article_url": null,
"article_title": null,
"website_url": "https://www.erai-raws.info/anime-list/ore-dake-level-up-na-ken/"
},
{
"id": 608315,
"title": "[SubsPlease] Solo Leveling - 12 (1080p) [5B47BF7E].mkv",
"link": "https://animetosho.org/view/subsplease-solo-leveling-12-1080p-5b47bf7e-mkv.1859208",
"timestamp": 1711816291,
"status": "complete",
"tosho_id": 1859208,
"nyaa_id": 1796455,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/ac03972f83b13773c7d6c0387969d3873c98fe6e/%5BSubsPlease%5D%20Solo%20Leveling%20-%2012%20%281080p%29%20%5B5B47BF7E%5D.torrent",
"torrent_name": "[SubsPlease] Solo Leveling - 12 (1080p) [5B47BF7E].mkv",
"info_hash": "ac03972f83b13773c7d6c0387969d3873c98fe6e",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:VQBZOL4DWE3XHR6WYA4HS2OTQ46JR7TO&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2710%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2710%2Fannounce&dn=%5BSubsPlease%5D%20Solo%20Leveling%20-%2012%20%281080p%29%20%5B5B47BF7E%5D.mkv",
"seeders": 4800,
"leechers": 126,
"torrent_downloaded_count": 32750,
"tracker_updated": 1711902497,
"nzb_url": "https://animetosho.org/storage/nzbs/0009483b/%5BSubsPlease%5D%20Solo%20Leveling%20-%2012%20%281080p%29%20%5B5B47BF7E%5D.nzb",
"total_size": 1448782755,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": 3398902,
"article_url": null,
"article_title": null,
"website_url": "https://subsplease.org"
},
{
"id": 608314,
"title": "[SubsPlease] Solo Leveling - 12 (720p) [83538700].mkv",
"link": "https://animetosho.org/view/subsplease-solo-leveling-12-720p-83538700-mkv.1859207",
"timestamp": 1711816270,
"status": "complete",
"tosho_id": 1859207,
"nyaa_id": 1796454,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/5a65737737ea4a6c24c2ef17fb87906f250f2b2b/%5BSubsPlease%5D%20Solo%20Leveling%20-%2012%20%28720p%29%20%5B83538700%5D.torrent",
"torrent_name": "[SubsPlease] Solo Leveling - 12 (720p) [83538700].mkv",
"info_hash": "5a65737737ea4a6c24c2ef17fb87906f250f2b2b",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:LJSXG5ZX5JFGYJGC54L7XB4QN4SQ6KZL&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2710%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2710%2Fannounce&dn=%5BSubsPlease%5D%20Solo%20Leveling%20-%2012%20%28720p%29%20%5B83538700%5D.mkv",
"seeders": 1155,
"leechers": 51,
"torrent_downloaded_count": 8614,
"tracker_updated": 1711883436,
"nzb_url": "https://animetosho.org/storage/nzbs/0009483a/%5BSubsPlease%5D%20Solo%20Leveling%20-%2012%20%28720p%29%20%5B83538700%5D.nzb",
"total_size": 737532022,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": 3398956,
"article_url": null,
"article_title": null,
"website_url": "https://subsplease.org"
},
{
"id": 608313,
"title": "[SubsPlease] Solo Leveling - 12 (480p) [9FBA731B].mkv",
"link": "https://animetosho.org/view/subsplease-solo-leveling-12-480p-9fba731b-mkv.1859206",
"timestamp": 1711816267,
"status": "complete",
"tosho_id": 1859206,
"nyaa_id": 1796453,
"nyaa_subdom": null,
"anidex_id": null,
"torrent_url": "https://animetosho.org/storage/torrent/071cfac21f433b07e81e43f33f9a869098af4f64/%5BSubsPlease%5D%20Solo%20Leveling%20-%2012%20%28480p%29%20%5B9FBA731B%5D.torrent",
"torrent_name": "[SubsPlease] Solo Leveling - 12 (480p) [9FBA731B].mkv",
"info_hash": "071cfac21f433b07e81e43f33f9a869098af4f64",
"info_hash_v2": null,
"magnet_uri": "magnet:?xt=urn:btih:A4OPVQQ7IM5QP2A6IPZT7GUGSCMK6T3E&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2710%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2710%2Fannounce&dn=%5BSubsPlease%5D%20Solo%20Leveling%20-%2012%20%28480p%29%20%5B9FBA731B%5D.mkv",
"seeders": 385,
"leechers": 143,
"torrent_downloaded_count": 2467,
"tracker_updated": null,
"nzb_url": "https://animetosho.org/storage/nzbs/00094839/%5BSubsPlease%5D%20Solo%20Leveling%20-%2012%20%28480p%29%20%5B9FBA731B%5D.nzb",
"total_size": 383857166,
"num_files": 1,
"anidb_aid": 17495,
"anidb_eid": 277518,
"anidb_fid": 3399016,
"article_url": null,
"article_title": null,
"website_url": "https://subsplease.org"
}
]

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,78 @@
#!/usr/bin/env python3
import datetime
import os
import pytest
import subliminal
import tempfile
from dogpile.cache.region import register_backend as register_cache_backend
from subliminal_patch.core import Episode
from subliminal_patch.providers.animetosho import AnimeToshoProvider
from subzero.language import Language
@pytest.fixture(scope="session")
def region():
register_cache_backend(
"subzero.cache.file", "subzero.cache_backends.file", "SZFileBackend"
)
subliminal.region.configure(
"subzero.cache.file",
expiration_time=datetime.timedelta(days=30),
arguments={"appname": "sz_cache", "app_cache_dir": tempfile.gettempdir()},
)
subliminal.region.backend.sync()
@pytest.fixture(scope="session")
def anime_episodes():
return {
"frieren_s01e01": Episode(
"Frieren - Beyond Journey's End S01E28 1080p WEB x264 AAC -Tsundere-Raws (CR) (Sousou no Frieren).mkv",
"Frieren: Beyond Journey's End",
1,
28,
source="Web",
series_tvdb_id=424536,
series_imdb_id="tt22248376",
release_group="Tsundere-Raws",
resolution="1080p",
video_codec="H.264",
),
"solo_leveling_s01e10": Episode(
"[New-raws] Ore Dake Level Up na Ken - 12 END [1080p] [AMZN].mkv",
"Solo Leveling",
1,
12,
source="Web",
series_tvdb_id=389597,
series_imdb_id="tt21209876",
release_group="New-raws",
resolution="1080p",
video_codec="H.264",
),
}
def test_list_subtitles(region, anime_episodes, requests_mock, data):
language = Language("eng")
item = anime_episodes["solo_leveling_s01e10"]
with open(os.path.join(data, 'anidb_response.xml'), "rb") as f:
requests_mock.get('http://api.anidb.net:9001/httpapi', content=f.read())
with open(os.path.join(data, 'animetosho_episode_response.json'), "rb") as f:
requests_mock.get(' https://feed.animetosho.org/json?eid=277518', content=f.read())
with open(os.path.join(data, 'animetosho_series_response.json'), "rb") as f:
response = f.read()
requests_mock.get('https://feed.animetosho.org/json?show=torrent&id=608516', content=response)
requests_mock.get('https://feed.animetosho.org/json?show=torrent&id=608526', content=response)
with AnimeToshoProvider(2, 'mocked_client', 1) as provider:
subtitles = provider.list_subtitles(item, languages={language})
assert len(subtitles) == 2
subliminal.region.backend.sync()