Upd horsy to 140320221219

This commit is contained in:
BarsTiger
2022-03-14 12:46:48 +02:00
parent c85b2be089
commit 988832acfb
25 changed files with 1458 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
# -*- coding: utf-8 -*-
Pafy = None
def new(url, basic=True, gdata=False, size=False,
callback=None, ydl_opts=None):
global Pafy
if Pafy is None:
from .backend_youtube_dl import YtdlPafy as Pafy
return Pafy(url, basic, gdata, size, callback, ydl_opts=ydl_opts)