mirror of
https://github.com/bellingcat/cisticola.git
synced 2026-06-11 12:58:33 +03:00
9 lines
292 B
Python
9 lines
292 B
Python
from cisticola.base import Channel
|
|
from cisticola.scraper import BitchuteScraper
|
|
|
|
def test_scrape_bitchute_channel(controller, channel_kwargs):
|
|
|
|
channels = [Channel(**channel_kwargs['bitchute'])]
|
|
controller.register_scraper(BitchuteScraper())
|
|
controller.scrape_channels(channels)
|