[pandoratv] PEP 8 and simplify
This commit is contained in:
		| @@ -5,7 +5,6 @@ from .common import InfoExtractor | |||||||
| from ..compat import ( | from ..compat import ( | ||||||
|     compat_str, |     compat_str, | ||||||
|     compat_urlparse, |     compat_urlparse, | ||||||
|     compat_urllib_request, |  | ||||||
| ) | ) | ||||||
| from ..utils import ( | from ..utils import ( | ||||||
|     ExtractorError, |     ExtractorError, | ||||||
| @@ -59,12 +58,16 @@ class PandoraTVIE(InfoExtractor): | |||||||
|             if not height: |             if not height: | ||||||
|                 continue |                 continue | ||||||
|  |  | ||||||
|             post_data = {'prgid': video_id, 'runtime': info.get('runtime'), 'vod_url': format_url} |             play_url = self._download_json( | ||||||
|             play_url = self._download_json('http://m.pandora.tv/?c=api&m=play_url', video_id,  |                 'http://m.pandora.tv/?c=api&m=play_url', video_id, | ||||||
|                 data=urlencode_postdata(post_data),  |                 data=urlencode_postdata({ | ||||||
|  |                     'prgid': video_id, | ||||||
|  |                     'runtime': info.get('runtime'), | ||||||
|  |                     'vod_url': format_url, | ||||||
|  |                 }), | ||||||
|                 headers={ |                 headers={ | ||||||
|                     'Origin': url, |                     'Origin': url, | ||||||
|                     'Content-Type': 'application/x-www-form-urlencoded' |                     'Content-Type': 'application/x-www-form-urlencoded', | ||||||
|                 }) |                 }) | ||||||
|             format_url = play_url.get('url') |             format_url = play_url.get('url') | ||||||
|             if not format_url: |             if not format_url: | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․