mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2025-02-16 21:38:33 +00:00
19 lines
477 B
Python
19 lines
477 B
Python
__package__ = 'plugins_extractor.singlefile'
|
|
|
|
from pathlib import Path
|
|
|
|
from pydantic_pkgr import BinName
|
|
from abx.archivebox.base_extractor import BaseExtractor
|
|
|
|
from .binaries import SINGLEFILE_BINARY
|
|
|
|
|
|
class SinglefileExtractor(BaseExtractor):
|
|
name: str = 'singlefile'
|
|
binary: BinName = SINGLEFILE_BINARY.name
|
|
|
|
def get_output_path(self, snapshot) -> Path:
|
|
return Path(snapshot.link_dir) / 'singlefile.html'
|
|
|
|
|
|
SINGLEFILE_EXTRACTOR = SinglefileExtractor()
|