from pytube import YouTube
video = YouTube('https://www.youtube.com/watch?v=tDKSwtKhteE')
print('Author: ' + video.author)
print('Title: ' + video.title)
print('Description: ' + video.description)
Hello!
I'm trying to get a video description from a Youtube video using Pytube library in Python.
When I try to get the description I get this error
print('Description: ' + video.description)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
TypeError: can only concatenate str (not "NoneType") to str
Pytube is giving me a 'None' but, why?
Any thoughts?
Thank you.
This script was working a year ago, now I have Pytube v15. I read the Pytube documentation but nothing new I found on it https://pytube.io/en/latest/api.html#pytube.YouTube.description
Unfortunately, as stated in this issue of PyTube, there is a bug in PyTube that makes it unable to show descriptions. The only way is to write another function that fetches the description. Per this comment, the function can be implemented like this:
Putting it together: