[2chan] add thread extractor

This commit is contained in:
Mike Fährmann
2017-07-14 08:44:31 +02:00
parent 3460dc8950
commit 47692f28da
3 changed files with 94 additions and 2 deletions

View File

@@ -6,14 +6,14 @@
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
"""Base classes for extractors for different Futaba Channel boards"""
"""Base classes for extractors for different Futaba Channel-like boards"""
from .common import Extractor, Message
from .. import text
class ChanThreadExtractor(Extractor):
"""Base class for extractors for Futaba Channel boards"""
"""Base class for extractors for Futaba Channel-like boards"""
category = "chan"
subcategory = "thread"
directory_fmt = ["{category}", "{board}-{thread}"]