mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-11 12:48:28 +03:00
Update manifests and modules
This commit is contained in:
@@ -0,0 +1 @@
|
||||
from api_db import AAApiDb
|
||||
@@ -15,7 +15,9 @@
|
||||
"group_id": {"default": None, "help": "which group of users have access to the archive in case public=false as author"},
|
||||
"allow_rearchive": {"default": True, "help": "if False then the API database will be queried prior to any archiving operations and stop if the link has already been archived"},
|
||||
"store_results": {"default": True, "help": "when set, will send the results to the API database."},
|
||||
"tags": {"default": [], "help": "what tags to add to the archived URL", "cli_set": lambda cli_val, cur_val: set(cli_val.split(","))},
|
||||
"tags": {"default": [], "help": "what tags to add to the archived URL",
|
||||
"type": lambda val: set(val.split(",")),
|
||||
}
|
||||
},
|
||||
"description": """
|
||||
Provides integration with the Auto-Archiver API for querying and storing archival data.
|
||||
|
||||
@@ -2,7 +2,7 @@ from typing import Union
|
||||
import requests, os
|
||||
from loguru import logger
|
||||
|
||||
from auto_archiver.base_modules import Database
|
||||
from auto_archiver.base_processors import Database
|
||||
from auto_archiver.core import Metadata
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user