mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-08 03:18:28 +03:00
24 lines
696 B
Python
24 lines
696 B
Python
{
|
|
"name": "CSV Database",
|
|
"type": ["database"],
|
|
"requires_setup": False,
|
|
"dependencies": {"python": ["loguru"]
|
|
},
|
|
'entry_point': 'csv_db::CSVDb',
|
|
"configs": {
|
|
"csv_file": {"default": "db.csv", "help": "CSV file name to save metadata to"},
|
|
},
|
|
"description": """
|
|
Handles exporting archival results to a CSV file.
|
|
|
|
### Features
|
|
- Saves archival metadata as rows in a CSV file.
|
|
- Automatically creates the CSV file with a header if it does not exist.
|
|
- Appends new metadata entries to the existing file.
|
|
|
|
### Setup
|
|
Required config:
|
|
- csv_file: Path to the CSV file where results will be stored (default: "db.csv").
|
|
""",
|
|
}
|