Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
def channel_name(self): """Get the name of the YouTube channel. :rtype: str """ return self.initial_data['metadata']['channelMetadataRenderer']['title']
from pytube import Channel c = Channel('https://www.youtube.com/c/ProgrammingKnowledge') print(c.channel_name)
from pytube import YouTube video = YouTube('https://www.youtube.com/watch?v=jNQXAC9IVRw') print(video.author)