Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
How to get list titles grammatically #10189
Comments
from __future__ import unicode_literals
from youtube_dl import YoutubeDL
with YoutubeDL({}) as ydl:
info_dict = ydl.extract_info('BaW_jenozKc', download=False)
# info_dict['id']
# info_dict['title'] |
|
Thank you , I made a little extension : entries= info_dict['entries'] Moisey O moiseyoys@gmail.com On Fri, Jul 29, 2016 at 10:11 AM, Sergey M. notifications@github.com
|
Description of your issue, suggested solution and other information
I'd like to use python code to retrieve ids and titles .
Is there any samples ?