(self)
| 4 | |
| 5 | class YouTubeDownloder: |
| 6 | def __init__(self): |
| 7 | self.url = str(input("Enter the url of video : ")) |
| 8 | self.youtube = YouTube( |
| 9 | self.url, on_progress_callback=YouTubeDownloder.onProgress |
| 10 | ) |
| 11 | self.showTitle() |
| 12 | |
| 13 | def showTitle(self): |
| 14 | print("title : {0}\n".format(self.youtube.title)) |