Files
HS-Rename/engine/__init__.py
T
Bulk RenamerandCursor 085d6dc296 Add TheTVDB episode title matching and release v1.0.3.
Match filenames to TheTVDB episode order (default, aired, DVD, etc.) to fix chaotic SxxExx numbering while preserving titles.

Co-authored-by: Cursor <[email protected]>
2026-07-03 16:47:37 -05:00

19 lines
516 B
Python

from .rules import Rule, ReplaceRule, InsertRule, RemoveRule, CaseRule, NumberingRule, EpisodeRenumberRule, TvdbEpisodeRenumberRule, RegexRule, PrefixSuffixRule, CsvMappingRule
from .pipeline import apply_pipeline, compute_preview
__all__ = [
"Rule",
"ReplaceRule",
"InsertRule",
"RemoveRule",
"CaseRule",
"NumberingRule",
"EpisodeRenumberRule",
"TvdbEpisodeRenumberRule",
"RegexRule",
"PrefixSuffixRule",
"CsvMappingRule",
"apply_pipeline",
"compute_preview",
]