Change archived_media to be timestamp for all scrapers

This commit is contained in:
Logan Williams
2022-04-03 12:02:27 +02:00
parent 8ee20a239c
commit a82ec15f0e
16 changed files with 46 additions and 36 deletions

11
app.py
View File

@@ -11,7 +11,10 @@ from cisticola.base import Channel, mapper_registry
from cisticola.scraper import (
ScraperController,
VkontakteScraper,
TelegramTelethonScraper)
TelegramTelethonScraper,
GettrScraper,
OdyseeScraper,
RumbleScraper)
def sync_channels(args):
logger.info("Synchronizing channels")
@@ -78,7 +81,11 @@ def get_scraper_controller():
scrapers = [
TelegramTelethonScraper(),
VkontakteScraper()]
VkontakteScraper(),
GettrScraper(),
OdyseeScraper(),
RumbleScraper()
]
controller.register_scrapers(scrapers)