http://gitunderground.i2p/archive/youtube-dl/src/commit/dcdb292fddc82ae11f4c0b647815a45c88a6b6d5/youtube_dl/extractor/lifenews.py
\1' , webpage , 'upload date' , fatal = False , group = 'value' )) common_info = { 'description' : description , 'view_count' : int_or_none ( view_count ), 'timestamp' : timestamp , } def make_entry ( video_id , video_url , index = None ): cur_info = dict ( common_info ) cur_info . update ({ 'id' : video_id if not index else ' %s -video %s ' % ( video_id , index ), 'url' : video_url , 'title' : title if not index else ' %s (Видео %s )' % ( title , index ), }) return cur_info def...