mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-11 12:48:28 +03:00
* Add Atlos feeder * Add Atlos db * Add Atlos storage * Fix Atlos storages * Fix Atlos feeder * Only include URLs in Atlos feeder once they're processed * Remove print * Add Atlos documentation to README * Formatting fixes * Don't archive existing material * avoid KeyError in atlos_db * version bump --------- Co-authored-by: msramalho <19508417+msramalho@users.noreply.github.com>
13 lines
523 B
Python
13 lines
523 B
Python
def get_atlos_config_options():
|
|
return {
|
|
"api_token": {
|
|
"default": None,
|
|
"help": "An Atlos API token. For more information, see https://docs.atlos.org/technical/api/",
|
|
"cli_set": lambda cli_val, _: cli_val
|
|
},
|
|
"atlos_url": {
|
|
"default": "https://platform.atlos.org",
|
|
"help": "The URL of your Atlos instance (e.g., https://platform.atlos.org), without a trailing slash.",
|
|
"cli_set": lambda cli_val, _: cli_val
|
|
},
|
|
} |