Total Complexity | 1 |
Total Lines | 7 |
Duplicated Lines | 0 % |
Coverage | 75% |
Changes | 0 |
1 | 1 | from pytube import YouTube |
|
2 | |||
3 | 1 | ||
4 | def video_title(youtube_url: str) -> str: |
||
5 | 1 | video = YouTube(youtube_url) |
|
6 | return video.title |
||
7 |