--- -Xprime4u.Pro-.Numbari.S01P01.720p.HEVC.WeB-DL

--- -xprime4u.pro-.numbari.s01p01.720p.hevc.web-dl Apr 2026

if == " main ": folder = sys.argv[1] if len(sys.argv) > 1 else "." dry = "--dry" not in sys.argv for f in Path(folder).glob("*.mkv"): rename_file(f, dry_run=dry)

| Part | Example | Meaning | |------|---------|---------| | Group tag | -Xprime4u.Pro- | Release group | | Series | Numbari | Show name | | Season & Part | S01P01 | Season 1, Part 1 | | Resolution | 720p | Vertical resolution | | Codec | HEVC | Video codec (H.265) | | Source | WeB-DL | Downloaded from web | Note: P01 might mean "Part 01" (e.g., split episode or dual release). Handle accordingly. import re filename = "-Xprime4u.Pro-.Numbari.S01P01.720p.HEVC.WeB-DL.mkv" --- -Xprime4u.Pro-.Numbari.S01P01.720p.HEVC.WeB-DL

def rename_file(old_path, dry_run=True): parsed = parse_numbari(old_path.name) if not parsed: print(f"Skipping: old_path.name") return new_name = f"parsed['show'] - Sparsed['season']Eint(parsed['part']):02d.parsed['ext']" new_path = old_path.parent / new_name if dry_run: print(f"[DRY RUN] old_path.name -> new_name") else: os.rename(old_path, new_path) print(f"Renamed: new_name") if == " main ": folder = sys

Offer Free Readings on your site today. Put this absolutely FREE script on your site in under two minutes! Just copy and paste the codes onto your site and you are all set to go! Click here for more details.