Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Regex anime #8728

Merged
merged 16 commits into from
Jul 25, 2024
6 changes: 3 additions & 3 deletions sickchill/oldbeard/name_parser/regexes.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,10 @@

anime_regexes = [
(
"anime_horriblesubs",
# [HorribleSubs] Maria the Virgin Witch - 01 [720p].mkv
"anime_anidb",
# [Group] Anime name - 01v2 [CCRCCRCC].ext from wiki.anidb.net
r"""
^(?:\[(?P<release_group>HorribleSubs)\][\s\.])
^(?:\[(?P<release_group>.+?)\][\s\.])
BKSteve marked this conversation as resolved.
Show resolved Hide resolved
(?:(?P<series_name>.+?)[\s\.]-[\s\.])
(?P<ep_ab_num>((?!(1080|720|480)[pi]))\d{1,4})
(-(?P<extra_ab_ep_num>((?!(1080|720|480)[pi])|(?![hx].?26[45]))\d{1,4}))?
Expand Down
Loading