from __future__ import unicode_literals
from .common import InfoExtractor
+from ..compat import compat_str
class VyboryMosIE(InfoExtractor):
channels = self._download_json(
'http://vybory.mos.ru/account/channels?station_id=%s' % station_id,
- station_id)
+ station_id, 'Downloading channels JSON')
formats = []
for cam_num, (sid, hosts, name, _) in enumerate(channels, 1):
})
info = self._download_json(
- 'http://vybory.mos.ru/json/voting_stations/136/%s.json' % station_id,
- station_id, 'Downloading station info')
-
- title = info['name']
+ 'http://vybory.mos.ru/json/voting_stations/%s/%s.json'
+ % (compat_str(station_id)[:3], station_id),
+ station_id, 'Downloading station JSON', fatal=False)
return {
'id': station_id,
- 'title': self._live_title(title),
+ 'title': self._live_title(info['name'] if info else station_id),
'description': info.get('address'),
'is_live': True,
'formats': formats,