1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-28 14:14:15 +01:00
svtplay-dl/lib/svtplay_dl/fetcher/__init__.py

14 lines
343 B
Python
Raw Normal View History

from __future__ import absolute_import
from svtplay_dl.utils import HTTP
class VideoRetriever(object):
def __init__(self, options, url, bitrate=0, **kwargs):
2014-04-21 16:50:24 +02:00
self.options = options
self.url = url
self.bitrate = int(bitrate)
self.kwargs = kwargs
self.http = HTTP()
def name(self):
pass