File size: 282 Bytes
b9354c2
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from abc import ABC, abstractmethod
 
class Downloader(ABC):
  """
  A video downloader from online platforms to a specified format
  """

  @abstractmethod
  def __init__(self, download_path):
    self.download_path = download_path

  @abstractmethod
  def download(self):
    pass