Remove VReddit downloader module

This commit is contained in:
Serene-Arc
2021-05-02 20:02:34 +10:00
committed by Serene
parent ab96a3ba97
commit c9cde54a72
5 changed files with 2 additions and 49 deletions

View File

@@ -1,21 +0,0 @@
#!/usr/bin/env python3
import logging
from typing import Optional
from praw.models import Submission
from bdfr.resource import Resource
from bdfr.site_authenticator import SiteAuthenticator
from bdfr.site_downloaders.youtube import Youtube
logger = logging.getLogger(__name__)
class VReddit(Youtube):
def __init__(self, post: Submission):
super().__init__(post)
def find_resources(self, authenticator: Optional[SiteAuthenticator] = None) -> list[Resource]:
out = super()._download_video({})
return [out]