mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-12 05:08:28 +03:00
* clean orchestrator code, add archiver cleanup logic * improves documentation for database.py * telethon archivers isolate sessions into copied files * closes #127 * closes #125 * closes #84 * meta enricher applies to all media * closes #61 adds subtitles and comments * minor update * minor fixes to yt-dlp subtitles and comments * closes #17 but logic is imperfect. * closes #85 ssl enhancer * minimifies html, JS refactor for preview of certificates * closes #91 adds freetsa timestamp authority * version bump * simplify download_url method * skip ssl if nothing archived * html preview improvements * adds retrying lib * manual download archiver improvements * meta only runs when relevant data available * new metadata convenience method * html template improvements * removes debug message * does not close #91 yet, will need a few more certificate chaing logging * adds verbosity config * new instagram api archiver * adds proxy support we * adds proxy/end support and bug fix for yt-dlp * proxy support for webdriver * adds socks proxy to wacz_enricher * refactor recursivity in inner media and display * infinite recursive display * foolproofing timestamping authortities * version to 0.9.0 * minor fixes from code-review
12 lines
550 B
Python
12 lines
550 B
Python
from .enricher import Enricher
|
|
from .screenshot_enricher import ScreenshotEnricher
|
|
from .wayback_enricher import WaybackArchiverEnricher
|
|
from .hash_enricher import HashEnricher
|
|
from .thumbnail_enricher import ThumbnailEnricher
|
|
from .wacz_enricher import WaczArchiverEnricher
|
|
from .whisper_enricher import WhisperEnricher
|
|
from .pdq_hash_enricher import PdqHashEnricher
|
|
from .metadata_enricher import MetadataEnricher
|
|
from .meta_enricher import MetaEnricher
|
|
from .ssl_enricher import SSLEnricher
|
|
from .timestamping_enricher import TimestampingEnricher |