Update manifests and modules

This commit is contained in:
erinhmclark
2025-01-24 12:58:16 +00:00
parent ba4b330881
commit aa7ca93a43
95 changed files with 172 additions and 115 deletions

View File

@@ -0,0 +1 @@
from .cli_feeder import CLIFeeder

View File

@@ -9,7 +9,7 @@
"urls": {
"default": None,
"help": "URL(s) to archive, either a single URL or a list of urls, should not come from config.yaml",
"cli_set": lambda cli_val, cur_val: list(set(cli_val.split(",")))
"type": lambda val: set(val.split(",")),
},
},
"description": """

View File

@@ -1,6 +1,6 @@
from loguru import logger
from auto_archiver.base_modules import Feeder
from auto_archiver.base_processors import Feeder
from auto_archiver.core import Metadata, ArchivingContext