mirror of
https://github.com/bellingcat/cisticola.git
synced 2026-06-12 13:28:34 +03:00
Add RumbleScraper, YoutubeScraper, and BitchuteScraper to the active scrapers
This commit is contained in:
10
app.py
10
app.py
@@ -13,6 +13,9 @@ from cisticola.scraper import (
|
||||
VkontakteScraper,
|
||||
TelegramTelethonScraper,
|
||||
GettrScraper,
|
||||
BitchuteScraper,
|
||||
YoutubeScraper,
|
||||
RumbleScraper,
|
||||
)
|
||||
|
||||
|
||||
@@ -92,7 +95,12 @@ def get_scraper_controller():
|
||||
controller = ScraperController()
|
||||
controller.connect_to_db(engine)
|
||||
|
||||
scrapers = [TelegramTelethonScraper(), VkontakteScraper(), GettrScraper()]
|
||||
scrapers = [VkontakteScraper(),
|
||||
TelegramTelethonScraper(),
|
||||
GettrScraper(),
|
||||
BitchuteScraper(),
|
||||
RumbleScraper(),
|
||||
YoutubeScraper()]
|
||||
|
||||
controller.register_scrapers(scrapers)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user