summaryrefslogtreecommitdiffstats
path: root/gallery_dl/postprocessor/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'gallery_dl/postprocessor/common.py')
-rw-r--r--gallery_dl/postprocessor/common.py22
1 files changed, 16 insertions, 6 deletions
diff --git a/gallery_dl/postprocessor/common.py b/gallery_dl/postprocessor/common.py
index b967cf6..71ef932 100644
--- a/gallery_dl/postprocessor/common.py
+++ b/gallery_dl/postprocessor/common.py
@@ -8,20 +8,30 @@
"""Common classes and constants used by postprocessor modules."""
-from . import log
+import logging
class PostProcessor():
"""Base class for postprocessors"""
- log = log
- def prepare(self, pathfmt):
- """ """
+ def __init__(self):
+ name = self.__class__.__name__[:-2].lower()
+ self.log = logging.getLogger("postprocessor." + name)
- def run(self, pathfmt):
+ @staticmethod
+ def prepare(pathfmt):
+ """Update file paths, etc."""
+
+ @staticmethod
+ def run(pathfmt):
"""Execute the postprocessor for a file"""
- def finalize(self):
+ @staticmethod
+ def run_after(pathfmt):
+ """Execute postprocessor after moving a file to its target location"""
+
+ @staticmethod
+ def finalize():
"""Cleanup"""
def __repr__(self):