Files
gallery-dl/gallery_dl/downloader/text.py
Mike Fährmann deef91eddc initial commit
2014-10-12 21:56:44 +02:00

11 lines
244 B
Python

from .common import BasicDownloader
class Downloader(BasicDownloader):
def __init__(self, extr):
BasicDownloader.__init__(self)
def download_impl(self, url, file):
file.write(bytes(url[7:], "utf-8"))
return 0