1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 20:25:41 +01:00
svtplay-dl/lib/svtplay_dl/fetcher/__init__.py
Olof Johansson 0fc0c02b99 VideoRetriever: inherit from object
Reference: #ep14boat
2014-07-24 20:24:03 +02:00

10 lines
242 B
Python

class VideoRetriever(object):
def __init__(self, options, url, bitrate=0, **kwargs):
self.options = options
self.url = url
self.bitrate = int(bitrate)
self.kwargs = kwargs
def name(self):
pass