Yen Chi Hsuan
7 years ago
No known key found for this signature in database
GPG Key ID: 7F902A182457CA23
2 changed files with
7 additions and
4 deletions
-
ChangeLog
-
youtube_dl/extractor/gaskrank.py
|
|
@ -1,6 +1,7 @@ |
|
|
|
version <unreleased> |
|
|
|
|
|
|
|
Extractors |
|
|
|
+ [gaskrank] Add new extractor (#11685) |
|
|
|
* [bandcamp] Fix extraction for incomplete albums (#11727) |
|
|
|
* [iwara] Fix extraction (#11781) |
|
|
|
* [googledrive] Fix extraction on Python 3.6 |
|
|
|
|
|
@ -3,10 +3,12 @@ from __future__ import unicode_literals |
|
|
|
|
|
|
|
import re |
|
|
|
from .common import InfoExtractor |
|
|
|
from ..utils import float_or_none |
|
|
|
from ..utils import int_or_none |
|
|
|
from ..utils import js_to_json |
|
|
|
from ..utils import unified_strdate |
|
|
|
from ..utils import ( |
|
|
|
float_or_none, |
|
|
|
int_or_none, |
|
|
|
js_to_json, |
|
|
|
unified_strdate, |
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
class GaskrankIE(InfoExtractor): |
|
|
|