Using Pafy.published raises an error instead of replying with the publish date of the video

110 Views Asked by At

Code:

import pafy

video = pafy.new("https://www.youtube.com/watch?v=dQw4w9WgXcQ")
try:
    print(video.published)
except pafy.util.GdataError as e:
    print(e)

Output: Youtube Error 403: The request cannot be completed because you have exceeded your <a href="/youtube/v3/getting-started#quota">quota</a>.

Should I make my own api key? Or is this related to YouTube's API?

0

There are 0 best solutions below