music_album_creation.web_parsing   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Test Coverage

Coverage 75%

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 7
rs 10
c 0
b 0
f 0
ccs 3
cts 4
cp 0.75
wmc 1

1 Function

Rating   Name   Duplication   Size   Complexity  
A video_title() 0 3 1
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