diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-12-07 23:50:10 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-12-07 23:50:10 +0700 |
commit | f43795e56bc55b99e89c8fafee5613921cf1fffc (patch) | |
tree | 4a31d4f213ba5e8614258e8386d8cac725899957 /youtube_dl/extractor/pandoratv.py | |
parent | 7441915b1e53e2a26f4c78796c4755a36b9e1b8d (diff) |
[pandoratv] PEP 8 and simplify
Diffstat (limited to 'youtube_dl/extractor/pandoratv.py')
-rw-r--r-- | youtube_dl/extractor/pandoratv.py | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/youtube_dl/extractor/pandoratv.py b/youtube_dl/extractor/pandoratv.py index 3e37ae01d..cbb1968d3 100644 --- a/youtube_dl/extractor/pandoratv.py +++ b/youtube_dl/extractor/pandoratv.py @@ -5,7 +5,6 @@ from .common import InfoExtractor from ..compat import ( compat_str, compat_urlparse, - compat_urllib_request, ) from ..utils import ( ExtractorError, @@ -59,13 +58,17 @@ class PandoraTVIE(InfoExtractor): if not height: continue - post_data = {'prgid': video_id, 'runtime': info.get('runtime'), 'vod_url': format_url} - play_url = self._download_json('http://m.pandora.tv/?c=api&m=play_url', video_id, - data=urlencode_postdata(post_data), + play_url = self._download_json( + 'http://m.pandora.tv/?c=api&m=play_url', video_id, + data=urlencode_postdata({ + 'prgid': video_id, + 'runtime': info.get('runtime'), + 'vod_url': format_url, + }), headers={ 'Origin': url, - 'Content-Type': 'application/x-www-form-urlencoded' - }) + 'Content-Type': 'application/x-www-form-urlencoded', + }) format_url = play_url.get('url') if not format_url: continue |