1
0
Fork 0
mirror of synced 2024-06-17 09:44:39 +12:00
bulk-downloader-for-reddit/bdfr/site_downloaders/direct.py
2021-04-18 16:44:52 +03:00

18 lines
500 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)]