File size: 290 Bytes
ca1059b 5e51daa dab9a64 ca1059b 5e51daa ca1059b |
1 2 3 4 5 6 7 8 9 10 11 |
# -*- coding: utf-8 -*-
from pytube import Playlist
def test_title():
list_key = 'PLsyeobzWxl7poL9JTVyndKe62ieoN-MZ3'
url = 'https://www.youtube.com/playlist?list=' + list_key
pl = Playlist(url)
pl_title = pl.title()
assert pl_title == 'Python Tutorial for Beginners'
|