1
0
Fork 0
mirror of synced 2024-05-20 12:12:40 +12:00
bulk-downloader-for-reddit/bdfr/site_downloaders/direct.py
2021-07-27 14:02:30 +10:00

18 lines
540 B
Python

#!/usr/bin/env python3
from typing import Optional
from praw.models import Submission
from bdfr.site_authenticator import SiteAuthenticator
from bdfr.resource import Resource
from bdfr.site_downloaders.base_downloader import BaseDownloader
class Direct(BaseDownloader):
def __init__(self, post: Submission):
super().__init__(post)
def find_resources(self, authenticator: Optional[SiteAuthenticator] = None) -> list[Resource]:
return [Resource(self.post, self.post.url, Resource.retry_download(self.post.url))]