Initial commit: Bulk Renamer with AppImage build and Gitea push notes

Made-with: Cursor
This commit is contained in:
Bulk Renamer
2026-03-03 21:58:28 -06:00
commit 22501fe0b5
13 changed files with 1135 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
from .rules import Rule, ReplaceRule, InsertRule, RemoveRule, CaseRule, NumberingRule, EpisodeRenumberRule, RegexRule, PrefixSuffixRule
from .pipeline import apply_pipeline, compute_preview
__all__ = [
"Rule",
"ReplaceRule",
"InsertRule",
"RemoveRule",
"CaseRule",
"NumberingRule",
"EpisodeRenumberRule",
"RegexRule",
"PrefixSuffixRule",
"apply_pipeline",
"compute_preview",
]