mirror of
https://github.com/shadoll/moma.git
synced 2026-08-28 11:33:25 +00:00
- Implemented ProposedFilenameView to generate standardized filenames using a decorator pattern. - Created MediaPanelView to assemble media data panels for display, aggregating multiple formatters. - Added tests for ProposedFilenameView covering various formatting scenarios, including basic, minimal, and special cases. - Introduced a views package to organize and expose the new views. - Ensured proper formatting and display of media information, including file info, TMDB data, and track information.
7 lines
237 B
Python
7 lines
237 B
Python
# Renamer package
|
|
|
|
from .app import RenamerApp
|
|
from .extractors.extractor import MediaExtractor
|
|
from .views import MediaPanelView, ProposedFilenameView
|
|
|
|
__all__ = ['RenamerApp', 'MediaExtractor', 'MediaPanelView', 'ProposedFilenameView'] |