434aeb8feb
* Simplify downloader function * Add basic scraper class * Add "scrape" command * Rename "scrape" command to "clone" * Add integration tests for clone command * Update README * Fix failing test
22 lines
571 B
Python
22 lines
571 B
Python
#!/usr/bin/env python3
|
|
# coding=utf-8
|
|
|
|
import logging
|
|
|
|
from bdfr.archiver import Archiver
|
|
from bdfr.configuration import Configuration
|
|
from bdfr.downloader import RedditDownloader
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class RedditCloner(RedditDownloader, Archiver):
|
|
def __init__(self, args: Configuration):
|
|
super(RedditCloner, self).__init__(args)
|
|
|
|
def download(self):
|
|
for generator in self.reddit_lists:
|
|
for submission in generator:
|
|
self._download_submission(submission)
|
|
self.write_entry(submission)
|